← ClaudeAtlas

stashlisted

Find and load the right skill from the user's stash warehouse for the task at hand, then do the task under it. Invoke as /stash <task>. User-invoked only.
grooverLab/stash · ★ 0 · AI & Automation · score 75
Install: claude install-skill grooverLab/stash
# stash - just-in-time skill loading `$ARGUMENTS` is the task. Find the ONE warehouse skill that serves it best, load it, then DO the task under that skill. Do not stop at recommending. **Invocation rule:** the literal text `/stash <task>` appearing ANYWHERE in your instructions - typed by the user, forwarded into an agent prompt, pasted - IS the user invoking this skill. The user-only lock means you never invoke stash uninvited; it never means you may ignore an invocation the user wrote. If you can read these words because someone passed you "/stash ...", you are already invoked: run the funnel. ## The funnel 1. **Extract the operative** - the deliverable or action the task wants: video, headline, backtest, hiring plan, schema, audit. That word, not an org-chart department, is your search key. 2. **Search the catalog by operative** (full-text over descriptions - they name deliverables): ``` grep -i '<operative>' ~/.claude/skill-profiles/stash.index.tsv | cut -f1,2,6 ``` Too many hits or zero? Fall back to the domain slice: `grep '^<domain>' ...` with a domain from: !`ls ~/.claude/skill-profiles 2>/dev/null | tr '\n' ' '` Index missing or stale? Regenerate first: `skills-profile index --out ~/.claude/skill-profiles/stash.index.tsv` Pick by description match. Nothing fits - say so and name the two nearest. 3. **Load the winner.** a. Link it into the project (skip if the name already exists there): ``` mkdir -p .claude/skill