@chief-clancy/brief 0.3.1 → 0.3.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 +11 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -90,9 +90,20 @@ Existing behaviour, unchanged. The pipeline label respects `CLANCY_ROLES`: if `p
|
|
|
90
90
|
npx chief-clancy
|
|
91
91
|
```
|
|
92
92
|
|
|
93
|
+
## Also included
|
|
94
|
+
|
|
95
|
+
Installing `@chief-clancy/brief` also installs codebase scanning commands from [`@chief-clancy/scan`](https://www.npmjs.com/package/@chief-clancy/scan):
|
|
96
|
+
|
|
97
|
+
- `/clancy:map-codebase` — scan your codebase with 5 parallel agents and generate `.clancy/docs/`
|
|
98
|
+
- `/clancy:update-docs` — incrementally refresh docs affected by recent changes
|
|
99
|
+
|
|
100
|
+
Running `/clancy:map-codebase` before briefing enriches the devil's advocate analysis with real codebase context.
|
|
101
|
+
|
|
93
102
|
## Part of the Clancy monorepo
|
|
94
103
|
|
|
95
104
|
- [`chief-clancy`](https://www.npmjs.com/package/chief-clancy) — full pipeline (install, configure, implement, autopilot)
|
|
105
|
+
- [`@chief-clancy/scan`](https://www.npmjs.com/package/@chief-clancy/scan) — codebase scanning agents and workflows
|
|
106
|
+
- [`@chief-clancy/plan`](https://www.npmjs.com/package/@chief-clancy/plan) — implementation planner
|
|
96
107
|
- [`@chief-clancy/terminal`](https://www.npmjs.com/package/@chief-clancy/terminal) — installer, slash commands, hooks, runners
|
|
97
108
|
- [`@chief-clancy/core`](https://www.npmjs.com/package/@chief-clancy/core) — board integrations, pipeline phases, schemas
|
|
98
109
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chief-clancy/brief",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.2",
|
|
4
4
|
"description": "Strategic brief generator for Claude Code — grill, decompose, and document feature ideas",
|
|
5
5
|
"author": "Alex Clapperton",
|
|
6
6
|
"license": "MIT",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"src/agents"
|
|
41
41
|
],
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@chief-clancy/scan": "0.2.
|
|
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",
|