
Zoom Out
- 154 installs
- 40 repo stars
- Updated August 4, 2026
- akillness/oh-my-skills
Pause implementation detail to restate goals, constraints, and tradeoffs before over-scoping or chasing the wrong solution path.
About
A meta reasoning skill that interrupts tunnel vision: it restates user intent, success criteria, assumptions, and option tradeoffs so agents realign plans, trim scope, and produce clearer next steps instead of drilling deeper into the wrong implementation.
- Goal and constraint recap
- Tradeoff surfacing
- Scope creep detection
- Alternative path listing
- Decision-ready summaries
Zoom Out by the numbers
- 154 all-time installs (skills.sh)
- Ranked #1,171 of 3,282 Productivity & Planning skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/akillness/oh-my-skills --skill zoom-outAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 154 |
|---|---|
| repo stars | ★ 40 |
| Last updated | August 4, 2026 |
| Repository | akillness/oh-my-skills ↗ |
What it does
Pause implementation detail to restate goals, constraints, and tradeoffs before over-scoping or chasing the wrong solution path.
Files
Zoom Out
Get a higher-level architectural perspective on unfamiliar code sections.
When to use this skill
- Navigating unfamiliar code and needing to understand how it connects to the larger system
- Before making changes to understand the blast radius
- When you need a module map before diving into implementation
When not to use this skill
- Finding specific symbols or patterns → use
codebase-search - Architectural improvement opportunities → use
improve-codebase-architecture - Debugging a specific failure → use
debugging
What zoom-out produces
A structural map showing:
- All relevant modules in the area of interest
- Caller relationships (what calls what)
- Key dependencies (what depends on what)
- Domain vocabulary from CONTEXT.md applied to module names
How to use
When you encounter unfamiliar code, ask for a zoom-out before diving in:
"Zoom out and give me a broader view of how [module/component] fits into the system."
The response will map the relevant modules using the project's domain glossary, not internal implementation names.
Output format
[Module A] → calls → [Module B], [Module C]
[Module B] ← called by → [Module A], [Module D]
Key seams:
- [Interface X] separates [Domain Concept 1] from [Domain Concept 2]
- [Interface Y] is where [Domain Concept 3] behavior can be swapped
Domain terms in use here:
- "Order" = [what it means in this context]
- "Customer" = [what it means in this context]Note on invocation
This skill sets disable-model-invocation: true — it is a directive framework that instructs the agent how to respond, not an independent processing unit. Invoke it as a behavioral directive when exploring code.
Instructions
1. Identify the task trigger and expected output. 2. Follow the workflow steps in this skill from top to bottom. 3. Validate outputs before moving to the next step. 4. Capture blockers and fallback path if any step fails.
Examples
- Example: Apply this skill to a small scope first, then scale to full scope after validation passes.
Best practices
- Keep outputs deterministic and auditable.
- Prefer small reversible changes over broad risky edits.
- Record assumptions explicitly.
References
- Project standards:
.agent-skills/skill-standardization/SKILL.md - Validator script:
.agent-skills/skill-standardization/scripts/validate_skill.sh