@clanker-code/pi-subagents 0.10.5 → 0.10.7

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.
@@ -1,350 +0,0 @@
1
- # Subagent Feature Landscape — A Comparison for `pi-subagents`
2
-
3
- **Date:** 2026-06-18
4
- **Scope:** Survey the subagent / multi-agent features shipping in leading coding agents and CLIs, extract the most useful and innovative ideas, and compare them to the current `pi-subagents` implementation.
5
-
6
- This document is meant to be a single reference for deciding which features are worth adopting, improving, or deliberately avoiding in `pi-subagents`.
7
-
8
- ---
9
-
10
- ## 1. Feature taxonomy
11
-
12
- Across the tools surveyed, the interesting subagent capabilities cluster into a handful of categories:
13
-
14
- | Category | What it covers |
15
- |----------|----------------|
16
- | **Spawn model** | Tool-based (`Agent`), natural-language auto-delegation, `@agent` forcing, API/SDK spawn |
17
- | **Context isolation** | Fresh context vs. inherited conversation; context-window utilization signals |
18
- | **Tool & extension scoping** | Per-agent tool allowlists/denylists, sandbox mode (read-only, etc.), extension isolation |
19
- | **Concurrency & parallelism** | Background queue, max threads, parallel worktrees, join/group strategies |
20
- | **Orchestration** | Parent-driven fan-out, coordinator/agent-teams, shared task lists, self-coordination |
21
- | **Communication** | One-way result reporting, mid-run steering, peer-to-peer messaging |
22
- | **Scheduling** | Cron / interval / one-shot scheduled agents, CI-triggered agents |
23
- | **Lifecycle intervention** | Graceful max-turns wrap-up, hard abort, resume, hooks/quality gates |
24
- | **Sandbox / isolation** | Worktree isolation, container sandboxes, browser-agent isolation |
25
- | **Configuration** | Markdown + YAML, TOML, programmatic `agents` map, skills preloading |
26
- | **UI / observability** | Persistent widget, conversation viewer, styled notifications, token meters |
27
- | **Governance** | Model allowlists, approval gates, audit events, cross-extension RPC |
28
-
29
- ---
30
-
31
- ## 2. Tool-by-tool survey
32
-
33
- ### 2.1 Claude Code — subagents
34
-
35
- Claude Code implements subagents as a first-class `Agent` tool.
36
-
37
- **Key capabilities**
38
-
39
- - **Three definition styles:** programmatic `AgentDefinition` in the SDK, filesystem agents in `.claude/agents/*.md`, and a built-in `general-purpose` agent that is always available.
40
- - **Markdown + YAML agents:** each file has frontmatter (`name`, `description`, optional `tools`) plus a system prompt body. Project-scoped agents override user-scoped agents.
41
- - **Tool scoping:** agents receive a curated `tools` array; omitting it inherits the parent thread’s tools (including MCP). `disallowedTools` can block the `Agent` tool itself.
42
- - **Nested subagents:** as of Claude Code v2.1.172, subagents can spawn their own subagents. Foreground subagents can spawn at any depth; background subagents cannot spawn beyond depth 5.
43
- - **Fresh context by default:** the subagent’s context window starts empty; the only parent-to-child channel is the `Agent` tool’s prompt string.
44
- - **Lifecycle hooks:** shell hooks fire on events such as `SubagentStop` / `Stop`, letting users inject quality gates or external review steps.
45
-
46
- **What stands out**
47
-
48
- - The filesystem-based agent definition is simple and version-controllable.
49
- - The model can auto-delegate based on the agent’s `description`.
50
- - Nested subagents give genuine recursive delegation.
51
-
52
- **Sources:** [Claude Code subagent docs](https://code.claude.com/docs/en/agent-sdk/subagents), [PubNub best-practices write-up](https://www.pubnub.com/blog/best-practices-for-claude-code-sub-agents/)
53
-
54
- ### 2.2 Claude Code — Agent Teams (experimental)
55
-
56
- Agent Teams are a different, heavier abstraction from ordinary subagents: they coordinate multiple independent Claude Code sessions rather than nested tool calls.
57
-
58
- **Key capabilities**
59
-
60
- - **Peer-to-peer messaging:** teammates message each other directly, not just through the parent.
61
- - **Shared task list:** the team coordinates through a shared task list with self-coordination.
62
- - **Lead / teammate model:** the main session is the lead; teammates are spawned on request or when the model decides it needs help.
63
- - **Quality-gate hooks:** `TeammateIdle`, `TaskCreated`, and `TaskCompleted` hooks can block idle/creation/completion with exit code 2 and send feedback.
64
- - **Graceful shutdown:** the lead can ask a teammate to shut down; the teammate may approve or reject.
65
- - **Shared directories:** team workspace directories are cleaned up automatically on session end.
66
-
67
- **What stands out**
68
-
69
- - This is the most sophisticated *team* abstraction among the surveyed tools: agents are true peers with a task board and direct messaging.
70
- - Quality-gate hooks are a genuine governance primitive.
71
-
72
- **Sources:** [Claude Code agent teams docs](https://code.claude.com/docs/en/agent-teams)
73
-
74
- ### 2.3 OpenAI Codex
75
-
76
- Codex treats subagent workflows as explicit, user-requested parallel fan-outs.
77
-
78
- **Key capabilities**
79
-
80
- - **Explicit orchestration:** Codex spawns, routes follow-up instructions, waits for results, and closes agent threads only when the user asks for subagents.
81
- - **Built-in + custom agents:** ships `default`, `worker`, and `explorer` plus user-defined TOML agents under `.codex/agents/`.
82
- - **Global `[agents]` settings:** `max_threads` (default 6), `max_depth` (default 1), `job_max_runtime_seconds`.
83
- - **Per-agent config:** `model`, `model_reasoning_effort`, `sandbox_mode` (`read-only`), `developer_instructions`.
84
- - **Sandbox modes:** read-only exploration agents, with broader sandbox-agent support in the Agents SDK.
85
- - **Agents SDK integration:** the CLI can be exposed as an MCP server and orchestrated from the OpenAI Agents SDK.
86
- - **`spawn_agents_on_csv`:** batch-style fan-out over a CSV of inputs, with per-worker timeouts.
87
-
88
- **What stands out**
89
-
90
- - The TOML config is more structured than Markdown frontmatter but less readable as a document.
91
- - `max_threads`/`max_depth` are simple, effective global governors.
92
- - Explicit orchestration keeps the user in control but requires intentional prompting.
93
-
94
- **Sources:** [Codex subagents docs](https://developers.openai.com/codex/subagents), [Codex subagent concepts](https://developers.openai.com/codex/concepts/subagents), [Codex Agents SDK guide](https://developers.openai.com/codex/guides/agents-sdk), [Simon Willison’s notes](https://simonwillison.net/2026/Mar/16/codex-subagents/)
95
-
96
- ### 2.4 Google Gemini CLI
97
-
98
- Gemini CLI describes subagents as specialists the main agent can “hire.”
99
-
100
- **Key capabilities**
101
-
102
- - **Subagents-as-tools:** each subagent is exposed to the main agent as a callable tool with the same name.
103
- - **Built-in agents:** `codebase_investigator`, `cli_help`, `generalist_agent`, and an experimental `browser_agent`.
104
- - **Custom agents:** Markdown + YAML frontmatter under `.gemini/agents/*.md` or `~/.gemini/agents/*.md`.
105
- - **`@agent_name` forcing:** prefix a prompt with `@agent_name` to force delegation to that agent.
106
- - **Parallel execution:** multiple subagents (or instances of the same subagent) can run concurrently.
107
- - **Isolated context loops:** each subagent operates in its own context loop.
108
- - **No recursion:** subagents cannot call other subagents, preventing runaway agent loops.
109
- - **Agent Skills:** skills are self-contained directories following the [Agent Skills](https://agentskills.io) open standard, discovered from built-ins, extensions, user, and workspace tiers.
110
- - **Browser-agent sandboxing:** adjusts behavior under macOS seatbelt and Docker/Podman; can connect to a host Chrome over remote debugging.
111
-
112
- **What stands out**
113
-
114
- - The `@agent` syntax is a fast, ergonomic forcing mechanism.
115
- - Treating subagents as tools makes the mental model very simple.
116
- - The built-in browser agent is a genuinely useful default specialist.
117
-
118
- **Note:** As of June 2026, Gemini CLI is being superseded by Antigravity CLI for unpaid users.
119
-
120
- **Sources:** [Gemini CLI subagents docs](https://geminicli.com/docs/core/subagents/), [Gemini CLI skills docs](https://geminicli.com/docs/cli/skills/), [Google Developers Blog announcement](https://developers.googleblog.com/subagents-have-arrived-in-gemini-cli/)
121
-
122
- ### 2.5 Cursor
123
-
124
- Cursor 2.4 introduced subagents as parallel, specialized workers inside the editor and CLI.
125
-
126
- **Key capabilities**
127
-
128
- - **Independent parallel agents:** each subagent has its own context window and can run alongside the main agent.
129
- - **Default subagents:** included defaults for codebase research, terminal commands, and parallel work streams.
130
- - **Custom subagents:** users can define custom prompts, tool access, and models.
131
- - **Skills:** reusable skill definitions that can be attached to agents.
132
- - **IDE integration:** subagents run inside the same editor session as the main agent.
133
-
134
- **What stands out**
135
-
136
- - Cursor’s main differentiator is the tight IDE integration: subagents can work while the user keeps editing.
137
- - The combination of subagents + skills is aimed at repeatable team workflows.
138
-
139
- **Sources:** [Cursor 2.4 changelog](https://cursor.com/changelog/2-4), [Cursor subagents guide](https://www.aimakers.co/blog/cursor-2-4-subagents/)
140
-
141
- ### 2.6 Cline / Kilo Code
142
-
143
- Cline is an open-source VS Code extension and CLI with a plan/act workflow. Kilo Code is a hard fork with an explicit focus on multi-agent teams.
144
-
145
- **Key capabilities**
146
-
147
- - **Plan / Act modes:** separate planning from execution.
148
- - **Coordinator agents:** a coordinator delegates to specialists with their own tools and context.
149
- - **Schedules:** agents can be run on cron for recurring automations.
150
- - **Parallel isolated worktrees:** Kilo advertises “parallel isolated worktrees” for safe concurrent edits.
151
- - **Skills / `.clinerules`:** repo-local rules and skills teach the agent standards and conventions.
152
- - **MCP + plugins:** extend tools via MCP and the Cline SDK.
153
- - **Agent Manager / Portal:** Kilo provides a single portal to supervise local and cloud agents across IDE/CLI.
154
-
155
- **What stands out**
156
-
157
- - Cline/Kilo is the only open-source entry besides `pi-subagents` that combines scheduling, parallel worktrees, and coordinator/specialist teams.
158
- - The plan/act split is a useful UX primitive for risky or multi-step tasks.
159
-
160
- **Sources:** [Cline homepage](https://cline.bot/), [Kilo Code homepage](https://kilo.ai/)
161
-
162
- ### 2.7 Roo Code
163
-
164
- Roo Code is an open-source VS Code extension built around *modes*.
165
-
166
- **Key capabilities**
167
-
168
- - **Modes as agents:** each mode is a persona/role with its own instructions and assigned model (`Code`, `Architect`, `Ask`, `Debug`, `Orchestrator`, …).
169
- - **Orchestrator mode:** a strategic workflow orchestrator that breaks complex tasks into discrete subtasks and delegates them to specialized modes.
170
- - **Multi-provider support:** OpenAI, Anthropic, local models via LiteLLM.
171
- - **Context indexing:** Roo Code uses indexing and prompt management to maintain context across modes.
172
-
173
- **What stands out**
174
-
175
- - The Orchestrator mode is an elegant lightweight team abstraction: modes are cheap to define and the orchestrator mode handles routing.
176
- - At the time of writing, parallel execution of specialists is still an open enhancement request; delegation is primarily sequential.
177
-
178
- **Sources:** [Roo Code GitHub](https://github.com/RooCodeInc/Roo-Code), [Xebia multi-agent workflow write-up](https://xebia.com/blog/multi-agent-workflow-with-roo-code/)
179
-
180
- ### 2.8 Aider
181
-
182
- Aider does not have subagents in the Claude Code sense, but its **architect mode** is an interesting adjacent pattern.
183
-
184
- **Key capabilities**
185
-
186
- - **Architect / editor model split:** the architect model (often a reasoning model like o1/Opus) proposes a solution, then a separate editor model turns that proposal into concrete file edits.
187
- - **Chat modes:** `code`, `ask`, `architect`, `help`; modes can be sticky or per-message.
188
- - **Git-first workflow:** every change is committed automatically.
189
-
190
- **What stands out**
191
-
192
- - This is *specialization by model* rather than *specialization by agent*. It proves that splitting reasoning from execution can improve quality without full agent orchestration.
193
- - It is cheaper and simpler than a multi-agent runtime, but less flexible.
194
-
195
- **Sources:** [Aider chat modes docs](https://aider.chat/docs/usage/modes.html), [Aider vs Claude Code 2026](https://www.developersdigest.tech/blog/aider-vs-claude-code-2026-update)
196
-
197
- ### 2.9 Continue.dev
198
-
199
- Continue.dev is an open-source coding agent (CLI, VS Code, JetBrains) with a strong focus on repeatable, team-level agent workflows.
200
-
201
- **Key capabilities**
202
-
203
- - **Agents for PR/CI workflows:** automated code review, PR checks, and development workflows on every pull request.
204
- - **Hub:** centralized configuration, shared custom agents, and secure API-key management.
205
- - **Audit and monitoring:** agent actions and decisions are observable for teams.
206
-
207
- **What stands out**
208
-
209
- - Continue is less about runtime subagent spawning and more about packaging agents as reusable team services.
210
- - The hub/audit model is worth studying for any extension that wants to scale across an organization.
211
-
212
- **Sources:** [Continue.dev agents](https://www.continue.dev/agents), [Continue agents blog](https://blog.continue.dev/what-are-continue-agents-any-workflow-your-teams-way/)
213
-
214
- ### 2.10 OpenHands
215
-
216
- OpenHands is an open-source, model-agnostic cloud platform for coding agents.
217
-
218
- **Key capabilities**
219
-
220
- - **Cloud / headless agents:** run agents in isolated sandboxes on a VM or in the cloud.
221
- - **Multi-agent collaboration:** supports multiple agents working together on large refactors.
222
- - **Triggers and schedules:** GitHub, Slack, PagerDuty, cron-style scheduling even when the user’s machine is off.
223
- - **SDK + REST API:** embed agents into products or internal platforms.
224
- - **Governance:** access controls, audit trails, cost guardrails.
225
-
226
- **What stands out**
227
-
228
- - OpenHands is the most enterprise-oriented: it is about fleet management, not just a single CLI session.
229
- - The combination of multi-agent collaboration + scheduled triggers + governance is the direction many teams will eventually want.
230
-
231
- **Sources:** [OpenHands homepage](https://openhands.dev/), [OpenHands SDK docs](https://docs.openhands.dev/sdk)
232
-
233
- ---
234
-
235
- ## 3. Feature matrix
236
-
237
- | Capability | Claude Code subagents | Claude Code Agent Teams | Codex | Gemini CLI | Cursor | Cline / Kilo | Roo Code | `pi-subagents` |
238
- |---|---|---|---|---|---|---|---|---|
239
- | **Spawn style** | `Agent` tool | Lead / teammate sessions | Explicit user prompt | Tool-like `@agent` | Tool/IDE action | Coordinator delegate | Orchestrator mode | `Agent` tool |
240
- | **Custom agent config** | `.claude/agents/*.md` | Same + teammate profiles | `.codex/agents/*.toml` | `.gemini/agents/*.md` | Custom prompts + skills | `.clinerules` / skills | Mode files | `.pi/agents/*.md` |
241
- | **Built-in agents** | `general-purpose`, `Explore`, `Plan` | N/A (team roles) | `default`, `worker`, `explorer` | `codebase_investigator`, `cli_help`, `generalist_agent`, `browser_agent` | Research, terminal, parallel | Coordinator + specialists | Code, Architect, Ask, Debug, Orchestrator | `general-purpose`, `Explore`, `Plan` |
242
- | **Tool scoping** | `tools`, `disallowedTools` | Per-teammate tools | `sandbox_mode`, per-agent tools | `tools`, wildcards | Custom tool access | Yes | Yes | `tools`, `disallowed_tools`, `ext:` selectors, `isolated` |
243
- | **Concurrency control** | Background/foreground, nesting depth | Multiple teammates | `max_threads`, `max_depth` | Parallel instances | Up to 10 concurrent ops | Parallel isolated worktrees | Sequential primarily | `maxConcurrent` queue, recursive depth limit |
244
- | **Context model** | Fresh by default, optional inherit | Fully independent sessions | Fresh threads | Isolated context loops | Own context window | Own context | Indexed prompt mgmt | Fresh by default, optional `inherit_context` |
245
- | **Mid-run steering** | No (stop/abort only) | Yes (messages, shutdown) | No | No | No | ? | ? | `steer_subagent` |
246
- | **Scheduling** | No | No | `spawn_agents_on_csv` / SDK | No | No | Cron schedules | No | Cron, interval, one-shot |
247
- | **Worktree / sandbox isolation** | No built-in worktree | Shared team dirs | Sandbox agents (container) | Browser sandboxing | No | Parallel worktrees | No | `isolation: "worktree"` |
248
- | **Join / group results** | Summarized inline | Shared task list | Wait + consolidate | Summarized inline | Main agent collates | ? | ? | `smart` / `async` / `group` join modes |
249
- | **Resume sessions** | No | Session resumption | ? | No | ? | ? | ? | Yes (`resume`) |
250
- | **Lifecycle hooks** | `SubagentStop`, `Stop`, etc. | `TeammateIdle`, `TaskCreated`, `TaskCompleted` | ? | No | No | ? | ? | Event bus (`subagents:*`) |
251
- | **Cross-extension RPC** | No | No | MCP server exposure | No | No | MCP/SKD | No | `pi.events` RPC (`spawn`, `stop`, `ping`) |
252
- | **Persistent memory** | No | No | No | No | ? | ? | ? | Project / local / user `MEMORY.md` |
253
- | **UI / observability** | Inline Claude Code UI | Inline Claude Code UI | CLI output | CLI output | IDE widget | IDE + portal | VS Code UI | Persistent widget, conversation viewer, styled notifications |
254
- | **Model governance** | Model override per agent | Per-teammate model | `model`, `model_reasoning_effort` | Model selection | Per-subagent model | Multi-provider | Multi-provider | Fuzzy selection, `enabledModels` scope check |
255
-
256
- *Empty cells mean the capability was not documented or is not a first-class feature.*
257
-
258
- ---
259
-
260
- ## 4. How `pi-subagents` compares
261
-
262
- ### 4.1 Where `pi-subagents` is already strong
263
-
264
- - **Filesystem-first custom agents:** the Markdown + YAML frontmatter model matches Claude Code and Gemini CLI, which is the most user-friendly of the config formats.
265
- - **Rich tool scoping:** `tools`, `disallowed_tools`, `extensions`, `exclude_extensions`, and `ext:<extension>/<tool>` selectors are more granular than most competitors.
266
- - **Background orchestration:** concurrency queue, background-by-default, and configurable join modes (`smart`/`async`/`group`) are not common; Claude Code and Codex do not expose join strategies.
267
- - **Mid-run steering:** `steer_subagent` is a genuine differentiator; none of the surveyed tools except Claude Code Agent Teams offer a comparable intervention primitive.
268
- - **Scheduling:** built-in cron / interval / one-shot scheduling is rare; only Cline/Kilo and OpenHands advertise it.
269
- - **Worktree isolation:** `isolation: "worktree"` with automatic branch preservation is a powerful primitive for safe parallel writes; Codex/Cursor/Gemini do not offer it out of the box.
270
- - **Cross-extension RPC + event bus:** letting other pi extensions spawn, stop, and observe subagents via `pi.events` is unique in this survey.
271
- - **Persistent memory + skill preloading:** project/local/user memory scopes and automatic skill injection are ahead of the simpler config-only agents in Codex/Gemini.
272
- - **UI polish:** the persistent widget, conversation viewer, token-meter, and styled notifications are richer than the CLI-only competitors.
273
- - **Graceful max-turns:** the wrap-up-then-abort behavior is a nice user-experience touch.
274
-
275
- ### 4.2 Notable gaps relative to competitors
276
-
277
- - **Agent teams / peer-to-peer collaboration:** Claude Code Agent Teams’ shared task list, direct teammate messaging, and quality-gate hooks are not replicated. `pi-subagents` is strictly parent-child.
278
- - **Explicit orchestration primitives:** Codex’s `spawn_agents_on_csv`, batch timeouts, and Agents SDK integration make large fan-outs more ergonomic. `pi-subagents` requires the parent LLM to drive every spawn.
279
- - **Built-in browser agent:** Gemini CLI ships a `browser_agent`; `pi-subagents` can only get browsing through an MCP extension or tool.
280
- - **Sandbox modes:** Codex’s `sandbox_mode: read-only` / container sandbox agents provide stronger safety guarantees than tool allowlists alone.
281
- - **Coordinator / orchestrator mode:** Roo Code’s Orchestrator mode and Cline/Kilo’s coordinator agents are lightweight ways to auto-route tasks. `pi-subagents` relies on the parent model to pick `subagent_type`.
282
- - **Aider-style architect/editor split:** this is a cheap, high-leverage specialization pattern that does not require a full subagent runtime.
283
- - **Audit / hub model:** Continue.dev and OpenHands emphasize team-level configuration, audit trails, and cost guardrails, which `pi-subagents` does not address.
284
-
285
- ### 4.3 Where the design philosophies diverge
286
-
287
- - **Claude Code / `pi-subagents`** emphasize *task routing and permission shaping* — the parent decides who gets which tools.
288
- - **Codex** emphasizes *explicit parallel spawning and result collection* — the user must ask for a team.
289
- - **Gemini CLI** treats subagents *as tools* with simple `@agent` forcing.
290
- - **Cline/Kilo** and **OpenHands** push toward *persistent, schedulable, cloud-scale agent teams*.
291
-
292
- `pi-subagents` currently sits closest to Claude Code, but with scheduling, worktree isolation, and cross-extension RPC as its own differentiators.
293
-
294
- ---
295
-
296
- ## 5. Interesting features worth borrowing
297
-
298
- Based on the survey, the highest-value additions to consider for `pi-subagents` are:
299
-
300
- 1. **Coordinator / orchestrator agent type**
301
- A built-in mode whose job is to break a large task into subtasks and fan them out to other agents. This would reduce the burden on the parent model and make multi-agent workflows feel more automatic.
302
-
303
- 2. **Batch fan-out primitive**
304
- Something like Codex’s `spawn_agents_on_csv` or a “map over files/packages” helper would make it easy to run the same agent across many inputs in parallel.
305
-
306
- 3. **Shared task list / agent-team mode**
307
- Optional peer-to-peer messaging and a shared task board would move `pi-subagents` from parent-child delegation to true team collaboration.
308
-
309
- 4. **Quality-gate hooks**
310
- Shell hooks at `task-created`, `task-completed`, `agent-idle`, etc., would let teams enforce policies without writing a full extension.
311
-
312
- 5. **Sandbox mode abstraction**
313
- Beyond worktree isolation, a `sandbox_mode: read-only` (and eventually container) option would make read-only agents safer and more discoverable.
314
-
315
- 6. **Built-in browser agent**
316
- A default `browser` agent type, even if implemented via a headless browser tool, would match Gemini CLI and Cursor.
317
-
318
- 7. **Architect/editor model split**
319
- A config option to run a planning model first and a cheaper editing model second could improve complex edits without the cost of full agent orchestration.
320
-
321
- 8. **Audit / cost events**
322
- Richer event payloads (cost per agent, per project, per user) would make `pi-subagents` more attractive for team usage.
323
-
324
- ---
325
-
326
- ## 6. References
327
-
328
- - [Claude Code subagent SDK docs](https://code.claude.com/docs/en/agent-sdk/subagents)
329
- - [PubNub — Best practices for Claude Code subagents](https://www.pubnub.com/blog/best-practices-for-claude-code-sub-agents/)
330
- - [Claude Code agent teams docs](https://code.claude.com/docs/en/agent-teams)
331
- - [OpenAI Codex — Subagents](https://developers.openai.com/codex/subagents)
332
- - [OpenAI Codex — Subagent concepts](https://developers.openai.com/codex/concepts/subagents)
333
- - [OpenAI Codex — Use with the Agents SDK](https://developers.openai.com/codex/guides/agents-sdk)
334
- - [Simon Willison — Use subagents and custom agents in Codex](https://simonwillison.net/2026/Mar/16/codex-subagents/)
335
- - [Gemini CLI subagents docs](https://geminicli.com/docs/core/subagents/)
336
- - [Gemini CLI skills docs](https://geminicli.com/docs/cli/skills/)
337
- - [Google Developers Blog — Subagents have arrived in Gemini CLI](https://developers.googleblog.com/subagents-have-arrived-in-gemini-cli/)
338
- - [Cursor 2.4 changelog](https://cursor.com/changelog/2-4)
339
- - [Cursor 2.4 subagents guide](https://www.aimakers.co/blog/cursor-2-4-subagents/)
340
- - [Cline homepage](https://cline.bot/)
341
- - [Kilo Code homepage](https://kilo.ai/)
342
- - [Roo Code GitHub](https://github.com/RooCodeInc/Roo-Code)
343
- - [Xebia — Multi-agent workflow with Roo Code](https://xebia.com/blog/multi-agent-workflow-with-roo-code/)
344
- - [Aider chat modes docs](https://aider.chat/docs/usage/modes.html)
345
- - [Aider vs Claude Code 2026](https://www.developersdigest.tech/blog/aider-vs-claude-code-2026-update)
346
- - [Continue.dev agents](https://www.continue.dev/agents)
347
- - [Continue.dev — What are Continue agents?](https://blog.continue.dev/what-are-continue-agents-any-workflow-your-teams-way/)
348
- - [OpenHands homepage](https://openhands.dev/)
349
- - [OpenHands SDK docs](https://docs.openhands.dev/sdk)
350
- - [Medium — Multi-agent comparison: Codex, Claude Code, Gemini CLI](https://medium.com/@aristojeff/what-are-multi-agent-systems-and-subagents-a-comparison-of-codex-claude-code-and-gemini-cli-304376584f51)