What problem does it solve? Developers working on the clawker codebase need to know exactly which build, test, lint, and documentation commands to run for each type of change, without accidentally running destructive host-level tests or slow embed builds. ## Core Features & Use Cases - Command Reference: Maps every development task (building, unit tests, integration tests, linting, doc generation, mock regeneration) to its exact command, including safety constraints like avoiding go test ./... when CLAWKER_AGENT is set. - Completion Checklists: Provides ordered verification steps for code changes, documentation updates, and agent instruction changes, including regression-test-first discipline and pre-commit hook review. - Version Pinning Rules: Enforces exact-version and SHA pinning for Docker images, CI actions, pre-commit hooks, and Go tools. - Use Case: After fixing a bug in the storage package, follow the checklist to add a failing regression test, run go test ./internal/storage/... -count=1, then make test and golangci-lint run before committing. ## Quick Start Ask the agent to run the appropriate dev-checks build and test commands for the clawker repository after making a code change.