---
Analyzes and upgrades Claude prompts to leverage Opus 4.6's new adaptive thinking and agent team capabilities.
npx claudepluginhub aeyeops/aeo-skill-marketplaceThis skill inherits all available tools. When active, it can use any tool Claude has access to.
references/agentic-patterns.mdreferences/patterns.mdscripts/analyze-prompt.pyscripts/config.jsonOpus 4.6 builds on the 4.5 prompting philosophy with key additions: adaptive thinking (4 effort levels), 1M token context (beta), 128K output, agent teams, and server-side compaction. The core principle remains—natural language over directives.
| Feature | Opus 4.5 | Opus 4.6 |
|---|---|---|
| Thinking | Extended thinking (binary on/off + budget_tokens) | Adaptive thinking (low/medium/high/max) |
| Context | 200K tokens | 1M tokens (beta), context rot eliminated |
| Output | 64K tokens | 128K tokens |
| Agent architecture | Single agent, sub-agent delegation | Agent teams (parallel coordination) |
| Compaction | Client-side | Server-side compaction API (beta) |
| Prefilling | Supported | Disabled (400 error), use structured outputs |
| "Think" sensitivity | Highly sensitive | Reduced (adaptive thinking handles calibration) |
| Behavior | Implication |
|---|---|
| Literal instruction following | Be explicit about desired behaviors |
| Adaptive thinking | Let the model calibrate reasoning depth; specify effort level only when needed |
| Highly responsive to system prompt | Use natural language, not directives |
| Tool trigger sensitivity | Replace MUST use with Use when... |
| 1M context awareness | Context rot eliminated; long conversations maintain quality |
When upgrading prompts from 4.5 or earlier:
CRITICAL, MUST, NEVER, ALWAYS)budget_tokens extended thinking with adaptive thinking effort levelsoutput_config.format or system prompt instructions<current-state>, <blocked>, <workflow>)| File | Use When |
|---|---|
| patterns.md | Optimizing any prompt—transformation rules and examples |
| agentic-patterns.md | Building agents, agent teams, and long-horizon workflows |
The scripts/analyze-prompt.py script analyzes prompts for deprecated patterns:
echo "Your prompt text" | python3 scripts/analyze-prompt.py
Configure thresholds in scripts/config.json:
min_words: Minimum words to trigger analysis (default: 1)enabled: Enable/disable the analyzer (default: true)The patterns.md reference covers:
MUST, NEVER, CRITICALThe agentic-patterns.md reference covers:
Activates when the user asks about AI prompts, needs prompt templates, wants to search for prompts, or mentions prompts.chat. Use for discovering, retrieving, and improving prompts.