fix(plugin): prefix commands with core: namespace to avoid clashes

/dispatch → /core:dispatch, /status → /core:status, etc.
Prevents collision with built-in Claude commands.

Co-Authored-By: Virgil <virgil@lethean.io>
This commit is contained in:
Snider 2026-03-15 14:50:35 +00:00
parent 6045805dfc
commit d3bbda3698
5 changed files with 5 additions and 5 deletions

View file

@ -1,5 +1,5 @@
---
name: dispatch
name: core:dispatch
description: Dispatch a subagent to work on a task in a sandboxed workspace
arguments:
- name: repo

View file

@ -1,5 +1,5 @@
---
name: recall
name: core:recall
description: Search OpenBrain for memories and context
arguments:
- name: query

View file

@ -1,5 +1,5 @@
---
name: remember
name: core:remember
description: Save a fact or decision to context for persistence across compacts
args: <fact to remember>
---

View file

@ -1,5 +1,5 @@
---
name: scan
name: core:scan
description: Scan Forge repos for open issues with actionable labels (agentic, help-wanted, bug)
arguments:
- name: org

View file

@ -1,5 +1,5 @@
---
name: status
name: core:status
description: Show status of all agent workspaces (running, completed, blocked, failed)
---