zoom-out

zoom-out is a skill for Claude Code from Adit-Jain-srm/skill-forge. It costs 94 tokens per session (639 once invoked), scanned A, original, MIT.

A system-context guide for working in unfamiliar code. It explains what a component belongs to, what depends on it, what it depends on, and what could break if it changes.

In plain words
What is it for?
Use it before editing unfamiliar code, especially when a change affects several files or a component’s purpose is unclear. It traces callers and dependencies, explains why the code exists, and identifies the likely impact of changing it.
Why use it?
Looking only at individual lines can hide important relationships and side effects. This guide builds a broader mental model before risky changes are made.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the skill-forge plugin — 19 skills shipped together

Good fit Use it before editing unfamiliar code, especially when a change affects several files or a component’s purpose is unclear. It traces callers and dependencies, explains why the code exists, and identifies the likely impact of changing it.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/adit-jain-srm/skill-forge/zoom-out
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Adit-Jain-srm/skill-forge --skill zoom-out
Clone the repo
git clone --depth 1 https://github.com/Adit-Jain-srm/skill-forge

Made for: Claude Code.

Or install skill-forge, the plugin that ships this one along with the rest of its 19 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for zoom-out

README.md
[![agentmods](https://agentmods.dev/badge/skills/adit-jain-srm/skill-forge/zoom-out/github.svg)](https://agentmods.dev/skills/adit-jain-srm/skill-forge/zoom-out)
Your own site
<a href="https://agentmods.dev/skills/adit-jain-srm/skill-forge/zoom-out"><img src="https://agentmods.dev/badge/skills/adit-jain-srm/skill-forge/zoom-out/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for zoom-out

Your own site · 80×15
<a href="https://agentmods.dev/skills/adit-jain-srm/skill-forge/zoom-out"><img src="https://agentmods.dev/badge/skills/adit-jain-srm/skill-forge/zoom-out.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 94 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 639 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00094 $0.00639
Opus 5 $0.00047 $0.00319
Sonnet 5 $0.00019 $0.00128
Haiku 4.5 $0.00009 $0.00064

Measured 9d ago against content hash d2061f1831ab, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

zoom-out scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/zoom-out/SKILL.md · 69 lines

How it starts

The opening of the file, as written. The whole thing — 69 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Overview

Before modifying unfamiliar code, explain the broader system context — what depends on this code, what this code calls into, and what breaks if you change it.

Process

Stop. Zoom out. Before touching this code, explain:

  1. What system is this part of? (name the module/service/layer)
  2. What calls this? (trace UP — who depends on this code?)
  3. What does this call? (trace DOWN — what does it depend on?)
  4. Why does it exist? (what problem did the original author solve?)
  5. What breaks if this changes? (blast radius)
  6. What's the simplest mental model? (explain to a new team member in 2 sentences)

When to Auto-Trigger

  • About to modify a file you didn't write and haven't read fully
  • Making a change that touches 3+ files
  • The function/class name doesn't clearly explain its purpose
  • You feel uncertain about side effects

Rules

  • Read FIRST, explain SECOND, modify THIRD. Never modify what you don't understand.
  • If you can't explain it simply, you don't understand it well enough to change it safely.
  • Cite specific file paths and line numbers when explaining relationships.

Zoom Depth

Situation How Far to Zoom
Modifying one function Module level (what calls it, what it calls)
Changing an interface/API Service level (all consumers, all implementations)
Architectural change System level (all services, data flow, deployment)
"I don't know what this does" Start at system, narrow to module

Common Mistakes

  • Modifying before understanding (leads to cascading breakage)
  • Explaining only the file in isolation (miss the system relationships)
  • Skipping "what breaks if this changes" (the most critical question)
  • Using vague descriptions — always cite specific file paths and line numbers

Example

# Before modifying auth.ts, zoom out:
# 1. What calls auth.ts?
grep -r "from.*auth" src/ --include="*.ts" -l
# 2. What does auth.ts import?
head -20 src/auth.ts | grep "import"
# 3. What tests cover this?
find . -name "*auth*test*"

Read the full file on GitHub · 69 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 69 lines · 94 tokens per session scan A d2061f1831ab

Subscribe to this mod's changes

zoom-out is a skill published in the GitHub repository Adit-Jain-srm/skill-forge (2 stars, last pushed 2mo ago), licensed MIT. It adds 94 tokens to every session and 639 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

user-research-cookiy

End-to-end user research assistant — qualitative and quantitative. Use this skill whenever the user mentions user research, user interviews, discussion guides, interview guides, research plans, qualitative research, quantitative research, user surveys, survey design, usability studies, participant recruitment…

cookiy-ai/user-research-skill · 154 tokens

looks-expensive

Full-stack design methodology that makes any website look like a $150k agency build. Nine gated phases: positioning, research, design contract, screen spec, build, subtraction, audit, hardening, handoff. Includes illustration system, animation tiers, 12 hero patterns, 16 section layouts, UX writing guide, icon system…

TuahaJawaid/looks-expensive · 173 tokens

ui-ux-design-pro

Senior-level UI/UX design expert for building data-driven, premium production interfaces. Use when you need to: 1. Design complex applications (dashboards, SaaS, AI tools) from scratch 2. Generate comprehensive design systems (tokens, palettes, typography) 3. Audit existing UI for quality, accessibility, and "craft"…

saifyxpro/ui-ux-design-pro-skill · 117 tokens

anki-expert

Generate high-quality Anki flashcards from user-provided text (inline, local .md/.txt/.pdf files, or URLs) and auto-export to .tsv, .apkg, or push directly via AnkiConnect. Trigger when the user mentions Anki, flashcards, spaced repetition, study cards, memory cards, make cards, help me memorize, or .apkg files.

gong1414/anki-card-skill · 84 tokens

user-research-cookiy

../../../../SKILL.md.

cookiy-ai/user-research-skill · 0 tokens

performance

You are running the Performance category of a Ship Score production readiness audit. Follow every instruction below precisely. Do not add checks beyond the 7 defined here. Do not skip checks. Report exactly what you find.

cwklurks/ship-score · 0 tokens