From e92ce6906748058ed09dbceeffa60a979c7264f1 Mon Sep 17 00:00:00 2001 From: William Valentin Date: Fri, 6 Feb 2026 23:42:06 -0800 Subject: [PATCH] docs: add commit-often and subagent model selection rules to AGENTS.md --- AGENTS.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/AGENTS.md b/AGENTS.md index 544c972..91e9802 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -3,6 +3,8 @@ ## General Rules - **Parallelise with subagents:** For every task, use multiple subagents with the appropriate model to work more efficiently. Dispatch independent subtasks in parallel rather than executing them sequentially. +- **Subagent model selection (MANDATORY):** You MUST use the right model tier for each subagent — `claude-haiku-4.5` for fast/simple/mechanical tasks, `claude-sonnet-4.5` for default/standard implementation work, and `claude-opus-4.6` for complex reasoning or architecture decisions. Never use the same model for all subagents. +- **Commit often:** `git commit` frequently — after each meaningful unit of work, not just at the end of a task. ## Build, Lint, and Test Commands