Plugin commands derive namespace from directory (claude/code/) not the name field. Commands now: /code:dispatch, /code:status, /code:recall, /code:review, /code:sweep, /code:scan. Co-Authored-By: Virgil <virgil@lethean.io>
873 B
873 B
| name | description | arguments | |||||
|---|---|---|---|---|---|---|---|
| review | Review completed agent workspace — show output, git diff, and merge options |
|
If no workspace specified, use mcp__core__agentic_status to list all workspaces, then show only completed ones with a summary table.
If workspace specified:
- Read the agent log file:
.core/workspace/{workspace}/agent-*.log - Show the last 30 lines of output
- Check git diff in the workspace:
git -C .core/workspace/{workspace}/src log --oneline main..HEAD - Show the diff stat:
git -C .core/workspace/{workspace}/src diff --stat main - Ask if the user wants to:
- Merge: fetch branch into real repo, push to forge
- Discard: delete the workspace
- Resume: dispatch another agent to continue the work