원클릭으로
slash-commands
Create, update, list, and delete global slash commands.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Create, update, list, and delete global slash commands.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Update persistent swarm memory in ${SWARM_MEMORY_FILE} when the user explicitly asks to remember, update, or forget durable information.
Web search and content extraction via Brave Search API. Use for searching documentation, facts, or any web content. Lightweight, no browser required.
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.
| 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": "..." }