Reusable Assets

Templates & Blueprints

Production-ready templates extracted from Claude Code patterns. Copy, customize, deploy.

Explicit Rules System PromptSystem Prompt

Template for writing system prompts with explicit prohibitions, edge case branching, and parallel tool instructions. Based on Claude Code's production system prompt patterns.

Static/Dynamic Prompt BoundarySystem Prompt

Template showing how to split prompts into cacheable static sections and variable dynamic sections. Reduces token costs via prompt caching.

Three-Layer Memory SetupMemory

Template for implementing the three-layer memory architecture: cheap index always loaded, topic files on demand, transcripts search-only.

V5.3 Pre-Deploy HookHooks

Shell script template for pre-deploy validation hooks that enforce V5.3 standards automatically.

Circuit Breaker for Retry LoopsResilience

TypeScript template for bounded retry with circuit breaker, exponential backoff, and model fallback. Prevents the 250K wasted API calls/day bug.

Multi-Agent Coordinator PatternMulti-Agent

Template for coordinating multiple AI agents: Fork for independent tasks, Teammate for shared context, with advisor quality check.