DNYoussef/context-cascade

28 stars · Last commit 2026-01-13

Context Cascade - Nested Plugin Architecture for Claude Code Official Claude Code Plugin | Version 3.1.0 | Last updated: 2026-01-09 (see docs/COMPONENT-COUNTS.json for source counts) Context-saving nested architecture: Playbooks -> Skills -> Agents -> Commands. Load only what you need, saving 90%+ context space.

README preview

# Context Cascade - Nested Plugin Architecture for Claude Code

**Official Claude Code Plugin** | Version 3.1.0 | Last updated: 2026-01-09 (see `docs/COMPONENT-COUNTS.json` for source counts)

**Context-saving nested architecture**: Playbooks -> Skills -> Agents -> Commands. Load only what you need, saving **90%+ context space**.

## The Context Cascade Architecture

```
PLAYBOOKS (30)     <-- Only these are loaded initially (~2k tokens)
    |
    v
SKILLS (176)       <-- Loaded when playbook invokes them
    |
    v
AGENTS (260)       <-- Loaded when skill needs them
    |
    v
COMMANDS (249)    <-- Embedded in agents, loaded last
```

View full repository on GitHub →