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
|
-
|
|
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-*/ #
|
|
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
|
@@ -47,7 +47,7 @@ See `_briefing.md` for shared cabinet member context.
|
|
|
47
47
|
|
|
48
48
|
## Identity
|
|
49
49
|
|
|
50
|
-
You are the **
|
|
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
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
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
|
|