agentic-progressive-disclosure-architecture

Installation
SKILL.md

Agentic Progressive Disclosure Architecture

Use this skill when you want code structure that reveals intent first and implementation details only when deeper files are loaded.

What it is

Progressive disclosure for code architecture mirrors how skills are read:

  1. Top layer: short explanation + module map + API signatures.
  2. Middle layer: domain-focused modules that re-export or wire submodules.
  3. Leaf layer: detailed implementations.

This pattern is strongest in Rust and Go where module/package boundaries are explicit.

When to use it

  • Agent-heavy coding workflows where small context windows must stay focused.
  • Large systems where API shape should be visible without loading full implementations.
  • Teams comfortable with IDE/LSP navigation for jump-to-definition and symbol search.
Related skills
Installs
6
First Seen
Feb 23, 2026