Progressive Disclosure Meta-Skill

Load skill content at metadata, instructions, or resources levels based on relevance scoring.

Updated Nov 7, 2025
One-click install
npx skills add https://github.com/Wesley1600/ClaudeCodeFrameWork --skill progressive-disclosure-meta-skill
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: Progressive Disclosure Meta-Skill
Source: https://github.com/Wesley1600/ClaudeCodeFrameWork/tree/main/.claude/skills/progressive-disclosure
Command: npx skills add https://github.com/Wesley1600/ClaudeCodeFrameWork --skill progressive-disclosure-meta-skill

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This meta-skill dynamically loads appropriate levels of content (metadata, instructions, or full resources) to optimize context window usage during task execution.

Core Features & Use Cases

  • Context-Aware Loading: Adjusts the depth of content loaded based on relevance and task complexity.
  • Resource Management: Minimizes token usage by avoiding unnecessary details.
  • Decision Framework: Provides a clear guide for when to load metadata, instructions, or full resources.

Quick Start

When evaluating a new skill, compute a relevance score and load the corresponding level (metadata, instructions, or resources) to balance usefulness and context cost.

Frequently Asked Questions about Progressive Disclosure Meta-Skill

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

FAQPage Schema
How do I optimize context window usage when loading skill content?

Progressive disclosure optimizes context window efficiency by loading content at metadata, instructions, or resources levels based on task relevance. Compute a relevance score for each skill and load only the depth needed to balance usefulness against token cost, reducing unnecessary overhead in constrained-context conversations.

When should I load metadata versus full instructions or resources?

Use relevance scoring to decide: load metadata for quick filtering, instructions for moderate complexity tasks, and full resources only when the task demands detailed implementation. This tiered approach minimizes token usage while ensuring RAG workflows and constrained contexts get appropriate content depth.

Can progressive disclosure reduce latency in resource-heavy workflows?

Yes. By deferring full resource loading until relevance justifies it, progressive disclosure cuts both latency and context cost. Load only what the current task requires, avoiding bottlenecks from fetching unnecessary details upfront.

What's the best way to implement a relevance scoring framework for content loading?

Establish scoring criteria tied to task complexity and skill domain relevance. Apply thresholds to decide loading depth: low scores trigger metadata only, medium scores load instructions, high scores unlock full resources. This decision framework ensures efficient token allocation across varied task contexts.

Does progressive disclosure work with retrieval-augmented generation pipelines?

Progressive disclosure is designed for RAG workflows. It fits seamlessly into retrieval pipelines by loading appropriate content depth based on query relevance, reducing context bloat and improving response latency while maintaining answer quality.

What are the limits of progressive disclosure for very large skill repositories?

Progressive disclosure scales well for large repositories by filtering upfront, but relevance scoring accuracy depends on metadata quality and task clarity. Edge cases arise when task intent is ambiguous, potentially triggering unnecessary full loads or insufficient content depth.