26 lines
859 B
Markdown
26 lines
859 B
Markdown
# skills
|
|
|
|
Personal Claude Code skills, source of truth for `~/.claude/skills/`.
|
|
|
|
Each skill directory here is symlinked back into place:
|
|
|
|
```
|
|
~/.claude/skills/<name> -> ../../src/skills/<name>
|
|
```
|
|
|
|
## Skills
|
|
|
|
- **developing-blockninja-plugins** — creating, building, and publishing BlockNinja CMS plugins/themes
|
|
- **fleet** — apply a change across many BlockNinja repos with per-repo verification
|
|
- **grill-with-docs** — stress-test a plan against the domain model and update docs inline
|
|
- **shipit** — full BlockNinja plugin/theme pre-publish pipeline
|
|
- **star-response-builder** — turn experience/achievements into STAR-style responses
|
|
- **workorder** — generate numbered work-order documents (WO-NNN)
|
|
|
|
## Adding a skill
|
|
|
|
```sh
|
|
mkdir ~/src/skills/<name> # write SKILL.md inside
|
|
ln -s ../../src/skills/<name> ~/.claude/skills/<name>
|
|
```
|