Skip to content

Commit 159ef27

Browse files
committed
fix(skill-builder): escape dynamic context injection examples
Escape backticks in documentation to prevent shell command execution. The parser was attempting to run !`command` patterns from examples.
1 parent fa89c8b commit 159ef27

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • home/.claude/skills/skill-builder

home/.claude/skills/skill-builder/SKILL.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,16 +96,16 @@ Markdown instructions here...
9696

9797
### Dynamic Context Injection
9898

99-
Run shell commands before skill loads with `` !`command` ``:
99+
Run shell commands before skill loads with `!`command``:
100100

101101
```yaml
102102
---
103103
name: pr-review
104104
context: fork
105105
---
106106

107-
PR diff: !`gh pr diff`
108-
Changed files: !`gh pr diff --name-only`
107+
PR diff: !`gh pr diff`
108+
Changed files: !`gh pr diff --name-only`
109109

110110
Review this pull request...
111111
```

0 commit comments

Comments
 (0)