@swarmify/agents-mcp 0.2.10 → 0.2.11

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.
Files changed (2) hide show
  1. package/README.md +10 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -52,10 +52,16 @@ Without this server, each agent is siloed:
52
52
  - Codex has no native subagent support
53
53
  - Gemini CLI has no native subagent support
54
54
 
55
- With this server, every MCP client gets the same capabilities:
56
- - Spawn agents from any provider (Anthropic, OpenAI, Google)
57
- - Mix and match: Claude for research, Codex for speed, Gemini for breadth
58
- - Use each agent's strengths for different parts of a task
55
+ With this server, every MCP client gets the same capabilities. Mix models based on their strengths:
56
+
57
+ | Workflow | How It Works |
58
+ |----------|--------------|
59
+ | **Opus for planning, Codex for speed** | Use Claude Opus as orchestrator to design architecture, spawn Codex agents for fast, cheap implementation |
60
+ | **Claude for research, Cursor for code** | Claude explores codebase and plans approach, Cursor (Composer) writes the code |
61
+ | **Parallel specialists** | Claude reviews security while Codex adds validation - simultaneously |
62
+ | **Codex spawning Claude** | When Codex hits something needing deeper reasoning, it spawns Claude |
63
+
64
+ You control the cost tradeoffs. Expensive models for planning, fast models for execution.
59
65
 
60
66
  **4 tools:** `Spawn`, `Status`, `Stop`, `Tasks`
61
67
  **3 modes:** `plan` (read-only), `edit` (can write), `ralph` (autonomous)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@swarmify/agents-mcp",
3
- "version": "0.2.10",
3
+ "version": "0.2.11",
4
4
  "description": "True multi-agent coding in your IDE. Spawn Claude, Codex, Gemini, and Cursor agents from a single MCP server.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",