@kaddo/cli 3.29.0 → 3.31.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -525,6 +525,8 @@ create --from roadmap → owners → guard → explain`.
525
525
  | v3.28.1 | Claude adapter safe merge: `--inject` works for `CLAUDE.md` too; adapter markers are now target-neutral (`KADDO ADAPTER`) and legacy Codex markers auto-migrate on update |
526
526
  | v3.28.2 | Adapter inject guard: `--inject` on a fully Kaddo-generated AGENTS.md/CLAUDE.md does nothing (suggests `--force`), preventing duplicated Kaddo guidance |
527
527
  | v3.29 | OpenCode adapter: `kaddo adapters install opencode` (alias `kaddo export opencode`) generates an `AGENTS.md` projection reusing the shared adapter common core (`--dry-run`/`--force`/`--inject` + inject guard) |
528
+ | v3.30 | Antigravity adapter: `kaddo adapters install antigravity` (alias `kaddo export antigravity`) generates an `AGENTS.md` projection reusing the shared adapter common core (`--dry-run`/`--force`/`--inject` + inject guard) |
529
+ | v3.31 | Kiro adapter: `kaddo adapters install kiro` (alias `kaddo export kiro`) generates an `AGENTS.md` projection reusing the shared adapter common core (`--dry-run`/`--force`/`--inject` + inject guard) |
528
530
 
529
531
  **Optional modules (installed with `kaddo add`):**
530
532
 
package/dist/index.js CHANGED
@@ -12407,7 +12407,9 @@ var ROLE_HINTS = {
12407
12407
  var TARGET_FILE = {
12408
12408
  codex: "AGENTS.md",
12409
12409
  claude: "CLAUDE.md",
12410
- opencode: "AGENTS.md"
12410
+ opencode: "AGENTS.md",
12411
+ antigravity: "AGENTS.md",
12412
+ kiro: "AGENTS.md"
12411
12413
  };
12412
12414
  function renderAdapterMarkdown(ctx, target) {
12413
12415
  const file = TARGET_FILE[target];
@@ -12613,7 +12615,9 @@ ${sep}${block}
12613
12615
  var TARGETS2 = {
12614
12616
  codex: { target: "codex", file: "AGENTS.md", label: "Codex", supportsInject: true },
12615
12617
  claude: { target: "claude", file: "CLAUDE.md", label: "Claude Code", supportsInject: true },
12616
- opencode: { target: "opencode", file: "AGENTS.md", label: "OpenCode", supportsInject: true }
12618
+ opencode: { target: "opencode", file: "AGENTS.md", label: "OpenCode", supportsInject: true },
12619
+ antigravity: { target: "antigravity", file: "AGENTS.md", label: "Antigravity", supportsInject: true },
12620
+ kiro: { target: "kiro", file: "AGENTS.md", label: "Kiro", supportsInject: true }
12617
12621
  };
12618
12622
  function runAdaptersInstall(adapter, opts = {}) {
12619
12623
  const dir = cwd();
@@ -12755,10 +12759,10 @@ var questionsAction = (opts) => runQuestions(opts);
12755
12759
  program.command("questions").description("Open-questions readiness gate: blocking/important/deferred decisions before the roadmap").option("--json", "Output JSON instead of a summary").option("--output <path>", "Write the report to a file (e.g. .kaddo/reports/questions-report.md)").action(questionsAction);
12756
12760
  program.command("readiness").description("Alias for `kaddo questions`").option("--json", "Output JSON instead of a summary").option("--output <path>", "Write the report to a file").action(questionsAction);
12757
12761
  var adaptersCmd = program.command("adapters").description("Generate adapters that project Kaddo knowledge for external coding agents");
12758
- adaptersCmd.command("install <adapter>").description("Generate an adapter file (codex/opencode \u2192 AGENTS.md, claude \u2192 CLAUDE.md) from Kaddo knowledge").option("--force", "Overwrite an existing output file").option("--inject", "Add or update only the Kaddo block in an existing file, preserving the rest").option("--dry-run", "Print the content without writing files").action((adapter, opts) => {
12762
+ adaptersCmd.command("install <adapter>").description("Generate an adapter file (codex/opencode/antigravity/kiro \u2192 AGENTS.md, claude \u2192 CLAUDE.md) from Kaddo knowledge").option("--force", "Overwrite an existing output file").option("--inject", "Add or update only the Kaddo block in an existing file, preserving the rest").option("--dry-run", "Print the content without writing files").action((adapter, opts) => {
12759
12763
  runAdaptersInstall(adapter, opts);
12760
12764
  });
12761
- program.command("export <adapter>").description("Alias for `kaddo adapters install <adapter>` (codex/opencode \u2192 AGENTS.md, claude \u2192 CLAUDE.md)").option("--force", "Overwrite an existing output file").option("--inject", "Add or update only the Kaddo block in an existing file, preserving the rest").option("--dry-run", "Print the content without writing files").action((adapter, opts) => {
12765
+ program.command("export <adapter>").description("Alias for `kaddo adapters install <adapter>` (codex/opencode/antigravity/kiro \u2192 AGENTS.md, claude \u2192 CLAUDE.md)").option("--force", "Overwrite an existing output file").option("--inject", "Add or update only the Kaddo block in an existing file, preserving the rest").option("--dry-run", "Print the content without writing files").action((adapter, opts) => {
12762
12766
  runAdaptersInstall(adapter, opts);
12763
12767
  });
12764
12768
  program.command("guard").description("Check if modified code has related artifacts that were not updated").option("--staged", "Check only staged files").option("--no-interactive", "Disable interactive ignore prompts").option("--ci", "CI mode: output JSON, no prompts, non-blocking").option("--json", "Output JSON (alias for --ci)").option("--workspace", "Also check local mapped module repos from .kaddo/modules.yml (opt-in)").option("--include-archived", "Include archived Work Items in ownership matching (excluded by default)").option("--record", "Record this run to .kaddo/history/ for drift trend reporting").action(async (opts) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kaddo/cli",
3
- "version": "3.29.0",
3
+ "version": "3.31.0",
4
4
  "description": "Knowledge Driven Development toolkit",
5
5
  "license": "MIT",
6
6
  "repository": {