원클릭으로
speckit-speckit-superpowers-bridge-guard
Guard Spec Kit and Superpowers commands from crossing bridge ownership boundaries
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Guard Spec Kit and Superpowers commands from crossing bridge ownership boundaries
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Execute Spec Kit tasks.md through the Superpowers bridge
Create or update the Superpowers implementation handoff state
Execute Spec Kit tasks.md through the Superpowers bridge
Use to consult, capture, validate, and install AI Workflow Home assets for Codex/Claude/Hermes/OpenClaw machines; local runtime first, web window second.
| name | speckit-speckit-superpowers-bridge-guard |
| description | Guard Spec Kit and Superpowers commands from crossing bridge ownership boundaries |
| compatibility | Requires spec-kit project structure with .specify/ directory |
| metadata | {"author":"github-spec-kit","source":"speckit-superpowers-bridge:commands/speckit.speckit-superpowers-bridge.guard.md"} |
Block commands that would overlap Spec Kit / Superpowers responsibilities. The guard reads .specify/superpowers-handoff.json and (when needed) the active feature directory, then evaluates a small fixed rule set.
.specify/scripts/powershell/guard-command.ps1 and .specify/scripts/bash/guard-command.sh)The guard evaluates these 5 rules in order; the first match wins:
speckit.implement when handoff status is executing.superpowers:writing-plans or superpowers:brainstorming when the active feature directory has both spec.md AND plan.md.speckit.constitution when handoff status is executing (set the handoff to blocked first to repair the constitution).speckit.* action — design and clarification commands are always permitted.There is no disposition matrix and no JSON config; adding a rule is a one-line if/elseif edit. Every allow / deny decision is appended to .specify/bridge-events.jsonl.
Map the triggering hook or requested skill to an action and run the platform flavor selected by .specify/init-options.json.script.
.\.specify\extensions\speckit-superpowers-bridge\scripts\powershell\guard-command.ps1 -Action <action> -Actor <codex|claude|unknown>
bash .specify/extensions/speckit-superpowers-bridge/scripts/bash/guard-command.sh --action <action> --actor <codex|claude|unknown>
Exit codes: 0 = allow, non-zero = deny (the reason is printed to stdout and recorded in bridge-events.jsonl).
# Denied while handoff is executing
.\.specify\extensions\speckit-superpowers-bridge\scripts\powershell\guard-command.ps1 -Action speckit.implement -Actor claude
# Allowed (Spec Kit design surface is always allowed)
.\.specify\extensions\speckit-superpowers-bridge\scripts\powershell\guard-command.ps1 -Action speckit.tasks -Actor codex
# Denied when an active feature has spec.md + plan.md
.\.specify\extensions\speckit-superpowers-bridge\scripts\powershell\guard-command.ps1 -Action "superpowers:writing-plans" -Actor claude