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:
parent
6045805dfc
commit
d3bbda3698
5 changed files with 5 additions and 5 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
name: recall
|
||||
name: core:recall
|
||||
description: Search OpenBrain for memories and context
|
||||
arguments:
|
||||
- name: query
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
---
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
name: status
|
||||
name: core:status
|
||||
description: Show status of all agent workspaces (running, completed, blocked, failed)
|
||||
---
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue