explaingit

caph-dev/agents-progressive-disclosure

Analysis updated 2026-05-18

42Audience · developerComplexity · 2/5Setup · easy

TLDR

A skill for AI coding agents that reorganizes bloated instruction files like AGENTS.md into a short router file plus focused reference files.

Mindmap

mindmap
  root((agents-progressive-disclosure))
    What it does
      Cleans instruction files
      Splits router and details
      Preserves all rules
    Tech stack
      Skill definition file
      Markdown
    Use cases
      Fixing bloated AGENTS.md
      Reducing context cost
      Rule classification
    Workflow
      Read existing file
      Check contradictions
      Rewrite as router
    Audience
      AI agent developers
      Teams using coding agents

Code map

Detail Auto

An interactive map of this repo's files and how they connect — its source is parsed live in your browser. Click Visualize to build it.

filefunction / class

What do people build with it?

USE CASE 1

Clean up an oversized AGENTS.md or CLAUDE.md file that has grown too dense over time.

USE CASE 2

Split always-on rules from task-specific details into separate reference files.

USE CASE 3

Reduce the context cost an AI agent pays on every task by trimming irrelevant instructions.

USE CASE 4

Validate that no existing rules were lost while restructuring an instruction file.

What is it built with?

Markdown

How does it compare?

caph-dev/agents-progressive-disclosure0xtotem/peek-dspy79e/auto-openai-account
Stars424242
LanguagePythonGo
Setup difficultyeasymoderatemoderate
Complexity2/53/54/5
Audiencedeveloperdeveloperdeveloper

Figures from each repo's GitHub metadata at analysis time.

How do you get it running?

Difficulty · easy Time to first run · 5min
No license information is provided in the explanation.

In plain English

agents-progressive-disclosure is a skill for AI coding agents that helps clean up and restructure bloated agent instruction files. These are files like AGENTS.md or CLAUDE.md that tell an AI assistant how to behave in a project. Over time, teams keep adding more and more rules to these files until they become large, dense documents that the agent has to load in full on every single task, even when most of the content is not relevant to the work at hand. The skill addresses two problems this creates. First, the most important rules get buried among rarely-needed details and lose their prominence. Second, every task pays a context cost for instructions it does not need, which wastes the limited space available for the actual work. The solution the skill applies is called progressive disclosure. The idea is to turn the root instruction file into a short routing document that lists core always-on rules and points to separate focused files for task-specific details. Instead of one large file covering everything, you end up with a compact entrypoint that tells the agent where to look for deeper guidance when a specific situation comes up. The workflow the skill follows involves reading the existing instruction file in full, scanning it for contradictory rules before moving anything, classifying each rule as either always-on or task-specific, designing a map of separate reference files, rewriting the root file as a compact router, and then validating that no rules were lost in the process. Installation works through the skills CLI with a single command, or by asking the agent to install it directly from the repository URL. It supports multiple agent environments including Cursor, Codex, Claude, and others. The repository itself is small: it contains the skill definition file, a metadata file, and the README. A full Chinese translation of the README is also included.

Copy-paste prompts

Prompt 1
Help me install this skill and run it on my project's CLAUDE.md file.
Prompt 2
Show me how to classify rules as always-on versus task-specific in my instruction file.
Prompt 3
Walk me through turning my bloated instruction file into a compact router document.
Prompt 4
Explain how progressive disclosure reduces the context an agent loads per task.

Frequently asked questions

What is agents-progressive-disclosure?

A skill for AI coding agents that reorganizes bloated instruction files like AGENTS.md into a short router file plus focused reference files.

What license does agents-progressive-disclosure use?

No license information is provided in the explanation.

How hard is agents-progressive-disclosure to set up?

Setup difficulty is rated easy, with roughly 5min to a first successful run.

Who is agents-progressive-disclosure for?

Mainly developer.

Open on GitHub → Explain another repo

This repo across BitVibe Labs

Verify against the repo before relying on details.