create-claude-rails 0.5.1 → 0.5.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.
package/lib/cli.js
CHANGED
|
@@ -15,7 +15,7 @@ const MODULES = {
|
|
|
15
15
|
name: 'Session Loop (orient + debrief)',
|
|
16
16
|
description: 'Context continuity between sessions. Claude starts informed, ends by recording what happened.',
|
|
17
17
|
mandatory: true,
|
|
18
|
-
templates: ['skills/orient', 'skills/debrief', 'skills/debrief/phases/upstream-feedback.md', 'skills/menu', 'hooks/stop-hook.md'],
|
|
18
|
+
templates: ['skills/orient', 'skills/orient-quick', 'skills/debrief', 'skills/debrief-quick', 'skills/debrief/phases/upstream-feedback.md', 'skills/menu', 'hooks/stop-hook.md'],
|
|
19
19
|
},
|
|
20
20
|
'hooks': {
|
|
21
21
|
name: 'Git Guardrails + Telemetry',
|
package/package.json
CHANGED
|
@@ -5,7 +5,9 @@ description: |
|
|
|
5
5
|
updates state, captures lessons, and reports results. The operational
|
|
6
6
|
closing that prevents entropy between sessions. This is a skeleton skill
|
|
7
7
|
using the phases/ directory pattern. Use when: session end, "debrief",
|
|
8
|
-
"wrap up", "/debrief",
|
|
8
|
+
"wrap up", "/debrief", "quick debrief", "debrief-quick", "/debrief-quick",
|
|
9
|
+
or after completing significant work. If "quick" is mentioned, use the
|
|
10
|
+
Quick Mode section — run core phases only, skip presentation phases.
|
|
9
11
|
related:
|
|
10
12
|
- type: file
|
|
11
13
|
path: .claude/skills/debrief/phases/inventory.md
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: debrief-quick
|
|
3
|
+
description: |
|
|
4
|
+
Quick post-session debrief — core phases only, skip presentation.
|
|
5
|
+
Use when: "debrief-quick", "quick debrief", "/debrief-quick".
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
# /debrief-quick
|
|
9
|
+
|
|
10
|
+
Load the `/debrief` skill and run it in **Quick Mode** — core phases
|
|
11
|
+
only, skip presentation phases. See the debrief SKILL.md's Quick Mode
|
|
12
|
+
section for details.
|
|
@@ -5,7 +5,9 @@ description: |
|
|
|
5
5
|
items, runs health checks and maintenance, then presents a briefing so
|
|
6
6
|
the session starts informed. This is a skeleton skill using the phases/
|
|
7
7
|
directory pattern. Use when: session start, "orient", "what's the state",
|
|
8
|
-
"/orient".
|
|
8
|
+
"/orient", "quick orient", "orient-quick", "/orient-quick".
|
|
9
|
+
If "quick" is mentioned, use the Quick Mode section — run core phases
|
|
10
|
+
only, skip presentation phases.
|
|
9
11
|
related:
|
|
10
12
|
- type: file
|
|
11
13
|
path: .claude/skills/orient/phases/context.md
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: orient-quick
|
|
3
|
+
description: |
|
|
4
|
+
Quick session orientation — core phases only, skip presentation.
|
|
5
|
+
Use when: "orient-quick", "quick orient", "/orient-quick".
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
# /orient-quick
|
|
9
|
+
|
|
10
|
+
Load the `/orient` skill and run it in **Quick Mode** — core phases
|
|
11
|
+
only, skip presentation phases. See the orient SKILL.md's Quick Mode
|
|
12
|
+
section for details.
|