create-claude-rails 0.4.1 → 0.5.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/README.md
CHANGED
|
@@ -1,21 +1,39 @@
|
|
|
1
1
|
# Claude on Rails
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Process scaffolding for Claude Code projects, by a guy who'd rather
|
|
4
|
+
talk to Claude than write code.
|
|
4
5
|
|
|
5
6
|
One command gives you a session loop (orient/debrief), work tracking,
|
|
6
7
|
structured planning, an audit system with expert perspectives, and
|
|
7
8
|
enforcement hooks — all configured through conversational onboarding.
|
|
9
|
+
Most of it was built by Claude. I just complained until it worked.
|
|
8
10
|
|
|
9
|
-
##
|
|
11
|
+
## Install
|
|
12
|
+
|
|
13
|
+
Open a terminal, `cd` into your project folder, and run:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
curl -fsSL https://raw.githubusercontent.com/orenmagid/claude-on-rails/main/install.sh | bash
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
That's it. No Node.js, no npm, no git required — just a terminal.
|
|
20
|
+
|
|
21
|
+
Then open [Claude Code](https://claude.ai/code) in the same folder and
|
|
22
|
+
say `/onboard`. It'll interview you about your project and set everything
|
|
23
|
+
up based on your answers.
|
|
24
|
+
|
|
25
|
+
### For developers
|
|
26
|
+
|
|
27
|
+
If you have Node.js installed and want interactive module selection,
|
|
28
|
+
database setup, or the full install:
|
|
10
29
|
|
|
11
30
|
```bash
|
|
12
31
|
npx create-claude-rails
|
|
13
32
|
```
|
|
14
33
|
|
|
15
|
-
|
|
34
|
+
The CLI walks you through module selection, copies skill files,
|
|
16
35
|
sets up hooks, and optionally installs a local SQLite work tracker. When
|
|
17
|
-
it's done, open Claude Code and run `/onboard
|
|
18
|
-
your project and generates the context layer that makes everything work.
|
|
36
|
+
it's done, open Claude Code and run `/onboard`.
|
|
19
37
|
|
|
20
38
|
## What You Get
|
|
21
39
|
|
|
@@ -36,9 +54,9 @@ you already use GitHub Issues, Linear, or something else.
|
|
|
36
54
|
- **`/execute`** — step-through execution with checkpoints and guardrails.
|
|
37
55
|
|
|
38
56
|
### Audit System (opt-in)
|
|
39
|
-
|
|
40
|
-
performance, etc.) that analyze your codebase and
|
|
41
|
-
findings. Triage UI for reviewing results.
|
|
57
|
+
20 expert perspectives (security, accessibility, data integrity,
|
|
58
|
+
performance, architecture, process, etc.) that analyze your codebase and
|
|
59
|
+
produce structured findings. Triage UI for reviewing results.
|
|
42
60
|
|
|
43
61
|
### Compliance Stack (opt-in)
|
|
44
62
|
Scoped instructions in `.claude/rules/` that load by file path. An
|
|
@@ -102,8 +120,14 @@ scripts/
|
|
|
102
120
|
|
|
103
121
|
## Upgrading
|
|
104
122
|
|
|
123
|
+
Re-run the installer to pick up new versions:
|
|
124
|
+
|
|
105
125
|
```bash
|
|
106
|
-
|
|
126
|
+
# Shell installer (re-downloads latest)
|
|
127
|
+
curl -fsSL https://raw.githubusercontent.com/orenmagid/claude-on-rails/main/install.sh | bash
|
|
128
|
+
|
|
129
|
+
# npm installer (if using Node.js)
|
|
130
|
+
npx create-claude-rails
|
|
107
131
|
```
|
|
108
132
|
|
|
109
133
|
In Claude Code, run `/cor-upgrade` for conversational merge of upstream
|
|
@@ -121,8 +145,14 @@ starts from zero. Orient/debrief creates continuity. Planning with
|
|
|
121
145
|
perspectives catches problems before they ship. The enforcement pipeline
|
|
122
146
|
turns recurring mistakes into permanent fixes.
|
|
123
147
|
|
|
124
|
-
None of this requires you to be a developer.
|
|
125
|
-
meets you where you are, and the system adapts
|
|
148
|
+
None of this requires you to be a developer. I'm barely one myself. The
|
|
149
|
+
onboarding interview meets you where you are, and the system adapts
|
|
150
|
+
based on what you tell it.
|
|
151
|
+
|
|
152
|
+
This is very much a work in progress. Things will break. The session
|
|
153
|
+
loop is solid; everything else is still finding its shape. If you try it
|
|
154
|
+
and something's weird, that's not you — it's probably me. Or Claude.
|
|
155
|
+
We're figuring it out together.
|
|
126
156
|
|
|
127
157
|
## License
|
|
128
158
|
|
package/package.json
CHANGED
|
@@ -1,24 +1,23 @@
|
|
|
1
1
|
---
|
|
2
|
+
model: opus
|
|
2
3
|
name: cor-upgrade
|
|
3
4
|
description: |
|
|
4
|
-
Conversational upgrade when
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
"
|
|
5
|
+
Conversational upgrade when Claude on Rails updates. Runs the installer to
|
|
6
|
+
mechanically update all upstream-owned files, then walks through what changed
|
|
7
|
+
conversationally — explaining improvements, handling _context.md updates,
|
|
8
|
+
new phase file opportunities, and schema migrations. Intelligence is the
|
|
9
|
+
merge strategy for the parts that need it. Use when: "cor-upgrade",
|
|
10
|
+
"update CoR", "new skeletons", "/cor-upgrade".
|
|
9
11
|
related:
|
|
10
12
|
- type: file
|
|
11
|
-
path: .claude/skills/cor-upgrade/phases/
|
|
12
|
-
role: "
|
|
13
|
+
path: .claude/skills/cor-upgrade/phases/pre-upgrade.md
|
|
14
|
+
role: "Pre-upgrade checks and state capture"
|
|
13
15
|
- type: file
|
|
14
|
-
path: .claude/skills/cor-upgrade/phases/
|
|
15
|
-
role: "
|
|
16
|
+
path: .claude/skills/cor-upgrade/phases/explain-changes.md
|
|
17
|
+
role: "How to explain what changed"
|
|
16
18
|
- type: file
|
|
17
|
-
path: .claude/skills/cor-upgrade/phases/
|
|
18
|
-
role: "
|
|
19
|
-
- type: file
|
|
20
|
-
path: .claude/skills/cor-upgrade/phases/apply.md
|
|
21
|
-
role: "Apply approved changes"
|
|
19
|
+
path: .claude/skills/cor-upgrade/phases/adapt.md
|
|
20
|
+
role: "Handle non-manifest concerns — _context.md, phase files, schema"
|
|
22
21
|
---
|
|
23
22
|
|
|
24
23
|
# /cor-upgrade — Conversational Claude on Rails Upgrade
|
|
@@ -26,34 +25,30 @@ related:
|
|
|
26
25
|
## Purpose
|
|
27
26
|
|
|
28
27
|
This is the methodology's central claim made operational: **intelligence
|
|
29
|
-
is the merge strategy
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
The
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
local customizations while incorporating upstream improvements. The
|
|
50
|
-
user confirms, modifies, or rejects each proposal. Nothing is applied
|
|
51
|
-
silently.
|
|
28
|
+
is the merge strategy** — but only where intelligence is needed.
|
|
29
|
+
|
|
30
|
+
CoR upgrades have two layers:
|
|
31
|
+
|
|
32
|
+
1. **Mechanical layer.** Skeleton SKILL.md files, hook scripts, utility
|
|
33
|
+
scripts — these are upstream-owned and tracked in `.corrc.json`. The
|
|
34
|
+
installer overwrites them deterministically. No conversation needed.
|
|
35
|
+
The upstream guard hook (PreToolUse on Edit|Write) enforces this
|
|
36
|
+
boundary at runtime — Claude cannot accidentally modify these files.
|
|
37
|
+
|
|
38
|
+
2. **Conversational layer.** Everything the installer can't handle:
|
|
39
|
+
explaining what changed and why, updating `_context.md` sections that
|
|
40
|
+
new features reference, identifying new phase file opportunities,
|
|
41
|
+
running schema migrations, adapting project context to upstream
|
|
42
|
+
improvements. This is where intelligence is the merge strategy.
|
|
43
|
+
|
|
44
|
+
The old approach tried to use conversation for everything — including
|
|
45
|
+
mechanical file updates. That was fragile. Now the installer handles
|
|
46
|
+
the deterministic parts, and this skill focuses entirely on the parts
|
|
47
|
+
that actually need reasoning.
|
|
52
48
|
|
|
53
49
|
This is a **skeleton skill** using the `phases/` directory pattern. The
|
|
54
|
-
orchestration
|
|
55
|
-
|
|
56
|
-
present changes — in phase files under `phases/`.
|
|
50
|
+
orchestration is generic. Your project defines specifics in phase files
|
|
51
|
+
under `phases/`.
|
|
57
52
|
|
|
58
53
|
### Phase File Protocol
|
|
59
54
|
|
|
@@ -69,126 +64,135 @@ The skeleton always does something reasonable when a phase file is absent.
|
|
|
69
64
|
Phase files customize, not enable. Use `skip: true` when you actively
|
|
70
65
|
don't want a phase to run — not even the default.
|
|
71
66
|
|
|
72
|
-
###
|
|
67
|
+
### Write Protection
|
|
68
|
+
|
|
69
|
+
Manifest-tracked files (skeleton SKILL.md files, hooks, scripts) are
|
|
70
|
+
protected by the upstream guard hook. Claude cannot Edit or Write to
|
|
71
|
+
them during normal operation. This is intentional — these files are
|
|
72
|
+
upstream-owned and should only change through the installer.
|
|
73
|
+
|
|
74
|
+
**What this means for upgrades:**
|
|
75
|
+
- The installer (running via Bash as a Node.js/shell process) bypasses
|
|
76
|
+
the hook because it doesn't use Claude's Edit/Write tools
|
|
77
|
+
- After the installer runs, all manifest-tracked files are current
|
|
78
|
+
- This skill then handles everything the installer doesn't touch:
|
|
79
|
+
_context.md, phase files, schema, and explanation
|
|
73
80
|
|
|
74
|
-
|
|
75
|
-
update, but phase files are NEVER overwritten by upstream changes.**
|
|
81
|
+
### Skeleton/Extension Separation
|
|
76
82
|
|
|
77
|
-
Skeleton files (SKILL.md
|
|
78
|
-
|
|
79
|
-
CoR and may improve over time. When upstream publishes a better skeleton,
|
|
80
|
-
the upgrade skill can propose replacing it.
|
|
83
|
+
Skeleton files (SKILL.md, hooks, scripts) are upstream-owned, manifest-
|
|
84
|
+
tracked, and write-protected. They evolve through the installer.
|
|
81
85
|
|
|
82
|
-
Phase files
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
adds a new phase file as an example or default, it never overwrites an
|
|
87
|
-
existing project phase file.
|
|
86
|
+
Phase files and _context.md are project-owned. They are NEVER in the
|
|
87
|
+
manifest, NEVER write-protected, and NEVER overwritten by the installer.
|
|
88
|
+
They evolve through conversation — this skill, /onboard, or direct
|
|
89
|
+
editing.
|
|
88
90
|
|
|
89
|
-
This separation is
|
|
90
|
-
|
|
91
|
-
between the two.
|
|
91
|
+
This separation is enforced mechanically (manifest + hook), not just
|
|
92
|
+
by convention. The upgrade is safe because the boundary is real.
|
|
92
93
|
|
|
93
94
|
## Workflow
|
|
94
95
|
|
|
95
|
-
### 1.
|
|
96
|
+
### 1. Pre-Upgrade Snapshot
|
|
97
|
+
|
|
98
|
+
Read `phases/pre-upgrade.md` for pre-upgrade checks.
|
|
96
99
|
|
|
97
|
-
|
|
98
|
-
current
|
|
100
|
+
**Default (absent/empty):**
|
|
101
|
+
- Read `.corrc.json` to capture the current version and module set
|
|
102
|
+
- Note which phase files exist and have content (these won't be touched)
|
|
103
|
+
- Note any `_context.md` sections that may need updating
|
|
104
|
+
- If the project has a work tracker DB, note the current schema
|
|
99
105
|
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
phase files are customized vs using defaults vs explicitly skipped?
|
|
103
|
-
- Which perspectives are adopted? Which groups configured?
|
|
104
|
-
- What hooks are installed from CoR?
|
|
105
|
-
- What pib-db schema version is in use (check for known columns)?
|
|
106
|
-
- What's in `memory/patterns/`?
|
|
106
|
+
Output: a snapshot of the project's current state, used to explain
|
|
107
|
+
what changed after the installer runs.
|
|
107
108
|
|
|
108
|
-
|
|
109
|
-
the diff phase.
|
|
109
|
+
### 2. Run the Installer
|
|
110
110
|
|
|
111
|
-
|
|
111
|
+
Run the installer via Bash to mechanically update all upstream files:
|
|
112
112
|
|
|
113
|
-
|
|
114
|
-
|
|
113
|
+
```
|
|
114
|
+
# Shell installer (re-downloads latest from npm registry)
|
|
115
|
+
curl -fsSL https://raw.githubusercontent.com/orenmagid/claude-on-rails/main/install.sh | bash
|
|
115
116
|
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
section, not line by line. Identify new phases, changed workflows,
|
|
120
|
-
updated defaults. For non-adopted skills: list what's new and available.
|
|
121
|
-
For perspectives: detect new or updated ones in upstream. For schema:
|
|
122
|
-
compare `pib-db-schema.sql` columns against the project's actual DB
|
|
123
|
-
tables.
|
|
117
|
+
# Or npm installer (if Node.js available)
|
|
118
|
+
npx create-claude-rails
|
|
119
|
+
```
|
|
124
120
|
|
|
125
|
-
|
|
126
|
-
|
|
121
|
+
The installer:
|
|
122
|
+
- Overwrites all manifest-tracked files (skeletons, hooks, scripts)
|
|
123
|
+
- Preserves files NOT in the manifest (phase files, _context.md)
|
|
124
|
+
- Updates `.corrc.json` with new version, hashes, and any new files
|
|
125
|
+
- Adds new skills/hooks/scripts that didn't exist in the old version
|
|
127
126
|
|
|
128
|
-
|
|
127
|
+
**This is a Bash command, not an Edit/Write operation.** It bypasses
|
|
128
|
+
the upstream guard hook because it runs as a separate process using
|
|
129
|
+
the filesystem directly. This is by design — the installer is the
|
|
130
|
+
authorized update path for manifest-tracked files.
|
|
129
131
|
|
|
130
|
-
|
|
131
|
-
the core of the skill — where conversation replaces mechanical patching.
|
|
132
|
+
### 3. Explain What Changed
|
|
132
133
|
|
|
133
|
-
|
|
134
|
+
Read `phases/explain-changes.md` for how to present changes.
|
|
134
135
|
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
the change itself). Don't just say "line 47 changed" — say "the
|
|
138
|
-
orient skeleton now includes a calendar-check phase because projects
|
|
139
|
-
found that missing upcoming deadlines was a recurring failure mode."
|
|
136
|
+
**Default (absent/empty):** Compare the pre-upgrade snapshot against
|
|
137
|
+
the new state:
|
|
140
138
|
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
the project's adaptation before proposing anything.
|
|
139
|
+
1. **Version jump.** What version did we come from? What version are
|
|
140
|
+
we on now?
|
|
144
141
|
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
142
|
+
2. **Changed skeletons.** For each SKILL.md that the installer updated,
|
|
143
|
+
explain what changed and why — not line-by-line diffs, but semantic
|
|
144
|
+
summaries. "The debrief skill now includes an upstream feedback phase
|
|
145
|
+
that surfaces CoR friction during debrief sessions." "The plan skill's
|
|
146
|
+
critique step now pulls from more perspectives by default."
|
|
148
147
|
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
co-author the adaptation together.
|
|
148
|
+
3. **New files.** Any skills, hooks, or scripts that were added for the
|
|
149
|
+
first time. Explain what they do and whether they need any setup.
|
|
152
150
|
|
|
153
|
-
|
|
151
|
+
4. **New phase opportunities.** If new skeletons reference phase files
|
|
152
|
+
that the project doesn't have yet, mention them as opportunities.
|
|
153
|
+
"The orient skeleton now supports a `calendar-check.md` phase — you
|
|
154
|
+
could create one to check upcoming deadlines."
|
|
154
155
|
|
|
155
|
-
|
|
156
|
-
|
|
156
|
+
5. **Deprecations or removals.** If anything was removed upstream,
|
|
157
|
+
explain why and what replaces it.
|
|
157
158
|
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
| 1 | **New default behavior** — a phase the project uses defaults for gains a new default | Auto-adopt. The project was already trusting upstream defaults; the new default is strictly additive. Mention it but don't require confirmation. |
|
|
161
|
-
| 2 | **Changed default behavior** — a phase the project uses defaults for has its default modified | Explain + propose. The project trusted the old default; the new one is different. Show what changed and let the user decide. |
|
|
162
|
-
| 3 | **New phase added to skeleton** — upstream added a phase that didn't exist before | Explain what the phase does, propose opt-in. New phases start as "absent" (using default or skipped), so adoption is always explicit. |
|
|
163
|
-
| 4 | **Changed skeleton workflow** — the SKILL.md orchestration itself changed | The most sensitive category. Examine the project's phase files and any custom phases. Co-author the adaptation — don't just replace the skeleton. |
|
|
164
|
-
| 5 | **New skeleton skill available** — upstream published a skill the project hasn't adopted | Present what the skill does, what problem it solves, what adoption would involve. User decides whether and when to adopt. |
|
|
165
|
-
| 6 | **Schema migration** — upstream schema has new columns or tables | Detect the difference, generate ALTER TABLE / CREATE TABLE SQL, present for review, apply only after explicit confirmation. |
|
|
159
|
+
Walk through each category conversationally. The user should understand
|
|
160
|
+
what they're getting, not just that files changed.
|
|
166
161
|
|
|
167
|
-
|
|
168
|
-
skeleton SKILL.md updates and new capabilities. Project-specific
|
|
169
|
-
customizations in phase files are sacred — they represent the project's
|
|
170
|
-
adaptation of the methodology to its own context. If an upstream change
|
|
171
|
-
would interact with a phase file's content (e.g., a skeleton now
|
|
172
|
-
references a concept the phase file also addresses), the merge proposes
|
|
173
|
-
a collaborative edit, not a replacement.
|
|
162
|
+
### 4. Adapt Non-Manifest Concerns
|
|
174
163
|
|
|
175
|
-
|
|
164
|
+
Read `phases/adapt.md` for how to handle the conversational layer.
|
|
176
165
|
|
|
177
|
-
|
|
178
|
-
|
|
166
|
+
**Default (absent/empty):** After explaining changes, handle anything
|
|
167
|
+
the installer couldn't:
|
|
179
168
|
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
169
|
+
#### _context.md Updates
|
|
170
|
+
If new skeletons reference `_context.md § Section` names that the
|
|
171
|
+
project's `_context.md` doesn't have, propose adding them. New features
|
|
172
|
+
often depend on context sections — e.g., a new perspective might
|
|
173
|
+
reference `§ Friction Captures` which the project hasn't defined yet.
|
|
174
|
+
Show the section template from `_context-template.md` and help the
|
|
175
|
+
user fill it in.
|
|
176
|
+
|
|
177
|
+
#### Phase File Implications
|
|
178
|
+
If a skeleton's workflow changed in a way that interacts with existing
|
|
179
|
+
phase files, discuss the implications. "The orient skeleton reorganized
|
|
180
|
+
its steps — your custom `health-checks.md` phase still works, but it
|
|
181
|
+
now runs earlier in the workflow. Is that okay?"
|
|
182
|
+
|
|
183
|
+
#### Schema Migrations
|
|
184
|
+
If the upstream schema has new columns or tables:
|
|
185
|
+
- Detect the difference between the shipped schema and the project's DB
|
|
186
|
+
- Generate `ALTER TABLE` / `CREATE TABLE` SQL
|
|
187
|
+
- Present for review
|
|
188
|
+
- Apply only after explicit confirmation
|
|
189
|
+
|
|
190
|
+
#### New Module Adoption
|
|
191
|
+
If the upgrade added modules the project hadn't installed before,
|
|
192
|
+
walk through what they do and whether to keep them.
|
|
193
|
+
|
|
194
|
+
Present a summary when done: what was mechanically updated, what was
|
|
195
|
+
adapted conversationally, what the user might want to customize next.
|
|
192
196
|
|
|
193
197
|
### 5. Discover Custom Phases
|
|
194
198
|
|
|
@@ -201,23 +205,21 @@ the workflow. Execute them at their declared position.
|
|
|
201
205
|
|
|
202
206
|
| Phase | Absent = | What it customizes |
|
|
203
207
|
|-------|----------|-------------------|
|
|
204
|
-
| `
|
|
205
|
-
| `
|
|
206
|
-
| `
|
|
207
|
-
| `apply.md` | Default: copy skeletons, collaborative edits, SQL migrations | How to apply approved changes |
|
|
208
|
+
| `pre-upgrade.md` | Default: read .corrc.json, note phase files, note _context.md | Pre-upgrade state capture |
|
|
209
|
+
| `explain-changes.md` | Default: semantic summary of version jump, changed skeletons, new files | How to present what changed |
|
|
210
|
+
| `adapt.md` | Default: _context.md sections, phase implications, schema, new modules | How to handle non-manifest concerns |
|
|
208
211
|
|
|
209
212
|
## Proactive Trigger
|
|
210
213
|
|
|
211
214
|
The upgrade skill doesn't have to wait for the user to invoke it.
|
|
212
|
-
Orient can detect when upstream CoR
|
|
213
|
-
|
|
215
|
+
Orient can detect when upstream CoR has a newer version than what's
|
|
216
|
+
in `.corrc.json` and surface "CoR updates available" in the briefing.
|
|
214
217
|
This is a hint, not a blocker — the user decides when to run /cor-upgrade.
|
|
215
218
|
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
/cor-upgrade and the full conversational merge begins.
|
|
219
|
+
The drift check script (`scripts/cor-drift-check.cjs`) can also detect
|
|
220
|
+
if manifest-tracked files have been modified outside the installer,
|
|
221
|
+
though the upstream guard hook should prevent this during normal
|
|
222
|
+
Claude Code operation.
|
|
221
223
|
|
|
222
224
|
## Extending
|
|
223
225
|
|
|
@@ -237,29 +239,29 @@ Examples of phases mature projects add:
|
|
|
237
239
|
## Calibration
|
|
238
240
|
|
|
239
241
|
**Core failure this targets:** Process improvements published upstream
|
|
240
|
-
never reach adopted projects, or reach them
|
|
241
|
-
|
|
242
|
+
never reach adopted projects, or reach them but nobody understands
|
|
243
|
+
what changed.
|
|
242
244
|
|
|
243
245
|
### Without Skill (Bad)
|
|
244
246
|
|
|
245
|
-
New CoR
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
spent two sessions tuning is gone, replaced by the upstream default.
|
|
247
|
+
New CoR version is out. The user re-runs the installer. Files update
|
|
248
|
+
silently. The user has no idea what changed — was it just bug fixes?
|
|
249
|
+
New features? Did a skill they rely on change its workflow? They also
|
|
250
|
+
don't realize the new debrief skill references a `§ Friction Captures`
|
|
251
|
+
section in _context.md that their project doesn't have, so the upstream
|
|
252
|
+
feedback phase silently does nothing. Three weeks later they wonder
|
|
253
|
+
why no friction is being captured.
|
|
253
254
|
|
|
254
255
|
### With Skill (Good)
|
|
255
256
|
|
|
256
|
-
New CoR
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
257
|
+
New CoR version is out. The user runs `/cor-upgrade`. The installer
|
|
258
|
+
updates all upstream files mechanically — fast, deterministic, safe
|
|
259
|
+
(phase files untouched). Then Claude explains: "You went from v0.4.1
|
|
260
|
+
to v0.5.0. The big change: debrief now has an upstream feedback phase
|
|
261
|
+
that captures CoR friction. It references `_context.md § Friction
|
|
262
|
+
Captures` — let's add that section to your context file." "The plan
|
|
263
|
+
skill's critique step now uses three perspectives instead of one. Your
|
|
264
|
+
existing phase files are fine — this is a default behavior change."
|
|
265
|
+
"There's a new `investigate` skill for deep-dive debugging. Want to
|
|
266
|
+
try it?" Everything is explained. Non-manifest concerns are handled.
|
|
267
|
+
The project gets better without confusion.
|