progressive-disclosure

Organize Claude skills into 3-tier metadata, entry point, and references.

Updated Aug 27, 2026
One-click install
npx skills add https://github.com/nodays-off/rack-reserve --skill progressive-disclosure
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: progressive-disclosure
Source: https://github.com/nodays-off/rack-reserve/tree/main/.claude/skills/meta/progressive-disclosure
Command: npx skills add https://github.com/nodays-off/rack-reserve --skill progressive-disclosure

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

This Skill teaches an architectural pattern to optimize AI context window usage, preventing information overload and reducing token costs by loading details only when needed. It ensures AI agents receive relevant information efficiently.

Core Features & Use Cases

  • 3-Tier Architecture: Organize skills into metadata, entry point (SKILL.md), and on-demand references.
  • Context Window Efficiency: Keep SKILL.md concise (<500 lines) and move detailed documentation to linked reference files.
  • Workflow-Based Organization: Structure skills by user journey rather than technical features for better discoverability.
  • Use Case: Refactor an overly verbose skill that frequently hits context limits, making it more efficient and faster for the AI to process.

Quick Start

Use the progressive-disclosure skill to refactor the 'my-large-skill' by extracting detailed API documentation into a new 'references/api.md' file.

Frequently Asked Questions about progressive-disclosure

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I reduce token waste in Claude skills?

Progressive disclosure optimizes context window usage by organizing skill content into three tiers: concise metadata, a compact entry point document under 500 lines, and detailed reference files loaded only when needed. This reduces token consumption and prevents information overload.

What's the best way to structure a skill that keeps hitting context limits?

Use a 3-tier architecture: move metadata and overview to a primary document, then extract detailed content into separate reference files of 200–300 lines each. This keeps the AI's active context lean while preserving full information availability on demand.

How do I organize detailed documentation without bloating my skill?

Progressive disclosure separates concerns into a one-level-deep reference hierarchy. Place API docs, workflows, and examples in standalone reference files linked from your main skill document, keeping the entry point focused and scannable.

Can I use progressive disclosure to refactor an existing large skill?

Yes. Extract overly verbose sections—API documentation, detailed examples, or edge cases—into new reference files. Update your main skill to link to these references. This reduces context bloat and improves AI processing speed without losing detail.

When should I apply progressive disclosure to my skill?

Apply it when creating new skills to prevent context sprawl, when reviewing performance to identify token waste, when debugging context bloat, or when a skill exceeds ~500 lines. It scales skills efficiently as they grow.

What metadata constraints support progressive disclosure?

Tier 1 metadata has a 1024-character limit. Tier 2 (SKILL.md) stays under ~500 lines as an overview. Tier 3 references are 200–300 lines each with frontmatter-driven discovery, enabling efficient on-demand loading without deep nesting.

Related Skills