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.
@@ -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/rrce-*.md` | Custom Primary Agents (Tab to switch) |
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 `primary` (enables Tab cycling in TUI)
367
- - **Tools**:
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**: Agents prefixed with `rrce-` to avoid collisions
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
- ├── rrce-init.md
379
- ├── rrce-research.md
380
- ├── rrce-planning.md
381
- ├── rrce-executor.md
382
- ├── rrce-documentation.md
383
- ├── rrce-sync.md
384
- └── rrce-doctor.md
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:**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rrce-workflow",
3
- "version": "0.2.94",
3
+ "version": "0.2.96",
4
4
  "description": "RRCE-Workflow TUI - Agentic code workflow generator for AI-assisted development",
5
5
  "author": "RRCE Team",
6
6
  "license": "MIT",