From 63515e759c11a780d59a4ead1de528019c9d9959 Mon Sep 17 00:00:00 2001 From: Hugo Nijhuis Date: Mon, 29 Dec 2025 10:50:31 +0100 Subject: [PATCH] Add model selection to agent checklist MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adds checklist item prompting agent authors to make deliberate model selection choices rather than defaulting to `inherit`. Positioned after skills list, before capabilities. Closes #19 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- docs/writing-agents.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/writing-agents.md b/docs/writing-agents.md index 602d584..065456c 100644 --- a/docs/writing-agents.md +++ b/docs/writing-agents.md @@ -577,6 +577,7 @@ Improve based on usage: - [ ] Name follows kebab-case convention - [ ] Agent has a clear, recognizable role - [ ] Skills list is deliberate (not too many, not too few) +- [ ] Model selection is deliberate (not just `inherit` by default) - [ ] Capabilities are specific and achievable - [ ] "When to Use" guidance is clear - [ ] Behavioral rules prevent problems