MITupdated 7d ago
is notation. Replace it with a concrete absolute plugin root before every resource read or command:
O que dá para fazer com Cancel Loop?
name: cancel-loop description: "Cancel active persistent go-workflow loop state. Use when the user explicitly invokes the qualified cancel-loop skill with an optional loop name." argument-hint: "[loop-name]" disable-model-invocation: true
Cancel Loop
Plugin Resource Resolution
<PLUGIN_ROOT> is notation. Replace it with a concrete absolute plugin root before every resource read or command:
- Codex: Start from the directory containing the absolute selected
SKILL.mdpath, then ascend two directories (skills/<name>-> plugin root). - Claude Code: Bind it to the injected
${CLAUDE_PLUGIN_ROOT}value.
Before cancellation, read <PLUGIN_ROOT>/lib/driver-interaction.md and follow
its cross-platform capability-binding rules.
Bind the invocation arguments as SKILL_ARGS for $go-workflow:cancel-loop by
reading <PLUGIN_ROOT>/lib/skill-arguments.md with this Claude Code compatibility payload:
$ARGUMENTS
Invocation
- Codex:
$go-workflow:cancel-loop [loop-name] - Claude Code:
/go-workflow:cancel-loop [loop-name]
With no loop name, cancel every active loop owned by the current repository. With a loop name, cancel only that loop and leave unrelated loop state untouched.
Execute Cancellation
if [ ! -x "<PLUGIN_ROOT>/scripts/cleanup-loop.sh" ]; then
echo "ERROR: Plugin cache stale. Refresh the go-workflow plugin and restart the active assistant."
exit 1
fi
"<PLUGIN_ROOT>/scripts/cleanup-loop.sh" "$SKILL_ARGS"
Report the helper output exactly. Do not claim a loop was removed when the helper reports that no matching active loop exists.
Instalação
Adicione Cancel Loop ao seu cliente. Escolha o que você usa.
npx skills add gopherguides/gopher-aiInstalls every skill in the repository, then prompts for which to keep.
/plugin marketplace add gopherguides/gopher-aiAdds the repository as a plugin marketplace; install individual plugins with `/plugin install`.
git clone https://github.com/gopherguides/gopher-ai
cp -r plugins/go-workflow/skills/cancel-loop ~/.claude/skills/A skill is a plain directory. Copy it into `.claude/skills/` in a project or in your home directory.
Pontuação
69 / 100
Boa