Skip to main content
The paw catalog

Everything in the kit.

Every agent, skill, hook, and command paw ships, pulled straight from the source. Search it, or filter the agents by phase and permission tier.

18 AGENTS7 SKILLS4 HOOKS17 CLI COMMANDS

Results

46 results

Agent · opus

architect

Produces a system architecture for a spec: components, boundaries, data flow, risks, alternatives. Use when a non-trivial change needs design before planning.

PlanRead-only

Read · Grep · Glob

Agent · opus

planner

Turns architecture into a numbered, executable implementation plan with workstreams, file targets, and acceptance tests.

PlanRead-only

Read · Grep · Glob

Agent · opus

devils-advocate

Adversarial review of a plan. Finds gaps, optimistic assumptions, missing rollback paths, hand-waved steps, and hidden dependencies.

PlanRead-only

Read · Grep · Glob

Agent · sonnet

rollback-planner

Creates a rollback plan for any change: what to revert, in what order, and how to verify the rollback worked.

PlanRead-only

Read · Grep · Glob

Agent · sonnet

builder

Implements a task using TDD: writes the test first, then the code, then refactors. The only agent with full access.

BuildFull

Read · Write · Edit · Bash · Grep · Glob

Agent · sonnet

merge-resolver

Resolves git merge conflicts by understanding both sides' intent. Combines compatible changes, escalates competing ones.

BuildFull

Read · Write · Edit · Bash · Grep · Glob

Agent · sonnet

migration-architect

Plans safe database migrations using the expand-backfill-contract pattern. Never destructive in production.

BuildFull

Read · Write · Edit · Bash · Grep · Glob

Agent · opus

code-reviewer

General code review on changed files. Flags correctness, edge cases, error handling, naming, and unclear intent. Severity levels: critical, warning, info.

ReviewRead-only

Read · Grep · Glob

Agent · sonnet

bug-auditor

Hunts latent bugs: race conditions, off-by-one, null deref, unbounded loops, integer overflow, encoding mismatches, time-of-check/time-of-use.

ReviewRead-only

Read · Grep · Glob

Agent · opus

security-reviewer

OWASP Top 10 review on the diff. Flags injection, broken access control, crypto failures, SSRF, XSS, prompt injection. Adversarial mindset.

ReviewRead-only

Read · Grep · Glob

Agent · sonnet

perf-checker

Performance review: N+1 queries, unbounded fetches, missing pagination, sync work in async paths, heavy renders, allocations in tight loops.

ReviewRead-only

Read · Grep · Glob

Agent · sonnet

fe-reviewer

Frontend-specific reviewer for React/Vue/Angular: accessibility, component structure, hooks, render performance, state management.

ReviewRead-only

Read · Grep · Glob

Agent · sonnet

php-reviewer

PHP/Laravel-specific reviewer: SQL injection, mass assignment, CSRF, N+1 Eloquent, auth middleware, type safety, queue idempotency.

ReviewRead-only

Read · Grep · Glob

Agent · sonnet

test-runner

Runs the project's test suite, captures results, identifies new failures, and flags missing coverage on changed code.

ReviewRead + Bash

Read · Bash · Grep · Glob

Agent · sonnet

integration-tester

Runs integration and end-to-end tests. Validates that components work together, not just individually.

ReviewRead + Bash

Read · Bash · Grep · Glob

Agent · sonnet

environment-checker

Validates that the development environment is correctly set up: dependencies, env vars, database, services, build tools.

ReviewRead + Bash

Read · Bash · Grep · Glob

Agent · opus

incident-commander

Triages production incidents. Stop the bleeding first, root-cause second, prevention third.

RespondFull

Read · Write · Edit · Bash · Grep · Glob

Agent · sonnet

docs-writer

Updates documentation to match code changes: README, CHANGELOG, inline docs, migration guides, examples.

DocumentRead + Write

Read · Write · Edit · Grep · Glob

Skill · Design

Architecture

Designing systems, evaluating tradeoffs, deciding component boundaries, planning integration points.

skills/architecture/SKILL.md

Skill · Review

Devil's Advocate

Reviewing any plan before commitment: architecture, implementation plan, migration strategy, design proposal.

skills/devils-advocate/SKILL.md

Skill · Stack

Frontend

React, Vue, or Angular work: component design, accessibility, performance, state management.

skills/frontend/SKILL.md

Skill · Stack

PHP / Laravel

PHP or Laravel work: Eloquent, middleware, validation, queues, migrations, testing.

skills/php-laravel/SKILL.md

Skill · Security

Security

Any code touching authentication, user input, external APIs, or sensitive data.

skills/security/SKILL.md

Skill · Review

Quality Gate

Reviewing code before merge. Running multiple review agents. Deciding what blocks and what doesn't.

skills/quality-gate/SKILL.md

Skill · Git

Git Safety

Any git operation that could lose work: pull, push, merge, rebase, branch management, conflict resolution.

skills/git-safety/SKILL.md

Hook · PreToolUse

git_safety.py

Blocks dangerous git operations: rebase, pull --rebase, force-push (-f / --force), branch -D, reset --hard, and checkout dot. Allows --force-with-lease by design.

PreToolUseBash

override: PAW_ALLOW_REBASE, PAW_ALLOW_FORCE_PUSH

Hook · PreToolUse

branch_guard.py

Blocks git commits on protected branches (main, master, develop, trunk, release). Fails closed if the branch cannot be determined.

PreToolUseBash

Hook · pre-commit

branch_guard_precommit.py

The pre-commit framework build of branch_guard. Blocks commits on protected branches as a standard git hook, no Claude Code required.

pre-commit

Hook · PostToolUse

auto_test_detect.sh

Warns when a source file is written or edited and no matching test file exists nearby. It nudges, it does not run tests.

PostToolUseWrite | Edit

CLI · Setup

paw setup

Check requirements, install hooks.

CLI · Learn

paw tutorial

Interactive TUI walkthrough with 9 tracks.

CLI · Learn

paw tutorial --web

Open the browser-based tutorial.

CLI · Setup

paw doctor

Diagnose problems with your install.

CLI · Config

paw init

Scaffold a .paw.json config into a project.

CLI · Quality

paw check

Standard quality gate: 3 reviewers.

CLI · Quality

paw check --quick

Quick gate: code-reviewer only.

CLI · Quality

paw check --thorough

Thorough gate: all 8 reviewers.

CLI · Quality

paw gate <name>

Run a single review agent. Targets: security, bugs, perf, frontend, php, tests, docs, env.

CLI · Learn

paw agents

List all 18 agents.

CLI · Smart

paw next

Suggested next steps based on your progress.

CLI · Smart

paw suggest

Detect your stack, recommend agents.

CLI · Learn

paw cheatsheet

Print the quick reference card.

CLI · Setup

paw desktop

Create a Desktop app launcher (macOS).

CLI · Setup

paw uninstall

Remove hooks and symlink.

CLI · Setup

paw completions

Shell tab-completion (zsh or bash).

CLI · Meta

paw version

Show the installed version.