Skip to main content

AI Coding

What separates AI coding environments that amplify output from ones that slow you down?

The answer is signal discipline — less context, not more. Most setups fail by adding too much.

Providers

Principles

  • Agent Context Prompts
  • Command Prompts
  • Skills

Context Files

Agent MD files (CLAUDE.md, AGENTS.md) shape what the model sees. Used well, they correct consistent errors. Overused, they add noise: LLM-generated context files decrease performance by 3% on average and increase costs by 20%+.

PrincipleWhat to Do
Minimize contextInclude only essential information — irrelevant context distracts
Correct consistent errors onlyAdd rules when the model reliably makes the same mistake
Prioritize codebaseIf the model struggles, fix the codebase first — move confused elements, improve tests
Read agent strugglesConfusion signals an unclear codebase, not a prompting problem
Watch outputsNote what files the agent reads and how long tasks take — builds intuition

Agent Prompts

System prompt (Mindset)

Command Prompts

Instructions (JTBD)

Skills

  • skills.sh — Open source AI coding skills library

Hooks