Playbooks
Runnable workflow examples for skills, subagents, agents, hooks, and compositions.
Skills only
Repo lint report
Pure skill that reviews git diff for security, performance, and style. No MCP needed.
PR description writer
Generates a Summary + Test Plan + Rollout PR body from the branch's commits and diff.
Component generator
Scaffolds React components matching the project's style guide, stored in references/.
Skills + MCP
Linear sprint setup
Creates a Linear sprint from a goal, sized to team velocity, with labels and estimates.
Sentry issue triage
Groups open Sentry issues by root cause, assigns severity and owner, outputs a standup-ready table.
Figma → Drive handoff
Exports Figma frames, uploads PNGs to Drive, writes a handoff doc with specs and links.
Subagents
Parallel code audit
Dispatches one Explore subagent per top-level directory and consolidates findings into a tech-debt punch list.
Long migration planner
Uses the Plan subagent to survey current usage and propose three migration strategies without polluting main context.
Multi-repo search
Searches across multiple local repos in parallel, nominates a canonical example per repo.
Agents
PR from ticket
End-to-end: ticket → branch → implementation → tests → PR. The canonical agent workflow.
Nightly changelog
Cron-triggered agent that compiles a CHANGELOG from the last 24h of merged PRs, posts Slack, opens PR.
Incident post-mortem
Compiles a blameless post-mortem from Sentry, PagerDuty, GitHub, and Slack — timeline to action items.
Triggers & hooks
Auto-format on edit
PostEditFile hook that runs the right formatter per file type. Keeps the working tree tidy automatically.
Block commits without tests
PreToolUse hook that blocks git commit when source files are staged without matching tests.
/loop periodic review
Uses the /loop slash command to re-run /review every 30 minutes during long sessions.
Composition
Skill calls subagent
Composition example: skill delegates heavy reads to an Explore subagent, keeps main context clean.
Hook fires skill
Composition example: PostToolUse hook detects a command and queues a slash command for the next turn.
Agent orchestrates skills
Top-level agent chains pr-description-writer → repo-lint-report → PR open → nightly-changelog → Slack.