create-claude-cabinet 0.6.1 → 0.6.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 +79 -28
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -30,7 +30,7 @@ curl -fsSL https://raw.githubusercontent.com/orenmagid/claude-cabinet/main/insta
30
30
  ```
31
31
 
32
32
  That's it. If you don't have git or Node.js, it installs them.
33
- No choices to make — it sets up everything.
33
+ No choices to make — you get everything.
34
34
 
35
35
  Then open [Claude Code](https://claude.ai/code) in the same folder and
36
36
  say `/onboard`. It'll interview you about your project and set everything
@@ -41,8 +41,8 @@ step-by-step walkthrough.
41
41
 
42
42
  ### For developers
43
43
 
44
- If you have Node.js installed and want interactive module selection,
45
- database setup, or the full install:
44
+ If you have Node.js installed and want to choose which modules to
45
+ install, or want the lean option (skips work tracking and compliance):
46
46
 
47
47
  ```bash
48
48
  npx create-claude-cabinet
@@ -55,42 +55,93 @@ it's done, open Claude Code and run `/onboard`.
55
55
  ## What You Get
56
56
 
57
57
  ### The Session Loop (always installed)
58
- - **`/orient`** — session briefing. Reads project state, checks health,
59
- surfaces what needs attention. Every session starts informed.
60
- - **`/debrief`** — session close. Marks work done, records lessons,
61
- updates state. Every session closes the loop so the next one starts
62
- clean.
63
-
64
- ### The Cabinet (opt-in)
65
- 20 expert cabinet members who audit your project from their domain:
66
- **speed-freak** watches performance, **boundary-man** catches edge cases,
67
- **record-keeper** flags when docs drift from code, **workflow-cop**
58
+
59
+ This is the foundation. You run these commands — they don't happen
60
+ automatically.
61
+
62
+ - **`/orient`** — open every session with this. Claude reads project
63
+ state, checks health, surfaces what needs attention, and briefs you
64
+ so you never start blind. Think of it as the morning briefing before
65
+ the cabinet gets to work.
66
+ - **`/debrief`** close every session with this. Claude marks work
67
+ done, records lessons, updates state, and prepares the briefing for
68
+ next time. Without debrief, the next orient starts with stale
69
+ information. The loop is what gives Claude memory across sessions.
70
+
71
+ **The habit matters.** Orient and debrief take 30 seconds each. Skip
72
+ them and sessions start from zero — Claude forgets what happened,
73
+ repeats mistakes, and you spend the first 10 minutes re-explaining
74
+ context. Keep the loop and each session picks up where the last one
75
+ left off.
76
+
77
+ ### The Cabinet (included in lean)
78
+
79
+ 20 expert cabinet members who each own a domain and stay in their lane.
80
+ **Speed-freak** watches performance. **Boundary-man** catches edge cases.
81
+ **Record-keeper** flags when docs drift from code. **Workflow-cop**
68
82
  evaluates whether your process actually works. Each member has a
69
- portfolio, stays in it, and produces structured findings you can
70
- triage. Convene the whole cabinet or just the committee you need.
83
+ portfolio, produces structured findings, and knows when to speak up
84
+ and when to stay quiet.
85
+
86
+ You convene the cabinet with **`/audit`** — run it occasionally (every
87
+ few sessions, or before a release) to get a full review from every
88
+ relevant member. You don't need to audit every session. The cabinet
89
+ waits until called.
90
+
91
+ Members are organized into **committees** — groups by concern, so you
92
+ can convene just the experts you need. Security review? Convene the
93
+ security committee. Performance concerns? Just the speed committee.
94
+
95
+ ### Planning + Execution (included in lean)
96
+
97
+ Don't just start building — brief the cabinet first.
98
+
99
+ - **`/plan`** — describe what you want to build. Claude drafts a plan,
100
+ then the relevant cabinet members critique it before a single line is
101
+ written. The security member notices the missing auth check. The
102
+ data integrity member catches the NULL handling gap. You approve the
103
+ plan, and it carries enough detail for any future session to execute
104
+ without re-exploring.
105
+ - **`/execute`** — pick up an approved plan and build it step by step.
106
+ Cabinet members watch at each checkpoint. The plan tells Claude what
107
+ to do; execute makes sure it gets done right.
71
108
 
72
- ### Planning + Execution (opt-in)
73
- - **`/plan`** — structured planning with cabinet critique. Before you
74
- build, the relevant members weigh in on your approach.
75
- - **`/execute`** — step-through execution with checkpoints. Cabinet
76
- members watch at each stage.
109
+ ### Work Tracking (full install)
77
110
 
78
- ### Work Tracking (opt-in)
79
111
  Local SQLite database for actions, projects, and status tracking. Claude
80
112
  reads and writes it directly — no external service needed. Skip this if
81
113
  you already use GitHub Issues, Linear, or something else.
82
114
 
83
- ### Compliance Stack (opt-in)
115
+ ### Compliance Stack (full install)
116
+
84
117
  Scoped instructions in `.claude/rules/` that load by file path. An
85
118
  enforcement pipeline that promotes recurring feedback into deterministic
86
119
  hooks — things that keep going wrong become things that can't go wrong.
87
120
 
88
- ### Lifecycle (opt-in)
89
- - **`/onboard`** — conversational project interview, re-runnable as the
90
- project matures.
91
- - **`/seed`** detects new tech in your project, recruits cabinet
92
- members with the right expertise.
93
- - **`/cc-upgrade`** — conversational merge when Claude Cabinet updates.
121
+ ### Lifecycle (included in lean)
122
+
123
+ - **`/onboard`** — the cabinet's first briefing. Claude interviews you
124
+ about your project and prepares everything the members need to do
125
+ their jobs. Re-run it as the project matures — the interview adapts.
126
+ - **`/seed`** — recruit new members. Claude detects new tech in your
127
+ project and proposes expert members to cover it. Your cabinet grows
128
+ with your project.
129
+ - **`/cc-upgrade`** — when Claude Cabinet publishes updates, this skill
130
+ runs the installer for the mechanical parts and walks you through
131
+ what changed conversationally. Intelligence is the merge strategy.
132
+
133
+ ## Your Workflow
134
+
135
+ The day-to-day rhythm:
136
+
137
+ 1. **Start a session** → `/orient` (get briefed)
138
+ 2. **Do your work** → talk to Claude, use `/plan` for anything non-trivial
139
+ 3. **Build it** → `/execute` to implement approved plans with cabinet oversight
140
+ 4. **Check quality** → `/audit` occasionally for a full cabinet review
141
+ 5. **Close the session** → `/debrief` (close the loop)
142
+
143
+ Steps 1 and 5 are the minimum. Everything in between is yours to use as
144
+ needed. The more you use, the more the cabinet learns about your project.
94
145
 
95
146
  ## How It Works
96
147
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-claude-cabinet",
3
- "version": "0.6.1",
3
+ "version": "0.6.2",
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"