원클릭으로
listen
Execute instructions while listening for and invoking every skill referenced within them
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Execute instructions while listening for and invoking every skill referenced within them
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Render a single "where am I, what have I done, what's next" survey HTML page composing anchor cascade + tesseract shelf + git state + CHECKPOINT.md + TaskList. Read-only by design.
Subagent-driven development as the explicit combination of /subagent-driven-development (sequential, review-gated execution) and /dispatching-parallel-agents (independent fan-out). Opens with one combined pre-dispatch question to set the execution mode and the edit-approval mode, then dispatches accordingly.
Use when a discrete task boundary is crossed in multi-step work — step completion, subagent dispatch return, Skill-tool invocation return, /proceed gate passed, test-run completion, or file-write to a durable artifact (spec, plan, SKILL.md). Do not substitute an in-place TaskList update for this skill.
Use when resuming paused work, starting a session where a CHECKPOINT.md exists, or when the user says "continue from checkpoint", "resume", or "pick up where we left off"
Use when pausing work that will be resumed later, when switching contexts, or when the user asks to save a checkpoint. Creates a CHECKPOINT.md that captures full resumption context.
retry last operation attempted before the user interrupted the process, or otherwise continue last attempted tool use
| name | listen |
| description | Execute instructions while listening for and invoking every skill referenced within them |
| argument-hint | <instructions containing /skill references> |
| user-invocable | true |
Perform the following instructions and enforce using all the skills referenced in the skills used. Perform the following instructions and listen for all the — whether referenced directly or transitively through other skills.
Instructions: "$ARGUMENTS"
Before executing the instructions above, you MUST:
/skill-name reference (e.g., /tdd,
/brainstorming, /expert-review, /super, /duper, /cat, or any other
skill invocation).If the instructions reference a compositional skill (e.g.,
/super-duper-cat), invoke that skill directly — do not decompose it into its
primitives unless the skill itself does so.
If the instructions contain no skill references, execute them normally without this enforcement overhead.
If a referenced skill fails or is denied by the user, note it explicitly in your output rather than silently skipping it.
Follow the invoked skills' own instructions exactly — this enforcement layer adds the guarantee that they are all used, but does not override how each skill operates.
If the instructions reference a compositional skill (e.g.,
/super-duper-cat), invoke that skill directly — do not decompose it into its
primitives unless the skill itself does so.
If the instructions contain no skill references, execute them normally without this enforcement overhead.
If a referenced skill fails or is denied by the user, note it explicitly in your output rather than silently skipping it.
Follow the invoked skills' own instructions exactly — this enforcement layer adds the guarantee that they are all used, but does not override how each skill operates.
A skill reference in the instructions is satisfied when one of the following holds:
Skill tool was called with that skill's name
(e.g. Skill(skill="superpowers:writing-skills")) during this execution.Transitive / implicit application does NOT satisfy the requirement. Following a skill's discipline "in spirit" — applying its pattern without invocation — is not satisfaction. Reading a skill's content without invoking it is not satisfaction. If the skill was referenced in the instructions and you never invoked it (directly or through a composing skill that explicitly delegates), the requirement is unmet — go back and invoke it now.
Rationalization counter:
| Excuse | Reality |
|---|---|
| "I followed /writing-skills discipline through the chain — that counts" | Composition counts only when the composing skill's text explicitly delegates. "In spirit" does not. Cite the delegation line or invoke directly. |
| "The skill's content informed my behavior, so it was applied" | Content-informed behavior is not invocation. Invoke via the Skill tool. |
| "Invoking it at the end is redundant" | Invoking at the right point is the requirement, not at the end. If skipped at the point, you have a gap — invoke now and note it. |
| "The compositional skill I used must be doing that internally" | Must cite the internal delegation, otherwise no claim. If the composing skill doesn't actually delegate, invoke the target directly. |
| "Skill invocation order should be reordered for dependency reasons" | Dependency reordering may move when a skill fires but never whether. The reference is a requirement, not a suggestion. If a dependency truly makes invocation impossible at the listed point, surface the blocker explicitly — never silently drop the invocation. |