progressive-disclosure

progressive-disclosure is a skill for Claude Code from latestaiagents/agent-skills. It costs 97 tokens per session (1,433 once invoked), scanned A, original, MIT.

A guide to arranging a skill's instructions so the agent sees the most important information first and deeper details only when needed. It recommends concise summaries, focused examples, and splitting overly long skills.

In plain words
What is it for?
Use it when writing, reviewing, refactoring, or splitting a skill that has become too long or difficult to follow.
Why use it?
It helps prevent long skill files from hiding essential guidance or using more of the agent's attention than necessary.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions subagents.

Part of the skills-authoring plugin — 4 skills shipped together , and of latestaiagents

Good fit Use it when writing, reviewing, refactoring, or splitting a skill that has become too long or difficult to follow.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/latestaiagents/agent-skills/progressive-disclosure
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 latestaiagents/agent-skills --skill progressive-disclosure
Clone the repo
git clone --depth 1 https://github.com/latestaiagents/agent-skills

Made for: Claude Code.

Or install skills-authoring, the plugin that ships this one along with the rest of its 4 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 progressive-disclosure

README.md
[![agentmods](https://agentmods.dev/badge/skills/latestaiagents/agent-skills/progressive-disclosure/github.svg)](https://agentmods.dev/skills/latestaiagents/agent-skills/progressive-disclosure)
Your own site
<a href="https://agentmods.dev/skills/latestaiagents/agent-skills/progressive-disclosure"><img src="https://agentmods.dev/badge/skills/latestaiagents/agent-skills/progressive-disclosure/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 progressive-disclosure

Your own site · 80×15
<a href="https://agentmods.dev/skills/latestaiagents/agent-skills/progressive-disclosure"><img src="https://agentmods.dev/badge/skills/latestaiagents/agent-skills/progressive-disclosure.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 97 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,433 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.00097 $0.01433
Opus 5 $0.00048 $0.00717
Sonnet 5 $0.00019 $0.00287
Haiku 4.5 $0.00010 $0.00143

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

Security

Grade A, and why

progressive-disclosure 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 6d 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/skills-authoring/progressive-disclosure/SKILL.md · 207 lines

How it starts

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

Progressive Disclosure in Skill Content

A skill is consumed by a model with finite attention. Put the highest-signal content first, let depth come later. Length without structure is noise.

When to Use

  • Writing a new SKILL.md body
  • Refactoring a skill that's grown bloated
  • Splitting a monster skill into focused ones
  • Reviewing skills for publication quality

The Shape of a Good Skill

Target ≈ 150-300 lines. Order sections from most-essential to least:

1. ---frontmatter---
2. One-line bolded summary
3. When to Use (bullet list)
4. Core concept (≤ 5 sentences)
5. Minimal example
6. Deeper patterns / variations
7. Anti-patterns
8. Best Practices (numbered list)

The model reads top-down. Every section should earn its place.

Section-by-Section

The Opening

# Skill Title

**One sentence that captures the whole skill's value proposition.**

If the reader stops after this line, they still learned something.

"When to Use"

A bullet list of 3-6 situations. Concrete, not abstract:

## When to Use

- Your agent needs to remember user preferences across sessions
- You're replacing "stuff everything into system prompt" with structured state
- You're building coding agents that learn about a codebase over time

Bad:

  • "For when you need memory." (abstract, unhelpful)

Core Concept

5 sentences. Maximum. Explain the mental model:

The Memory tool gives Claude a file system. Claude issues read/write ops;
your app executes them on real storage. Per-user roots isolate data.
Unlike RAG, the agent curates what's worth remembering. Unlike context-stuffing,
state persists without growing every message.

If you need 3 paragraphs, you probably have two concepts and should split.

Minimal Example

The fewest lines of code that demonstrate the thing:

const response = await client.messages.create({
  model: "claude-sonnet-4-6",
  tools: [{ type: "memory_20250818", name: "memory" }],
  messages: [...],
});

Read the full file on GitHub · 207 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. 6d ago First seen · 207 lines · 97 tokens per session scan A e148b0f1965b

Subscribe to this mod's changes

progressive-disclosure is a skill published in the GitHub repository latestaiagents/agent-skills (5 stars, last pushed 4mo ago), licensed MIT. It adds 97 tokens to every session and 1,433 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-09-03.