create-claude-cabinet 0.12.1 → 0.13.0
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/lib/cli.js +2 -2
- package/package.json +1 -1
- package/templates/README.md +4 -4
- package/templates/cabinet/directives-project.yaml +2 -2
- package/templates/skills/{extract → cc-extract}/SKILL.md +6 -6
- package/templates/skills/{link → cc-link}/SKILL.md +5 -5
- package/templates/skills/{publish → cc-publish}/SKILL.md +5 -6
- package/templates/skills/{unlink → cc-unlink}/SKILL.md +3 -3
- package/templates/skills/debrief/SKILL.md +2 -2
- package/templates/skills/debrief/phases/upstream-feedback.md +2 -2
package/lib/cli.js
CHANGED
|
@@ -373,7 +373,7 @@ const MODULES = {
|
|
|
373
373
|
mandatory: false,
|
|
374
374
|
default: true,
|
|
375
375
|
lean: true,
|
|
376
|
-
templates: ['skills/onboard', 'skills/seed', 'skills/cc-upgrade', 'skills/link', 'skills/unlink', 'skills/extract'],
|
|
376
|
+
templates: ['skills/onboard', 'skills/seed', 'skills/cc-upgrade', 'skills/cc-link', 'skills/cc-unlink', 'skills/cc-extract'],
|
|
377
377
|
},
|
|
378
378
|
'validate': {
|
|
379
379
|
name: 'Validate',
|
|
@@ -755,7 +755,7 @@ async function run() {
|
|
|
755
755
|
// Note: publish is CC-source-repo-only, not shipped to consumers.
|
|
756
756
|
const alwaysCopyPhases = [
|
|
757
757
|
'skills/onboard', 'skills/seed',
|
|
758
|
-
'skills/cc-upgrade', 'skills/extract',
|
|
758
|
+
'skills/cc-upgrade', 'skills/cc-extract',
|
|
759
759
|
];
|
|
760
760
|
const isSkill = tmpl.startsWith('skills/') && !alwaysCopyPhases.some(p => tmpl.startsWith(p));
|
|
761
761
|
const results = await copyTemplates(srcPath, destPath, {
|
package/package.json
CHANGED
package/templates/README.md
CHANGED
|
@@ -40,20 +40,20 @@ templates, see [EXTENSIONS.md](EXTENSIONS.md).
|
|
|
40
40
|
| `skills/debrief-quick/` | Quick debrief variant — core phases only, skip presentation. |
|
|
41
41
|
| `skills/execute/` | Execute a plan with cabinet member checkpoints. 3-checkpoint protocol (pre-implementation, per-file-group, pre-commit). 5 phase files. |
|
|
42
42
|
| `skills/execute-plans/` | Batch execution of multiple plans with conflict detection. |
|
|
43
|
-
| `skills/extract/` | Analyze project artifacts and propose upstream extraction candidates for Claude Cabinet. |
|
|
43
|
+
| `skills/cc-extract/` | Analyze project artifacts and propose upstream extraction candidates for Claude Cabinet. |
|
|
44
44
|
| `skills/investigate/` | Structured codebase exploration: frame, observe, hypothesize, test, conclude. |
|
|
45
|
-
| `skills/link/` | Set up local development linking for Claude Cabinet source repo work. |
|
|
45
|
+
| `skills/cc-link/` | Set up local development linking for Claude Cabinet source repo work. |
|
|
46
46
|
| `skills/memory/` | Browse, search, and manage semantic memory via omega. |
|
|
47
47
|
| `skills/menu/` | Dynamically discover and display all available skills. Reads from `_index.json`. |
|
|
48
48
|
| `skills/onboard/` | Conversational onboarding. Interviews you, generates briefings, wires the session loop. Re-runnable. 8 phase files. |
|
|
49
49
|
| `skills/orient/` | Session start. Load context, sync data, scan work, run health checks, spawn cabinet consultations, show skills menu. 7 phase files. |
|
|
50
50
|
| `skills/orient-quick/` | Quick orient variant — core phases only, skip presentation. |
|
|
51
51
|
| `skills/plan/` | Structured planning with cabinet critique. Research, overlap check, draft, critique, completeness, present, file. 9 phase files. |
|
|
52
|
-
| `skills/publish/` | Publish workflow (CC source repo only, not shipped to consumers). |
|
|
52
|
+
| `skills/cc-publish/` | Publish workflow (CC source repo only, not shipped to consumers). |
|
|
53
53
|
| `skills/pulse/` | Self-description accuracy check. Count freshness, dead references, staleness. 3 phase files. |
|
|
54
54
|
| `skills/seed/` | Recruit new cabinet members. Detect technology signals, propose expertise, build collaboratively. 4 phase files. |
|
|
55
55
|
| `skills/triage-audit/` | Audit finding triage via local web UI or CLI. Load, present, apply verdicts. 3 phase files. |
|
|
56
|
-
| `skills/unlink/` | Remove local development linking. Returns to published npm package. |
|
|
56
|
+
| `skills/cc-unlink/` | Remove local development linking. Returns to published npm package. |
|
|
57
57
|
| `skills/validate/` | Run structural validation checks. Validators defined in phase files. |
|
|
58
58
|
| `skills/work-tracker/` | Open the work tracking UI interactively. Starts local server. |
|
|
59
59
|
|
|
@@ -15,9 +15,9 @@
|
|
|
15
15
|
# Format:
|
|
16
16
|
#
|
|
17
17
|
# cabinet-record-keeper:
|
|
18
|
-
# standing-mandate: [publish]
|
|
18
|
+
# standing-mandate: [cc-publish]
|
|
19
19
|
# directives:
|
|
20
|
-
# publish: >
|
|
20
|
+
# cc-publish: >
|
|
21
21
|
# Check all docs for staleness and missing additions
|
|
22
22
|
# before the version is published.
|
|
23
23
|
#
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
---
|
|
2
|
-
name: extract
|
|
2
|
+
name: cc-extract
|
|
3
3
|
description: |
|
|
4
4
|
Analyze non-CC skills, cabinet members, and other artifacts in a consuming
|
|
5
5
|
project and propose candidates for upstreaming into Claude Cabinet as
|
|
6
6
|
generic templates. Does not perform the extraction — files a proposal
|
|
7
7
|
that surfaces during orient in the CC repo. Use when: "extract",
|
|
8
|
-
"upstream this", "should this be in CC?", "/extract".
|
|
8
|
+
"upstream this", "should this be in CC?", "/cc-extract".
|
|
9
9
|
---
|
|
10
10
|
|
|
11
|
-
# /extract — Propose Artifacts for Upstreaming to CC
|
|
11
|
+
# /cc-extract — Propose Artifacts for Upstreaming to CC
|
|
12
12
|
|
|
13
13
|
## Purpose
|
|
14
14
|
|
|
@@ -154,9 +154,9 @@ After filing, summarize:
|
|
|
154
154
|
|
|
155
155
|
The user can target specific artifacts:
|
|
156
156
|
|
|
157
|
-
- `/extract` — scan everything
|
|
158
|
-
- `/extract skills/my-skill` — evaluate a specific skill
|
|
159
|
-
- `/extract cabinet-members` — evaluate all custom cabinet members
|
|
157
|
+
- `/cc-extract` — scan everything
|
|
158
|
+
- `/cc-extract skills/my-skill` — evaluate a specific skill
|
|
159
|
+
- `/cc-extract cabinet-members` — evaluate all custom cabinet members
|
|
160
160
|
|
|
161
161
|
## What This Does NOT Do
|
|
162
162
|
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
---
|
|
2
|
-
name: link
|
|
2
|
+
name: cc-link
|
|
3
3
|
description: |
|
|
4
4
|
Set up local development linking for Claude Cabinet. Detects whether
|
|
5
5
|
you're in the CC source repo or a consuming project and runs the
|
|
6
6
|
appropriate npm link command. Use when: "link", "local dev", "use local
|
|
7
|
-
CC", "/link".
|
|
7
|
+
CC", "/cc-link".
|
|
8
8
|
---
|
|
9
9
|
|
|
10
|
-
# /link — Local Development Linking
|
|
10
|
+
# /cc-link — Local Development Linking
|
|
11
11
|
|
|
12
12
|
## Purpose
|
|
13
13
|
|
|
@@ -21,7 +21,7 @@ Before doing anything, determine where you are:
|
|
|
21
21
|
**CC source repo** (`package.json` has `name: "create-claude-cabinet"`):
|
|
22
22
|
- Run `npm link` to register the package globally
|
|
23
23
|
- This makes the local checkout available to any project that links to it
|
|
24
|
-
- Tell the user: "Registered locally. In your other projects, run `/link`
|
|
24
|
+
- Tell the user: "Registered locally. In your other projects, run `/cc-link`
|
|
25
25
|
to connect them to this checkout."
|
|
26
26
|
|
|
27
27
|
**Any other project** (anything that isn't the CC source repo):
|
|
@@ -38,7 +38,7 @@ Before doing anything, determine where you are:
|
|
|
38
38
|
|
|
39
39
|
The CC source repo must have been linked first (`npm link` from the CC
|
|
40
40
|
directory). If a consuming project tries to link and the global link
|
|
41
|
-
doesn't exist, npm will error. In that case, tell the user to run `/link`
|
|
41
|
+
doesn't exist, npm will error. In that case, tell the user to run `/cc-link`
|
|
42
42
|
in their CC checkout first.
|
|
43
43
|
|
|
44
44
|
## What This Encodes
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
---
|
|
2
|
-
name: publish
|
|
2
|
+
name: cc-publish
|
|
3
3
|
description: |
|
|
4
4
|
Publish a new version of Claude Cabinet to npm. Analyzes changes since
|
|
5
5
|
last release, suggests a version bump (patch/minor/major), updates
|
|
6
6
|
package.json, commits, tags, and publishes. Use when: "publish",
|
|
7
|
-
"release", "ship it", "/publish".
|
|
7
|
+
"release", "ship it", "/cc-publish".
|
|
8
8
|
---
|
|
9
9
|
|
|
10
|
-
# /publish — Release to npm
|
|
10
|
+
# /cc-publish — Release to npm
|
|
11
11
|
|
|
12
12
|
## Purpose
|
|
13
13
|
|
|
@@ -74,8 +74,7 @@ With user confirmation:
|
|
|
74
74
|
present, run a full install (`node bin/create-claude-cabinet.js --yes`).
|
|
75
75
|
If only lean modules, run `--lean`. Never downgrade a full install to
|
|
76
76
|
lean.
|
|
77
|
-
- After the install, verify `package.json` wasn't corrupted
|
|
78
|
-
|
|
79
|
-
pre-install `package.json` had it and revert if not).
|
|
77
|
+
- After the install, verify `package.json` wasn't corrupted — check that
|
|
78
|
+
no unexpected fields were added or existing fields changed.
|
|
80
79
|
- Update `system-status.md` if it exists
|
|
81
80
|
- Report the published version and npm URL
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
---
|
|
2
|
-
name: unlink
|
|
2
|
+
name: cc-unlink
|
|
3
3
|
description: |
|
|
4
4
|
Remove local development linking for Claude Cabinet. Returns the
|
|
5
5
|
project to using the published npm version. Use when: "unlink",
|
|
6
|
-
"stop using local CC", "use published version", "/unlink".
|
|
6
|
+
"stop using local CC", "use published version", "/cc-unlink".
|
|
7
7
|
---
|
|
8
8
|
|
|
9
|
-
# /unlink — Remove Local Development Link
|
|
9
|
+
# /cc-unlink — Remove Local Development Link
|
|
10
10
|
|
|
11
11
|
## Purpose
|
|
12
12
|
|
|
@@ -307,7 +307,7 @@ it in the report for the user to confirm, edit, or dismiss. If
|
|
|
307
307
|
confirmed, the feedback is delivered to the CC repo (via local link
|
|
308
308
|
or GitHub issue). If nothing — the phase is silent.
|
|
309
309
|
|
|
310
|
-
This is different from `/extract` (which proposes generalizable
|
|
310
|
+
This is different from `/cc-extract` (which proposes generalizable
|
|
311
311
|
artifacts for upstreaming). This captures field friction: what hurt,
|
|
312
312
|
what was confusing, what needed a workaround.
|
|
313
313
|
|
|
@@ -341,7 +341,7 @@ If the user says no, move on.
|
|
|
341
341
|
**Separately and less commonly:** did this session produce something
|
|
342
342
|
that could be useful *beyond* this project — in any project? A
|
|
343
343
|
generalizable pattern, cabinet member, or convention? If so, mention
|
|
344
|
-
`/extract` as an option for proposing it upstream to CC. This is
|
|
344
|
+
`/cc-extract` as an option for proposing it upstream to CC. This is
|
|
345
345
|
rarer than project-specific skills.
|
|
346
346
|
|
|
347
347
|
### 11. Cabinet Check (core)
|
|
@@ -19,7 +19,7 @@ one narrow question: **was there friction with anything CC provided?**
|
|
|
19
19
|
- A missing capability that required a workaround
|
|
20
20
|
- An unclear SKILL.md that led to wasted time
|
|
21
21
|
|
|
22
|
-
This is NOT the same as `/extract` (which looks for generalizable
|
|
22
|
+
This is NOT the same as `/cc-extract` (which looks for generalizable
|
|
23
23
|
artifacts to upstream). This is field feedback — "this thing you shipped
|
|
24
24
|
hurt when I used it."
|
|
25
25
|
|
|
@@ -75,7 +75,7 @@ friction points (rare), present each separately.
|
|
|
75
75
|
### 4. Deliver
|
|
76
76
|
|
|
77
77
|
If the user confirms, deliver the feedback. Detection and delivery
|
|
78
|
-
follow the same pattern as `/extract`:
|
|
78
|
+
follow the same pattern as `/cc-extract`:
|
|
79
79
|
|
|
80
80
|
**If linked** (the CC package resolves to a local directory — check
|
|
81
81
|
if `node -e "console.log(require.resolve('create-claude-cabinet'))"`
|