skills/README.md
Alex Dunmow 7bc233df1a feat(golang-bob): add Bob Go SQL toolkit reference skill
Reference skill for github.com/stephenafamo/bob (v0.46.0): query builder,
generated models/ORM, bobgen code generation, factories, and result scanning.
SKILL.md routes to per-subsystem reference files (query-builder, models,
code-generation, execution, comparisons). Symlinked into ~/.claude/skills and
~/.agents/skills (Codex).

Verified with a RED/GREEN subagent test and cross-checked against v0.46.0
source (flat mod import paths, AppendHooks, plural table var, WhereMod ops).

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

35 lines
1.5 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 Code
~/.agents/skills/<name> -> ../../src/skills/<name> # Codex / cross-runtime
~/.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
- **golang-bob** — reference for the Bob Go SQL toolkit (query builder, generated models/ORM, bobgen code generation, factories, scanning)
- **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> # Claude Code
ln -s ../../src/skills/<name> ~/.agents/skills/<name> # Codex
```