1
Foundation
Setting up your environment, codebase, and tools for agent success.
4 patterns
1.1
Convention File
Make implicit project rules explicit in a file the agent always reads, so it follows your standards without being told each time.
Beginner3 min read
1.2
Safety Net
Establish automated checks (tests, types, linting) as guardrails so agent mistakes get caught immediately, not in production.
Beginner3 min read
1.3
Memory Layer
Use persistent context files to maintain project knowledge across sessions, eliminating repetitive re-explanation.
Advanced4 min read
1.4
Agent-Friendly Architecture
Organize code with clear boundaries, named modules, and explicit interfaces so agents can navigate and modify it confidently.
Advanced5 min read