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.
npx skills add latestaiagents/agent-skills --skill progressive-disclosuregit clone --depth 1 https://github.com/latestaiagents/agent-skillsWrote 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.
[](https://agentmods.dev/skills/latestaiagents/agent-skills/progressive-disclosure)<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.
<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>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.
| Model | Per session | Once 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 |
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.
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: [...],
});
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.
- 6d ago First seen · 207 lines · 97 tokens per session scan A e148b0f1965b
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.
Other skills, from other repositories
fw-review
Full Freshworks marketplace app review — iparams, frontend, serverless, FDK, security, and structured text report output — in one skill.
ai-amazon-brand-analytics
An Amazon Brand Analytics assistant for working with Amazon brand-analysis tasks. The description does not provide enough detail about its exact data or outputs.
ai-amazon-international-listings
An Amazon localization assistant for checking whether a product listing is written correctly for an overseas market. Localization means adapting language and presentation to a specific country or region.
ai-amazon-inventory-management
An Amazon inventory-review assistant. Inventory means the products a seller has available to sell.
ai-amazon-rank-tracker
A skill for tracking product rankings on Amazon, the online marketplace.
ai-amazon-repricing-strategy
An assistant for diagnosing Amazon pricing and planning price changes.