create-claude-cabinet 0.23.0 → 0.23.1
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 +11 -1
- package/package.json +1 -1
package/lib/cli.js
CHANGED
|
@@ -348,7 +348,17 @@ const MODULES = {
|
|
|
348
348
|
name: 'Session Loop (orient + debrief)',
|
|
349
349
|
description: 'The briefing cycle. Claude starts each session informed, ends by preparing the next briefing.',
|
|
350
350
|
mandatory: true,
|
|
351
|
-
templates: [
|
|
351
|
+
templates: [
|
|
352
|
+
'skills/orient',
|
|
353
|
+
'skills/orient-quick',
|
|
354
|
+
'skills/debrief',
|
|
355
|
+
'skills/debrief-quick',
|
|
356
|
+
// Instruction phases — always ship, overriding the default skip-phases rule in copy.js
|
|
357
|
+
'skills/debrief/phases/audit-pattern-capture.md',
|
|
358
|
+
'skills/debrief/phases/methodology-capture.md',
|
|
359
|
+
'skills/debrief/phases/upstream-feedback.md',
|
|
360
|
+
'skills/menu',
|
|
361
|
+
],
|
|
352
362
|
},
|
|
353
363
|
'hooks': {
|
|
354
364
|
name: 'Git Guardrails + Telemetry',
|
package/package.json
CHANGED