ワンクリックで
Create, update, list, and delete global slash commands.
npx skills add https://github.com/a-mart/forge --skill slash-commandsこのコマンドをClaude Codeにコピー&ペーストしてスキルをインストール
Create, update, list, and delete global slash commands.
npx skills add https://github.com/a-mart/forge --skill slash-commandsこのコマンドをClaude Codeにコピー&ペーストしてスキルをインストール
Use when substantial manager-led work needs durable visible progress, worker evidence links, review gates, blocker tracking, or handoff across pauses, stops, compaction, restart, or model changes. Do not use for quick answers or routine one-step work.
Author repo-root .forge project resources, including skills, specialists, reference docs, Project Agent definitions, Forge extensions, and Pi extensions/settings.
Use when creating, refining, or validating reusable global, project, or repository skills, including trigger wording, templates, helper scripts, and validation checks.
Test-only project skill fixture for validating repo-root .forge skill discovery. Use when the user asks to run the Forge resource smoke skill or validate project skill loading.
Create, list, and remove persistent scheduled tasks using cron expressions.
Web search and content extraction via Brave Search API. Use for searching documentation, facts, or any web content. Lightweight, no browser required.
| name | slash-commands |
| description | Create, update, list, and delete global slash commands. |
Use this skill when the user asks to manage reusable / commands.
Slash commands are global (shared across profiles/sessions) and stored under:
${SWARM_DATA_DIR}/shared/config/slash-commands.jsonRun the CLI from this skill directory.
List all slash commands:
node ./slash-commands.js list
Create a command:
node ./slash-commands.js create \
--name "summarize" \
--prompt "Summarize the latest changes and open risks."
Update by id:
node ./slash-commands.js update \
--id "<command-id>" \
--new-name "summary" \
--prompt "Summarize the latest changes."
Update by name:
node ./slash-commands.js update \
--name "summarize" \
--new-name "summary" \
--prompt "Summarize the latest changes."
Delete by id:
node ./slash-commands.js delete \
--id "<command-id>"
Delete by name:
node ./slash-commands.js delete \
--name "summary"
/.All commands print JSON:
{ "ok": true, ... }{ "ok": false, "error": "..." }