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,22 @@
import { Command } from "commander";
const program = new Command()
.name("atlassian")
.description("Portable Atlassian CLI for multi-agent skills")
.version("0.1.0");
program
.command("health")
.description("Validate configuration and Atlassian connectivity")
.option("--format <format>", "Output format", "json")
.action((options) => {
const payload = {
ok: false,
message: "health is not implemented yet",
format: options.format,
};
console.log(JSON.stringify(payload, null, 2));
});
program.parse(process.argv);