skills/README.md
Alex Dunmow 182d64403e feat: add revenuecat-api-v2 reference skill
Server-side reference for the RevenueCat REST API v2: endpoint map,
sk_/atk_ auth, pagination, expandables, rate limits, error types, and
write-safety. Symlinked into ~/.claude/skills and listed in README.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-22 20:51:55 +08:00

32 lines
1.2 KiB
Markdown

# skills
Personal Claude Code skills and commands, source of truth for `~/.claude/skills/` and `~/.claude/commands/`.
Each skill directory (and command file under `commands/`) is symlinked back into place:
```
~/.claude/skills/<name> -> ../../src/skills/<name>
~/.claude/commands/<name>.md -> ../../src/skills/commands/<name>.md
```
## 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
- **revenuecat-api-v2** — server-side reference for the RevenueCat REST API v2 (endpoints, auth, write-safety)
- **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)
## Commands
- **sitrep** — generate a comprehensive resume prompt for session handoff
## Adding a skill
```sh
mkdir ~/src/skills/<name> # write SKILL.md inside
ln -s ../../src/skills/<name> ~/.claude/skills/<name>
```