Skip to content

Commit e78c75f

Browse files
committed
fix path
1 parent af2c37e commit e78c75f

File tree

8 files changed

+21
-21
lines changed

8 files changed

+21
-21
lines changed

.cursor/skills/specs/references/cmd_code_review.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ If something important is only in conversation history, that's a bug in the proc
1717

1818
Always run as a sub-agent — spawned fresh, no prior context from coding.
1919

20-
→ Read [references/spawning_subagents.md](references/spawning_subagents.md) for how to spawn sub-agents.
20+
→ Read [spawning_subagents.md](.cursor/skills/specs/references/spawning_subagents.md) for how to spawn sub-agents.
2121

22-
Pass the prompt from [references/cr_agent_prompt.md](references/cr_agent_prompt.md), plus scope description.
22+
Pass the prompt from [cr_agent_prompt.md](.cursor/skills/specs/references/cr_agent_prompt.md), plus scope description.
2323

2424
### Example invocation
2525

@@ -65,5 +65,5 @@ The loop continues until clean.
6565

6666
## References
6767

68-
- [references/spawning_subagents.md](references/spawning_subagents.md) — How to spawn sub-agents
69-
- [references/cr_agent_prompt.md](references/cr_agent_prompt.md) — Prompt passed to CR sub-agent
68+
- [spawning_subagents.md](.cursor/skills/specs/references/spawning_subagents.md) — How to spawn sub-agents
69+
- [cr_agent_prompt.md](.cursor/skills/specs/references/cr_agent_prompt.md) — Prompt passed to CR sub-agent

.cursor/skills/specs/references/cmd_implement.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ You're willing to flag when a requirement leads to bad technical outcomes — bu
6363
7. **Run tests**. Iterate until passing.
6464
8. **Run automated checks again** (tests/fixes may introduce lint/format issues). Iterate until clean.
6565
9. **Self code-review via sub-agent**:
66-
- → Read [references/spawning_subagents.md](references/spawning_subagents.md) for how to spawn
67-
- Pass the prompt from [references/cr_agent_prompt.md](references/cr_agent_prompt.md) to the sub-agent
66+
- → Read [spawning_subagents.md](.cursor/skills/specs/references/spawning_subagents.md) for how to spawn
67+
- Pass the prompt from [cr_agent_prompt.md](.cursor/skills/specs/references/cr_agent_prompt.md) to the sub-agent
6868
- Include: "A coding agent just implemented phase N of [project]. Review the changes using `git diff`. The spec for this project can be found [here](link_to_spec_folder)."
6969
- Iterate per CR Iteration Loop below
7070
10. **Run automated checks one final time** (CR fixes may introduce issues). Iterate until clean.
@@ -99,7 +99,7 @@ A lightweight coordinator that runs all remaining phases in sequence.
9999

100100
1. Get next incomplete phase from `implementation_plan.md`
101101
2. Spawn a sub-agent with clean context to run the single-phase implementation flow above
102-
- → Read [references/spawning_subagents.md](references/spawning_subagents.md) for how to spawn
102+
- → Read [spawning_subagents.md](.cursor/skills/specs/references/spawning_subagents.md) for how to spawn
103103
- Pass: phase number, project path, instruction to follow single-phase implementation
104104
3. **Auto-commit**: `"Phase N implementation of [project name]\n\n[description of work in phase]"`
105105
4. Show the phase summary from the subagent to the user
@@ -114,10 +114,10 @@ CR happens inside each phase's implementation loop, not at coordinator level.
114114

115115
### Passed to Phase Sub-Agents
116116

117-
For implement-all, pass the content of [references/coding_phase_prompt.md](references/coding_phase_prompt.md) to each phase sub-agent. This prompt contains the full single-phase implementation instructions.
117+
For implement-all, pass the content of [coding_phase_prompt.md](.cursor/skills/specs/references/coding_phase_prompt.md) to each phase sub-agent. This prompt contains the full single-phase implementation instructions.
118118

119119
## References
120120

121-
- [references/spawning_subagents.md](references/spawning_subagents.md) — How to spawn sub-agents
122-
- [references/coding_phase_prompt.md](references/coding_phase_prompt.md) — Prompt passed to coding sub-agents
123-
- [references/cr_agent_prompt.md](references/cr_agent_prompt.md) — Prompt passed to CR sub-agents
121+
- [spawning_subagents.md](.cursor/skills/specs/references/spawning_subagents.md) — How to spawn sub-agents
122+
- [coding_phase_prompt.md](.cursor/skills/specs/references/coding_phase_prompt.md) — Prompt passed to coding sub-agents
123+
- [cr_agent_prompt.md](.cursor/skills/specs/references/cr_agent_prompt.md) — Prompt passed to CR sub-agents

.cursor/skills/specs/references/cmd_new_project.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ If they approve, mark `status: complete`. If they want changes, make them and as
103103

104104
## Step 2: Functional Spec
105105

106-
→ Read [references/step_functional_spec.md](references/step_functional_spec.md) and follow it.
106+
→ Read [step_functional_spec.md](.cursor/skills/specs/references/step_functional_spec.md) and follow it.
107107

108108
## Step 3: UI Design (Conditional)
109109

@@ -117,11 +117,11 @@ If they confirm, skip to Step 4.
117117

118118
If UI is needed:
119119

120-
→ Read [references/step_ui_design.md](references/step_ui_design.md) and follow it.
120+
→ Read [step_ui_design.md](.cursor/skills/specs/references/step_ui_design.md) and follow it.
121121

122122
## Step 4: Architecture
123123

124-
→ Read [references/step_architecture.md](references/step_architecture.md) and follow it.
124+
→ Read [step_architecture.md](.cursor/skills/specs/references/step_architecture.md) and follow it.
125125

126126
## Step 5: Component Designs (Conditional)
127127

@@ -132,7 +132,7 @@ During the architecture step, you'll decide whether component designs are needed
132132

133133
If component designs are needed:
134134

135-
→ Read [references/step_component_designs.md](references/step_component_designs.md) and follow it.
135+
→ Read [step_component_designs.md](.cursor/skills/specs/references/step_component_designs.md) and follow it.
136136

137137
If not needed, proceed directly to Step 6.
138138

.cursor/skills/specs/references/coding_phase_prompt.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ status: draft
5454
4. Run tests. Iterate until passing.
5555
5. Run automated checks again. Iterate until clean.
5656
6. Self code-review via sub-agent:
57-
- Read `spec/references/cr_agent_prompt.md` for the CR process
57+
- Read `.cursor/skills/specs/references/cr_agent_prompt.md` for the CR process
5858
- Spawn a CR sub-agent with clean context
5959
- Pass: "A coding agent just implemented phase N of [project]. Review using `git diff`."
6060
- Iterate per CR loop below
@@ -64,7 +64,7 @@ status: draft
6464

6565
## CR Iteration Loop
6666

67-
1. Spawn CR sub-agent with the CR prompt from `spec/references/cr_agent_prompt.md`
67+
1. Spawn CR sub-agent with the CR prompt from `.cursor/skills/specs/references/cr_agent_prompt.md`
6868
2. CR returns feedback with severity labels
6969
3. If issues exist:
7070
- Fix each issue (or add a code comment explaining technical rationale)

.cursor/skills/specs/references/spawning_subagents.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ The sub-agent sees only what you pass it (a prompt) plus the repo. No conversati
2727
Use the `Task()` tool or equivalent sub-agent mechanism:
2828

2929
```python
30-
Task("Review this code using the guidelines in spec/references/cr_agent_prompt.md")
30+
Task("Review this code using the guidelines in .cursor/skills/specs/references/cr_agent_prompt.md")
3131
```
3232

3333
### Cursor

.cursor/skills/specs/references/step_architecture.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ Communicate this decision to the user:
8888
8989
## Pushback
9090

91-
→ Load [references/pushback.md](references/pushback.md) if not already loaded.
91+
→ Load [pushback.md](.cursor/skills/specs/references/pushback.md) if not already loaded.
9292

9393
Challenge technical decisions:
9494

.cursor/skills/specs/references/step_functional_spec.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ If you're unsure about something, ask. Don't guess.
7878

7979
## Pushback
8080

81-
→ Load [references/pushback.md](references/pushback.md) if not already loaded.
81+
→ Load [pushback.md](.cursor/skills/specs/references/pushback.md) if not already loaded.
8282

8383
After drafting the spec, review it and challenge:
8484

.cursor/skills/specs/references/step_ui_design.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Follow platform conventions. Users already know how standard patterns work — d
5454

5555
## Pushback
5656

57-
→ Load [references/pushback.md](references/pushback.md) if not already loaded.
57+
→ Load [pushback.md](.cursor/skills/specs/references/pushback.md) if not already loaded.
5858

5959
Challenge UX decisions:
6060

0 commit comments

Comments
 (0)