chief-clancy 0.9.15 → 0.9.17

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
@@ -24,6 +24,9 @@ This is the CLI entry point for the [Clancy monorepo](https://github.com/Pusheds
24
24
 
25
25
  - [`@chief-clancy/terminal`](https://www.npmjs.com/package/@chief-clancy/terminal) — installer, slash commands, hooks, runners, agents
26
26
  - [`@chief-clancy/core`](https://www.npmjs.com/package/@chief-clancy/core) — board integrations, pipeline phases, lifecycle modules, schemas
27
+ - [`@chief-clancy/scan`](https://www.npmjs.com/package/@chief-clancy/scan) — codebase scanning agents and workflows
28
+ - [`@chief-clancy/brief`](https://www.npmjs.com/package/@chief-clancy/brief) — strategic brief generator
29
+ - [`@chief-clancy/plan`](https://www.npmjs.com/package/@chief-clancy/plan) — implementation planner
27
30
 
28
31
  ## Documentation
29
32
 
package/bin/clancy.js CHANGED
@@ -50,6 +50,10 @@ const briefRoot = join(dirname(briefEntry), '..');
50
50
  const planEntry = fileURLToPath(import.meta.resolve('@chief-clancy/plan'));
51
51
  const planRoot = join(dirname(planEntry), '..');
52
52
 
53
+ const scanRoot = join(
54
+ dirname(require.resolve('@chief-clancy/scan/package.json')),
55
+ );
56
+
53
57
  const sources = {
54
58
  rolesDir: join(terminalRoot, 'src', 'roles'),
55
59
  hooksDir: join(terminalRoot, 'dist', 'hooks'),
@@ -60,6 +64,9 @@ const sources = {
60
64
  briefAgentsDir: join(briefRoot, 'src', 'agents'),
61
65
  planCommandsDir: join(planRoot, 'src', 'commands'),
62
66
  planWorkflowsDir: join(planRoot, 'src', 'workflows'),
67
+ scanAgentsDir: join(scanRoot, 'src', 'agents'),
68
+ scanCommandsDir: join(scanRoot, 'src', 'commands'),
69
+ scanWorkflowsDir: join(scanRoot, 'src', 'workflows'),
63
70
  };
64
71
 
65
72
  // ---------------------------------------------------------------------------
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chief-clancy",
3
- "version": "0.9.15",
3
+ "version": "0.9.17",
4
4
  "description": "Autonomous, board-driven development for Claude Code",
5
5
  "author": "Alex Clapperton",
6
6
  "license": "MIT",
@@ -30,8 +30,9 @@
30
30
  "bin"
31
31
  ],
32
32
  "dependencies": {
33
- "@chief-clancy/terminal": "0.1.7",
34
- "@chief-clancy/brief": "0.3.0",
35
- "@chief-clancy/plan": "0.5.0"
33
+ "@chief-clancy/brief": "0.3.2",
34
+ "@chief-clancy/plan": "0.5.2",
35
+ "@chief-clancy/scan": "0.2.1",
36
+ "@chief-clancy/terminal": "0.1.9"
36
37
  }
37
38
  }