Skip to content

Commit e022209

Browse files
Merge pull request #1175 from Kiln-AI/dchiang/fix-spec-skill-path
Fix skill spec path reference
2 parents 92076e0 + e082dcb commit e022209

File tree

7 files changed

+19
-19
lines changed

7 files changed

+19
-19
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
@@ -52,7 +52,7 @@ If the target phase is already complete (checkbox checked in `implementation_pla
5252

5353
Spawn a new coding sub-agent using the Initial Coding Prompt template below.
5454

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

5757
The coding agent returns either:
5858
- A summary indicating it's ready for code review
@@ -69,7 +69,7 @@ The coding agent returns either:
6969
- Spawn a new CR sub-agent, passing prior feedback in a `<prior_cr_feedback>` block
7070
- Repeat until CR returns clean
7171

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

7474
### Step 3: Commit
7575

@@ -114,7 +114,7 @@ You are a coding agent implementing a phase of a spec-driven project.
114114
**Phase:** [N]
115115
**Project specs:** [specs/projects/PROJECT_NAME/]
116116
117-
Read `skill/references/coding_phase_prompt.md` for your full instructions. Follow them precisely.
117+
Read `.cursor/skills/specs/references/coding_phase_prompt.md` for your full instructions. Follow them precisely.
118118
119119
Return a short summary of what you built when implementation is complete and ready for code review.
120120
```
@@ -144,7 +144,7 @@ Return the commit message you used.
144144
```
145145
Review code changes for phase [N] of the project at [specs/projects/PROJECT_NAME/].
146146
147-
Read `skill/references/cr_agent_prompt.md` for your full review instructions. Follow them precisely.
147+
Read `.cursor/skills/specs/references/cr_agent_prompt.md` for your full review instructions. Follow them precisely.
148148
```
149149

150150
For re-reviews, append:
@@ -167,6 +167,6 @@ When the manager receives a roadblock message:
167167

168168
## References
169169

170-
- [references/spawning_subagents.md](references/spawning_subagents.md) — How to spawn and resume sub-agents
171-
- [references/coding_phase_prompt.md](references/coding_phase_prompt.md) — Full instructions for coding sub-agents
172-
- [references/cr_agent_prompt.md](references/cr_agent_prompt.md) — Full instructions for CR sub-agents
170+
- [spawning_subagents.md](.cursor/skills/specs/references/spawning_subagents.md) — How to spawn and resume sub-agents
171+
- [coding_phase_prompt.md](.cursor/skills/specs/references/coding_phase_prompt.md) — Full instructions for coding sub-agents
172+
- [cr_agent_prompt.md](.cursor/skills/specs/references/cr_agent_prompt.md) — Full instructions for 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/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 skill/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)