@kaddo/cli 3.7.0 → 3.7.2

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
@@ -438,6 +438,9 @@ create --from roadmap → owners → guard → explain`.
438
438
  | v3.4 | Delivery protocol in the `work-item-agent`: branch first per the Git strategy, commit only with human confirmation (CLI never touches git) |
439
439
  | v3.5 | Knowledge discovery by front-matter type with per-layer maturity (explain/understand/context); context pack carries Operating Rules so agents never commit without confirmation |
440
440
  | v3.5.1 | Author attribution & knowledge identity: Kaddo as a practical implementation of KDD for AI-assisted development (docs/README) |
441
+ | v3.6 | Flexible roadmap parsing and roadmap candidate/materialized Work Item reporting |
442
+ | v3.7 | Work Item lifecycle active workspace (`draft`, `ready`, `in-progress`, `blocked`, `completed`, `archived`) |
443
+ | v3.7.1 | Context Efficiency positioning: Repository Exploration Tax and structured-knowledge narrative |
441
444
 
442
445
  **Optional modules (installed with `kaddo add`):**
443
446
 
package/dist/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
 
3
3
  // src/index.ts
4
+ import { createRequire } from "module";
4
5
  import { Command } from "commander";
5
6
 
6
7
  // src/commands/init.ts
@@ -8435,8 +8436,10 @@ async function runBootstrap(dir = cwd()) {
8435
8436
  }
8436
8437
 
8437
8438
  // src/index.ts
8439
+ var require2 = createRequire(import.meta.url);
8440
+ var { version } = require2("../package.json");
8438
8441
  var program = new Command();
8439
- program.name("kaddo").description("Knowledge Driven Development toolkit").version("3.6.0");
8442
+ program.name("kaddo").description("Knowledge Driven Development toolkit").version(version);
8440
8443
  program.command("init").description("Initialize Kaddo in the current project").action(async () => {
8441
8444
  await runInit();
8442
8445
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kaddo/cli",
3
- "version": "3.7.0",
3
+ "version": "3.7.2",
4
4
  "description": "Knowledge Driven Development toolkit",
5
5
  "license": "MIT",
6
6
  "repository": {