ai-tools/offloaded-skills/SKILL.md
Registry of extended skills stored in ~/.claude/offloaded-skills/ to save context window space. Consult ~/.claude/offloaded-skills/index.md to discover available skills and load them on demand. Also documents how to offload and restore skills.
npx skillsauth add randyhaylor/enhanceclaude offloaded-skillsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
There is a library of extended skills at ~/.claude/offloaded-skills/index.md.
When a user request matches an offloaded skill's description, read the skill's
SKILL.md to load its full instructions.
~/.claude/offloaded-skills/index.md to find a matching skill.~/.claude/offloaded-skills/<skill-name>/SKILL.md to get full instructions.To move an installed skill out of the active set and into the offloaded library:
mv ~/.claude/skills/<skill-name> ~/.claude/offloaded-skills/python3 ~/.claude/skills/offloaded-skills/rebuild-index.pyTo bring an offloaded skill back into the active set:
mv ~/.claude/offloaded-skills/<skill-name> ~/.claude/skills/python3 ~/.claude/skills/offloaded-skills/rebuild-index.pyRun python3 ~/.claude/skills/offloaded-skills/rebuild-index.py any time skills
are added to or removed from the offloaded-skills folder.
tools
# XState v5 Quick Reference ## How to Look Up API Details For complete function signatures, types, and interfaces, **grep `api-reference.md`** — do NOT read it in full (12k+ lines). Example: ``` Grep pattern="createActor" path="~/.claude/skills/xstate/api-reference.md" output_mode="content" -C 5 ``` Then use `Read` with `offset`/`limit` to get the full section. This is the primary way to get precise technical info when the quick reference below isn't enough. ## Design Workflow Recommended
tools
Workaround for agent teams in VS Code extension where TeamCreate teammates cannot execute tools. Uses an echo-back-and-resume pattern where agents return tool requests instead of executing them directly.
development
Format documentation, READMEs, and structured text using header hierarchy where each level stands alone. Use when creating docs, research notes, summaries, or when user requests 'scannable,' 'well-structured,' 'skimmable,' or 'readable at multiple depths' output. Applies to markdown, technical specs, and any hierarchical text formatting.
development
Enforce strict Test-Driven Development workflow: write one test, make it pass, verify, then proceed. Prevents over-implementation and ensures code matches requirements exactly. Use when implementing new features, adding settings, or building functionality incrementally.