← ClaudeAtlas

forsvnlisted

Front door for the FORSVN agent stack — classifies the request, loads shared product context and prior session state, then routes to the right skill or resumes a prior initiative. Use when you don't know which skill to call, want to continue something you started, or a vague ask needs to land somewhere concrete ("where do I start", "resume", "ship this").
hungv47/meta-skills · ★ 9 · AI & Automation · score 75
Install: claude install-skill hungv47/meta-skills
# /forsvn — Front Door <!-- BUDGET_EXCEPTION: Front-door dispatcher must surface the full intent-to-leaf-skill routing table inline so the classifier can pick the right route in one pass. The fast tier is correct (loaded each session); ~150 tokens over cap is the legitimate cost of the routing surface. --> Classifies the ask, loads the context, routes or resumes. Always lands on a concrete next action. Capability metadata (route triggers, prerequisites, load map, artifact contract) lives in [`routing.yaml`](routing.yaml). ## When To Use - Vague ask: "help me launch this", "what should I work on?", "where do I start?" - Resume: "continue", "pick up where I left off" - New to the stack and don't know which skill to call. - Want to see what's in flight across initiatives. ## When NOT To Use - You already know the right skill — call it directly. - Deep multi-perspective debate — use `/debate-agents`. - Full scoping conversation — use `/discover`. ## Operating Contract — 5 steps Every invocation does exactly these five steps. No skipping, no looping. **Step 1 — State snapshot.** Render the disk snapshot inline. Shell-bang block in [`references/procedures/state-snapshot.md`](references/procedures/state-snapshot.md). **Step 2 — Resume check.** If `.forsvn/routing/last-session.md` exists AND `status: awaiting-user` AND timestamp < 7 days: ``` You were last working on: <intent> Initiative: <slug> Next action: <next-action> Open question: <first open question if any>