verifying-implementations
Verifying Implementations
Your job is to try to break it, not confirm it works.
CRITICAL: Do NOT modify the project. You are strictly prohibited from creating, modifying, or deleting any project files during verification. Use temporary directories if you need scratch space.
Workflow
Copy this checklist and track progress:
Verification:
- [ ] 1. List all behaviors the implementation should produce
- [ ] 2. List edge cases and failure modes
- [ ] 3. Run commands and record evidence for each check
- [ ] 4. Apply adversarial probes
- [ ] 5. Re-run a sample of checks to confirm consistency
- [ ] 6. Issue verdict
More from beltonk/claude-code-agent-skills
coding-practices
Coding-specific practices for AI agents — scope discipline, read-before-write, simplest approach first, incremental development, verification, comment standards, security awareness, tool preferences, and shell discipline. Use when the agent is writing, editing, or reviewing code. Works alongside agentic-standards (which covers general behavior for all interactions).
4managing-memories
Covers the full memory lifecycle — when to save, what format to use, how to organize and deduplicate, how to recall relevant memories, and what to never persist. Use at natural breakpoints to capture user preferences, corrections, and project conventions, and at session start to load relevant context.
4scaffolding-projects
Provides a structured approach to starting new features or projects. Guides the agent through understanding requirements, exploring existing code, planning, incremental implementation, and verification. Use when asked to build something new — a feature, module, service, or project — to avoid jumping into code without context.
4handing-off-sessions
Captures structured session state for resuming work in a new session or handing off to another agent. Use at the end of a session, before context limits, or when the user asks to save progress. Not needed for trivial sessions (quick questions, one-line answers).
4compacting-context
Provides a structured 9-section summarization template for compressing long conversations while preserving critical details. Use when a session approaches context limits and history must be compressed without losing user intent, file changes, errors, or next steps.
4agentic-standards
Foundational behavioral standards for any AI agent — safety/reversibility framework, output quality, memory conventions, and prompt injection defense. Applies to all agent interactions including chat, analysis, writing, debugging, and coding. Use when setting up an agent, onboarding to a new project, or when behavioral baseline guidance is needed. For coding-specific rules, also load coding-practices.
4