You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: use project-root-relative paths in skill files (#2394)
Skills run from the project root, not their own directory. Bare
references/ and scripts/ paths wouldn't resolve. Use .agents/skills/
prefixed paths so scripts and reference docs are found correctly.
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: .agents/skills/doc-write/SKILL.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,5 +20,5 @@ argument-hint: topic
20
20
21
21
Key rules: US English, active voice, imperative tone, sentence case headings, bold for UI elements only, all admonitions need titles, code blocks need language tags.
22
22
23
-
For detailed structure templates, see `references/doc-structures.md`.
24
-
For edge cases and process notes, see `references/process.md`.
23
+
For detailed structure templates, see `.agents/skills/doc-write/references/doc-structures.md`.
24
+
For edge cases and process notes, see `.agents/skills/doc-write/references/process.md`.
3.**Delegated standards review** - spawn one subagent per standards file to check compliance. Each subagent reads the file being reviewed plus one standards file, and returns violations with line numbers and suggested fixes:
19
19
- Subagent 1: check against `standards/writing-style.md` (voice, tone, headings, links)
Deterministic tools first, then delegated standards checks, then content review. Report tool failures as objective facts. Report standards and content findings as judgment calls.
32
32
33
-
For detailed process notes and edge cases, see `references/process.md`.
33
+
For detailed process notes and edge cases, see `.agents/skills/review-docs/references/process.md`.
Copy file name to clipboardExpand all lines: .agents/skills/tutorial/references/process.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@ Use simple present tense ("Create an Actor" not "Creating an Actor"). Match slug
29
29
30
30
## Step 4: Write tutorial content
31
31
32
-
Follow the 8-section template in `references/tutorial-template.md`:
32
+
Follow the 8-section template in `.agents/skills/tutorial/references/tutorial-template.md`:
33
33
34
34
1. Introduction with learning objectives
35
35
1. Prerequisites with checklist and time estimate
@@ -56,7 +56,7 @@ Verify front matter has all required fields. Run `npm run build` to catch broken
56
56
57
57
### Code examples don't render correctly
58
58
59
-
Ensure every code block has a language specifier. For code tabs, use the exact Docusaurus `Tabs`/`TabItem` import pattern from `references/tutorial-template.md`.
59
+
Ensure every code block has a language specifier. For code tabs, use the exact Docusaurus `Tabs`/`TabItem` import pattern from `.agents/skills/tutorial/references/tutorial-template.md`.
0 commit comments