一键导入
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": "..." }