بنقرة واحدة
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": "..." }