feat(atlassian): implement milestone M1 - scaffold skill and shared runtime

This commit is contained in:
Stefano Fiorini
2026-03-06 00:23:21 -06:00
parent 30fb7fa7f0
commit e56f0c9941
14 changed files with 892 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
import test from "node:test";
import assert from "node:assert/strict";
import { spawnSync } from "node:child_process";
test("CLI help prints the Atlassian skill banner", () => {
const result = spawnSync("pnpm", ["exec", "tsx", "src/cli.ts", "--help"], {
cwd: new URL("../", import.meta.url),
encoding: "utf8",
});
assert.equal(result.status, 0, result.stderr);
assert.match(result.stdout, /Portable Atlassian CLI for multi-agent skills/);
assert.match(result.stdout, /Usage:/);
});