You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@ Most major AI coding agents now have built-in sub-agents — but only for their
23
23
This skill removes that restriction:
24
24
25
25
-**Cross-LLM orchestration** — Use Claude for long-chain reasoning, Codex for fast refactors, and Gemini for large-context analysis, all from the same parent session.
26
-
-**No vendor lock-in** — Your agent definitions are plain markdown files that work across any Agent Skills-compatible tool, so switching IDEs or LLM providers doesn't mean rewriting your workflow.
26
+
-**No vendor lock-in** — Your agent definitions are plain markdown files that work with Codex, Claude Code, Cursor, Gemini CLI, VS Code, and [30+ other tools](https://agentskills.io) that support the Agent Skills format, so switching IDEs or LLM providers doesn't mean rewriting your workflow.
27
27
-**Bring Your Own Model** — Choose which model handles each task and pay each provider directly at their API rates.
28
28
-**Team portability** — Share agent definitions across your team regardless of IDE or preferred LLM.
29
29
@@ -48,7 +48,7 @@ You only need to install the backends you plan to use.
48
48
49
49
## Quick Start
50
50
51
-
**Requirements:** Python 3.10+ and at least one [supported backend](#supported-backends) installed.
51
+
**Requirements:** Python 3.9+ and at least one [supported backend](#supported-backends) installed.
52
52
53
53
### 1. Install the Skill
54
54
@@ -317,7 +317,7 @@ The main agent stays lightweight too. It coordinates work without accumulating a
317
317
318
318
### Agent Skills as an Open Standard
319
319
320
-
This skill uses the [Agent Skills](https://github.com/anthropics/skills) format—a convention for packaging reusable AI agent capabilities as portable files. The format is supported by Claude Code, Codex, and other Agent Skills-compatible tools, so the same skill works across environments without modification.
320
+
This skill uses the [Agent Skills](https://agentskills.io) format—a convention for packaging reusable AI agent capabilities as portable files. The format is supported by Codex, Claude Code, Cursor, Gemini CLI, and [30+ other tools](https://agentskills.io), so the same skill works across environments without modification.
Copy file name to clipboardExpand all lines: skills/sub-agents/SKILL.md
+2-10Lines changed: 2 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
2
name: sub-agents
3
-
description: Execute external CLI AIs as isolated sub-agents for task delegation, parallel processing, and context separation. Use when delegating complex multi-step tasks, running parallel investigations, needing fresh context without current conversation history, or leveraging specialized agent definitions. Returns structured JSON with agent output, exit code, and execution status.
3
+
description: Run agent definitions as sub-agents. Use when the user names an agent or sub-agent to run, references an agent definition, or delegates a task to an agent.
4
4
allowed-tools: Bash Read
5
5
---
6
6
@@ -40,14 +40,6 @@ Extract parameters from user's natural language request:
This script executes external CLIs that require elevated permissions.
@@ -158,7 +150,7 @@ What this agent does.
158
150
How results should be structured.
159
151
```
160
152
161
-
**Critical**: The `run-agent` frontmatter determines which CLI executes the agent. See [cli-formats.md](references/cli-formats.md) for CLI-specific behaviors.
153
+
**Critical**: The `run-agent` frontmatter determines which CLI executes the agent.
0 commit comments