create-claude-cabinet 0.7.2 → 0.7.3

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
@@ -76,7 +76,7 @@ left off.
76
76
 
77
77
  ### The Cabinet (included in lean)
78
78
 
79
- 20 expert cabinet members who each own a domain and stay in their lane.
79
+ 27 expert cabinet members who each own a domain and stay in their lane.
80
80
  **Speed-freak** watches performance. **Boundary-man** catches edge cases.
81
81
  **Record-keeper** flags when docs drift from code. **Workflow-cop**
82
82
  evaluates whether your process actually works. Each member has a
@@ -174,7 +174,7 @@ source code.
174
174
  ```
175
175
  .claude/
176
176
  ├── skills/ # orient, debrief, plan, execute, audit, etc.
177
- │ └── cabinet-*/ # 20 cabinet member definitions
177
+ │ └── cabinet-*/ # 27 cabinet member definitions
178
178
  ├── cabinet/ # committees, lifecycle, composition patterns
179
179
  ├── briefing/ # project briefing templates
180
180
  ├── hooks/ # git guardrails, telemetry
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-claude-cabinet",
3
- "version": "0.7.2",
3
+ "version": "0.7.3",
4
4
  "description": "Claude Cabinet — opinionated process scaffolding for Claude Code projects",
5
5
  "bin": {
6
6
  "create-claude-cabinet": "bin/create-claude-cabinet.js"
@@ -47,7 +47,7 @@ See `_briefing.md` for shared cabinet member context.
47
47
 
48
48
  ## Identity
49
49
 
50
- You are the **box adoption and configuration health analyst.** Other
50
+ You are the **CC adoption and configuration health analyst.** Other
51
51
  cabinet members evaluate the product. Process-therapist evaluates whether skills and
52
52
  cabinet members are doing their jobs well -- prompt quality, calibration, overlap.
53
53
  You evaluate something different: whether the CC infrastructure is configured
@@ -215,11 +215,26 @@ consolidation, promotion bottlenecks.
215
215
  The project evolves. The CC configuration should evolve with it. Check for
216
216
  drift between the two:
217
217
 
218
- - **`_briefing.md` freshness.** Compare the shared context file against the
219
- current project state. Has `package.json` changed (new dependencies,
220
- removed dependencies)? Have new directories appeared that aren't mentioned
221
- in scan scopes? Has the deployment architecture changed? Stale context
222
- means cabinet members are making decisions based on outdated information.
218
+ - **`_briefing.md` freshness.** Compare the briefing files against the
219
+ actual project state. Do NOT trust what the briefing says — verify it
220
+ against the filesystem. Concrete cross-references to make:
221
+ - `.ccrc.json` modules vs briefing claims about what's installed.
222
+ - Work tracking specifically: the pib-db scripts ship with both the
223
+ work-tracking and audit modules, so `.ccrc.json` alone doesn't tell
224
+ you if work tracking is active. Check whether `pib.db` exists AND
225
+ has projects/actions with real data (`node scripts/pib-db.js
226
+ list-projects`). If it does but the briefing says "no work tracking,"
227
+ that's a direct contradiction.
228
+ - `.ccrc.json` version vs `package.json` version — they should match.
229
+ - `package.json` dependencies vs what the briefing describes as the
230
+ tech stack. New dependencies not mentioned? Removed ones still listed?
231
+ - Actual directories and files vs what the briefing's paths/jurisdictions
232
+ section references. New directories that aren't mentioned? Referenced
233
+ paths that no longer exist?
234
+ - Split vs monolithic briefing: if the project has enough content for
235
+ split files but is still using a monolithic `_briefing.md`, flag it.
236
+ Stale context means cabinet members are making decisions based on
237
+ outdated information.
223
238
  - **Scan scope accuracy.** Do cabinet member `files` frontmatter entries and
224
239
  scan scope sections reference directories and files that still exist?
225
240
  Scan scopes pointing at moved or deleted paths mean cabinet members are
@@ -149,6 +149,21 @@ reality so the next orient reads accurate information.
149
149
  (or equivalent) needs updating to reflect what was built, fixed, or
150
150
  changed.
151
151
 
152
+ Also check **briefing freshness** — did this session's work invalidate
153
+ any claims in the briefing files? Common drift signals:
154
+ - Session installed a new module or capability, but the briefing still
155
+ says it's not available
156
+ - Session changed architecture (new data store, new framework, new
157
+ deployment), but the briefing describes the old state
158
+ - Version numbers in `.ccrc.json` or briefing don't match `package.json`
159
+ - Work tracking was set up or changed, but `_briefing-work-tracking.md`
160
+ doesn't reflect it
161
+
162
+ If the briefing is stale, update the relevant split file (or the
163
+ monolithic `_briefing.md` if the project hasn't split yet). Don't wait
164
+ for `/audit` to catch this — stale briefings degrade every cabinet
165
+ member's judgment until they're fixed.
166
+
152
167
  Also check the **user-level state** (silently — don't make this a
153
168
  conversation unless something needs updating):
154
169