@chief-clancy/plan 0.5.1 → 0.5.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.
Files changed (2) hide show
  1. package/README.md +10 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -140,9 +140,19 @@ For the complete development pipeline (brief, plan, implement, deliver), install
140
140
  npx chief-clancy
141
141
  ```
142
142
 
143
+ ## Also included
144
+
145
+ Installing `@chief-clancy/plan` also installs codebase scanning commands from [`@chief-clancy/scan`](https://www.npmjs.com/package/@chief-clancy/scan):
146
+
147
+ - `/clancy:map-codebase` — scan your codebase with 5 parallel agents and generate `.clancy/docs/`
148
+ - `/clancy:update-docs` — incrementally refresh docs affected by recent changes
149
+
150
+ Running `/clancy:map-codebase` before planning gives the planner real codebase context for better plans.
151
+
143
152
  ## Part of the Clancy monorepo
144
153
 
145
154
  - [`chief-clancy`](https://www.npmjs.com/package/chief-clancy) — full pipeline (install, configure, implement, autopilot)
155
+ - [`@chief-clancy/scan`](https://www.npmjs.com/package/@chief-clancy/scan) — codebase scanning agents and workflows
146
156
  - [`@chief-clancy/brief`](https://www.npmjs.com/package/@chief-clancy/brief) — strategic brief generator
147
157
  - [`@chief-clancy/terminal`](https://www.npmjs.com/package/@chief-clancy/terminal) — installer, slash commands, hooks, runners
148
158
  - [`@chief-clancy/core`](https://www.npmjs.com/package/@chief-clancy/core) — board integrations, pipeline phases, schemas
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chief-clancy/plan",
3
- "version": "0.5.1",
3
+ "version": "0.5.2",
4
4
  "private": false,
5
5
  "description": "Implementation planner for Claude Code — decompose briefs into actionable plans",
6
6
  "author": "Alex Clapperton",
@@ -40,7 +40,7 @@
40
40
  "src/workflows"
41
41
  ],
42
42
  "dependencies": {
43
- "@chief-clancy/scan": "0.2.0"
43
+ "@chief-clancy/scan": "0.2.1"
44
44
  },
45
45
  "scripts": {
46
46
  "build": "rm -rf dist tsconfig.build.tsbuildinfo && tsc --project tsconfig.build.json && tsc-alias --project tsconfig.build.json",