# 2537 Instruction Density 02797ac2

> Instruction Density and Rule Dropping

- Skill: `tools-only/2537-instruction-density-02797ac2` (Agent Skill, multi-file: 3 files)
- Install (CLI): `npx skillmds@latest add tools-only/2537-instruction-density-02797ac2`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tools-only/2537-instruction-density-02797ac2/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Research & Search
- Author: tools-only (https://skillmd.com/u/tools-only)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/tools-only/2537-instruction-density-02797ac2

---

# Instruction Density and Rule Dropping

**Opus**: Tracks and satisfies 15+ simultaneous constraints reliably.
Prioritizes naturally when constraints tension.

**Haiku**: Reliable with 5-7 simultaneous constraints. At 10+,
may drop rules — particularly those in the middle of a list, those
phrased passively, or those that conflict with example patterns.

**Mitigation**: Limit rules to 7. Group and prioritize.

```
BAD: 12 flat rules in a single list

GOOD: 
CRITICAL (must never violate):
1. [rule]
2. [rule]

REQUIRED (always apply):
3. [rule]
4. [rule]
5. [rule]

PREFERRED (apply when possible):
6. [rule]
7. [rule]
```

Additional strategies:
- Cross-reference rules in process steps: "Apply rules 1-3 to each item"
- Embed the most important rules in the examples, not just the rule list
- For complex rule sets, split into multiple prompts (one pass per
  rule group) rather than asking Haiku to apply all at once
- Repeat the single most important rule at the END of the prompt

If a rule is never demonstrated in the examples, Haiku is less likely
to follow it. Every critical rule should appear in at least one example.

