rrce-workflow 0.2.94 → 0.2.96
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/docs/architecture.md
CHANGED
|
@@ -355,7 +355,7 @@ RRCE-Workflow prompts are designed to work across multiple AI coding tools via M
|
|
|
355
355
|
|
|
356
356
|
| Tool | MCP Config Location | Agent Location | Notes |
|
|
357
357
|
|------|---------------------|----------------|-------|
|
|
358
|
-
| **OpenCode** | `~/.config/opencode/opencode.json` | `.opencode/agent/
|
|
358
|
+
| **OpenCode** | `~/.config/opencode/opencode.json` | `.opencode/agent/rrce_*.md` | Custom subagents (invoke via `@rrce_*`) |
|
|
359
359
|
| **Antigravity IDE** | `~/.gemini/antigravity/mcp_config.json` | `.agent/workflows/*.md` | Native workflow support |
|
|
360
360
|
| **GitHub Copilot (VSCode)** | `.vscode/mcp.json` or global settings | `.github/prompts/*.prompt.md` | Custom agents format |
|
|
361
361
|
| **Claude Desktop** | `~/.config/claude/claude_desktop_config.json` | N/A | MCP Server only |
|
|
@@ -363,25 +363,26 @@ RRCE-Workflow prompts are designed to work across multiple AI coding tools via M
|
|
|
363
363
|
### OpenCode Agent Transformation
|
|
364
364
|
|
|
365
365
|
When generating agents for OpenCode (`src/commands/wizard/utils.ts`):
|
|
366
|
-
- **Mode**: Set to `
|
|
367
|
-
- **
|
|
366
|
+
- **Mode**: Set to `subagent` (not tab-switchable; invoke via mention)
|
|
367
|
+
- **Invoke**: Use `@rrce_<agent>` (e.g., `@rrce_init`)
|
|
368
|
+
- **Tools**:
|
|
368
369
|
- Host tools (`read`, `write`, `edit`, `bash`, `grep`, `glob`, `webfetch`) pass through as-is
|
|
369
370
|
- MCP tools are prefixed with `rrce_` (e.g., `rrce_search_knowledge`)
|
|
370
371
|
- Tool list respects per-agent frontmatter restrictions
|
|
371
|
-
- **Naming**:
|
|
372
|
+
- **Naming**: Agent IDs are prefixed with `rrce_` (underscore) to avoid collisions
|
|
372
373
|
|
|
373
374
|
### Generated Files
|
|
374
375
|
|
|
375
376
|
**For OpenCode:**
|
|
376
377
|
```
|
|
377
378
|
.opencode/agent/
|
|
378
|
-
├──
|
|
379
|
-
├──
|
|
380
|
-
├──
|
|
381
|
-
├──
|
|
382
|
-
├──
|
|
383
|
-
├──
|
|
384
|
-
└──
|
|
379
|
+
├── rrce_init.md
|
|
380
|
+
├── rrce_research.md
|
|
381
|
+
├── rrce_planning.md
|
|
382
|
+
├── rrce_executor.md
|
|
383
|
+
├── rrce_documentation.md
|
|
384
|
+
├── rrce_sync.md
|
|
385
|
+
└── rrce_doctor.md
|
|
385
386
|
```
|
|
386
387
|
|
|
387
388
|
**For Antigravity IDE:**
|