From skull
Curate the model's context window for the most signal per token — stop burning tokens on bloat. Triggers on "context engineering", "burning tokens", "context window full", "reduce token usage", "the model lost the thread", "too much in context", "prompt caching", "session handoff", or any long / expensive session. The discipline of deciding what goes in the window (and what doesn't): cache-stable instructions, retrieve don't dump, fresh docs at query time, audit your MCPs, compress tool output, and measure tokens like an infra cost.
How this skill is triggered — by the user, by Claude, or both
Slash command
/skull:context-engineeringThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Every token in the context window costs money, latency, and *attention* (more noise = worse answers). Context
Every token in the context window costs money, latency, and attention (more noise = worse answers). Context engineering is deciding, deliberately, what earns a place in the window — and routing the rest elsewhere.
CLAUDE.md / system prompt beats a kitchen sink.
Prompt caching rewards a stable prefix: put the unchanging stuff first and don't reorder it — a change
near the top invalidates the cache for everything after it. (Pairs with workspace-architect.)git status, test output, find — pipe them through a
compressor (RTK) or summarize before feeding them in; raw command spew is the quiet token killer.Run it when a session feels expensive or the model is losing the thread:
CLAUDE.md, pasted docs, raw logs, unused MCPs)token-economy (best output per token), repo-map (ranked retrieval), compactor (session handoffs),
model-router (right model per task), workspace-architect (a lean .claude/). The external power-ups —
Context7, CodeGraph, RTK, Tokscale, caveman — are in docs/ECOSYSTEM.md.
Credits: the "15 ways to stop burning tokens" context-engineering playbook (devwithmj on Medium). We re-implement the ideas and point you at the tools. See docs/ECOSYSTEM.md.
npx claudepluginhub aturzone/skullManages LLM context windows via summarization, trimming, routing, and context rot prevention. Activates on "context window", "token limit", "context management", "context overflow", or "tokens".
Manages AI context via four operations: Write (persist info), Select (retrieve relevant info), Compress (reduce tokens), Isolate (partition context). Keeps sessions sharp and efficient.
Suggests manual context compaction at logical intervals via a pre-tool hook, preserving context through task phases rather than relying on arbitrary auto-compaction.