← ClaudeAtlas

seeflow-lookuplisted

This skill should be used before `/seeflow` whenever the user phrases the request as inspection rather than creation — "show me", "show the", "how does X work", "what does X do", "diagram our system", "explain the flow", "where does X live", "what handles Y", "what depends on Z", or names a flow by slug/title without an explicit "create / scaffold / generate / add" verb. Also use when onboarding to a repo that already has seeflow flows registered. Read-only — never mutates flows; auto-hands off to `/seeflow` only when no matching flow is registered.
tuongaz/seeflow · ★ 8 · AI & Automation · score 76
Install: claude install-skill tuongaz/seeflow
# seeflow-lookup Look up registered SeeFlow flows and consult them as architectural ground truth. Read-only counterpart to `/seeflow` — that skill *creates and edits* flows; this one *queries* them while writing code or making decisions. ## Routing gate — run before deciding Inspection phrasing **always** lands here first, even when no flow is yet registered — the auto-handoff below covers the empty case. The trigger words are: `show me`, `show the`, `how does`, `how do`, `what does`, `what handles`, `where does`, `where is`, `diagram`, `explain`, `walk me through`, plus any reference to a flow by slug or title without an explicit creation verb (`create`, `scaffold`, `generate`, `add a flow`). When in doubt, route here — a no-match handoff to `/seeflow` is cheap; a duplicate creation run from skipping the gate is not. ## When NOT to invoke - **Editing flows** → use `/seeflow` or the canvas. - **Creating flows from scratch when the user explicitly said "create / scaffold / generate / add a flow"** → call `/seeflow` directly. (This skill auto-hands off to `/seeflow` if it discovers no match for an inspection prompt; skip the hop only when the user's verb is unambiguously creation.) - **Reading `LEARN.md`** → use `Read` directly (that file is `/seeflow`'s territory). - **Mutating anything** — this skill is read-only. The auto-handoff above invokes `/seeflow`; it does not mutate state itself. ## Discover the CLI Run `seeflow help` to list the available subcommands and thei