Guide selection of appropriate prompt level for a task. Use when choosing between simple prompts and complex workflows, applying the seven levels framework, or matching task complexity to prompt investment.
View on GitHubmelodic-software/claude-code-plugins
tac
January 21, 2026
Select agents to install to:
npx add-skill https://github.com/melodic-software/claude-code-plugins/blob/main/plugins/tac/skills/prompt-level-selection/SKILL.md -a claude-code --skill prompt-level-selectionInstallation paths:
.claude/skills/prompt-level-selection/# Prompt Level Selection Skill
Guide selection of the appropriate prompt level for a task using the seven levels framework.
## Purpose
Match task complexity to the right prompt level. Start simple, add complexity only when needed.
## When to Use
- Starting a new prompt
- Upgrading existing prompt
- Unsure which level fits
- Teaching prompt engineering
## The Seven Levels Quick Reference
| Level | Name | Use When |
| --- | --- | --- |
| 1 | High-Level | Simple repeatable task |
| 2 | Workflow | Sequential steps needed |
| 3 | Control Flow | Conditionals or loops |
| 4 | Delegation | Multiple agents needed |
| 5 | Higher-Order | Processing other prompts |
| 6 | Template Meta | Generating prompts |
| 7 | Self-Improving | Knowledge accumulation |
## Decision Tree
```text
Is this a simple, repeatable task?
├── Yes -> Level 1 (High-Level Prompt)
└── No
|
Does it need sequential steps?
├── Yes -> Does it need conditionals/loops?
| ├── Yes -> Does it delegate to agents?
| | ├── Yes -> Level 4 (Delegation)
| | └── No -> Level 3 (Control Flow)
| └── No -> Level 2 (Workflow)
└── No
|
Does it process other prompts?
├── Yes -> Level 5 (Higher-Order)
└── No
|
Does it generate prompts?
├── Yes -> Level 6 (Template Meta)
└── No
|
Does it need to learn over time?
├── Yes -> Level 7 (Self-Improving)
└── No -> Reassess requirements
```
## The 80/20 Rule
> "Levels 3-4 cover 80% of practical use cases."
| Level Range | Coverage | Complexity |
| --- | --- | --- |
| 1-2 | 40% | Low |
| 3-4 | 80% | Medium (Sweet Spot) |
| 5-7 | 20% | High |
**Don't over-engineer.** Most tasks fit in Levels 3-4.
## Selection Process
### Step 1: Understand the Task
Ask:
- What does this task accomplish?
- How often will it be repeated?
- What inputs does it need?
- What outputs does it produce?
### Step 2: Che