skill: renumber steps to monotonic Stage.N (numbers stop lying about order) - #25
Merged
Merged
Conversation
…about order The step labels had drifted out of execution order across successive rewrites: Step 1.5 ran after Step 2, Step 9.5 before Step 9, Step 10 before Step 9, and "Step 8" (the Voice register) sat at the top of the file — the numbers actively misled a reader about what runs when. Pure renumbering, no behavior change. - Stages stay the ordered spine (STAGE 0–6, unchanged). - Every sub-step heading becomes `N.M — Name` (number + descriptive name), monotonic within its stage: 0.1/0.2, 1.1(+1.1a/b/c)/1.2/1.3/1.4/1.5, 2.1, 3.1, 4.1, 5.1, 6.1/6.2. Navigation by number, self-description by name. - Every inline "Step N" cross-reference is renumbered to the matching N.M, so a reference can no longer point at a step that runs in a different order. - The Voice register is a load-before-you-write preamble, not a step — its "Step 8" label is dropped (it's referenced by name now, like the other preambles). - reference modules: the few "SKILL.md Step 2.4/4/7" citations become the content-name style the modules already use (closed id-prefix table / ownership matrix / schema), immune to future renumbering. Scope: the live skill (SKILL.md + references/ — what the agent executes). docs/REVIEWS.md (historical review log) and docs/example-report*.md (a stale sample already tracked for a separate refresh) are intentionally left as-is. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Why
Across successive rewrites the
Step Nlabels drifted out of execution order:Step 1.5runs afterStep 2,Step 9.5beforeStep 9,Step 10beforeStep 9, and "Step 8" (the Voice register) sits at the top of the file. The numbers actively mislead a reader — and the executing agent — about what runs when. Pure renumbering, zero behavior change.What
STAGE 0–6, unchanged.N.M — Name(number for navigation + descriptive name), monotonic within its stage:0.1/0.2·1.1(+1.1a/b/c)/1.2/1.3/1.4/1.5·2.1·3.1·4.1·5.1·6.1/6.2.Step Ncross-reference → the matchingN.M— a reference can no longer point at a step that executes in a different order. Verified: zeroStep Nleft in the live skill.Step 8label is dropped; referenced by name now, like Operating rules / Shared constants.SKILL.md Step 2.4/4/7citations become the content-name style the modules already use (closed id-prefix table/ownership matrix/schema), immune to future renumbering.Scope
The live skill —
SKILL.md+references/. Deliberately untouched:docs/REVIEWS.md(historical review log) anddocs/example-report*.md(stale sample already tracked for a separate refresh).Verification
grep -roE 'Step [0-9]'overSKILL.md+references/→ 0.STAGEheadings intact; 16N.Msub-headings.🤖 Generated with Claude Code