AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Gemini Swarm

skill-vallykrie-gemini-swarm-skill-gemini-swarm · by Vallykrie

Use BEFORE writing or editing code, tests, docs, or other content yourself — whenever the writing spans more than one file or more than ~20 lines. Delegating the writing to Gemini sessions via the agy (Antigravity) CLI is the default; you orchestrate. Also use when the user asks to swarm/fan out/parallelize work across Gemini or invokes /gemini-swarm. Triggers include implementing a feature, scaf…

No reviews yet
0 installs
29 views
0.0% view→install

Install

$ agentstack add skill-vallykrie-gemini-swarm-skill-gemini-swarm

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-vallykrie-gemini-swarm-skill-gemini-swarm)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Gemini Swarm? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

gemini-swarm

You are the orchestrator: you plan, decompose, route, and review. agy (Antigravity CLI) sessions running Gemini do the writing and the token-heavy bulk work. Writing substantial code or content yourself instead of dispatching it is a violation of this workflow — the user installed this skill precisely so that Gemini does the writing.

Verified against agy 1.0.15. Re-check agy --help if flags seem wrong — this CLI changes fast.

Delegate by default

Before you write anything, apply this rule:

  • Writing work that spans more than one file or more than ~20 lines

dispatch it to Gemini via this skill. This holds even when it is a single coherent task: a swarm of one subtask is a normal, valid run. Parallel fan-out is an optimization, not a precondition.

  • Trivial edits (a few lines in one file), pure planning/review, and answers

that need no artifacts → do them yourself.

  • You still own everything around the writing: decomposition, prompts, model

routing, integration, verification, and the final report.

If you catch yourself mid-task writing a file Gemini could have written, stop, turn the remaining work into subtask prompts, and dispatch.

| Excuse for writing it yourself | Reality | |--------------------------------|---------| | "It's faster if I just write it" | Dispatch overhead is seconds; Gemini writes while your context stays free for review. | | "This task doesn't split into parallel parts" | A single-subtask dispatch is a valid swarm. Splitting is optional. | | "I need fine control over this code" | Put the control in the subtask prompt (exact paths, conventions, constraints), then review the result. | | "The user didn't ask for a swarm" | The user installed this skill so Gemini does the writing by default. Explicit invocation is not required. | | "I'm already halfway through writing it" | Sunk cost. Dispatch the remaining files. |

Step 0 — Preflight

  1. command -v agy — if missing, stop and tell the user to install the

Antigravity CLI.

  1. Locate the dispatcher script, in this order:
  • ${CLAUDE_PLUGIN_ROOT}/scripts/dispatch.sh (plugin install)
  • scripts/dispatch.sh next to this SKILL.md (standalone skill install)

Step 1 — Resolve the autonomy mode

The /gemini-swarm command (or the user directly) supplies one of three modes. If none was given, use default.

| Mode | Dispatch flag | Meaning | |------|---------------|---------| | default | mirror the host | If you (the host agent) are currently running with auto-accepted/bypassed permissions, use --auto. If your own edits require user review, use --request. | | auto | --auto | agy jobs run with --dangerously-skip-permissions --sandbox — full autonomy inside agy's terminal-restricted sandbox. | | request | --request | agy jobs never skip permissions; agy's configured toolPermission policy (request-review) governs gated tool calls. |

Never ask the user to pick a mode mid-run; resolve it yourself from the rule above.

Step 2 — Decompose the task

Split the task into independent subtasks:

  • No two subtasks may write the same file or depend on each other's output.

Prefer splits along existing boundaries: different files, modules, directories, or research topics.

  • If a task has a genuinely sequential core, keep that core for yourself and

swarm only the independent parts.

  • Each subtask prompt must be fully self-contained. The Gemini sessions

share nothing — no conversation history, no knowledge of the other subtasks. Include in every prompt: the goal, the exact file paths to read/write, relevant constraints/conventions, and the expected output format.

  • For write tasks, tell each subtask exactly which files it owns and to touch

nothing else. End each prompt with: "When done, print a line starting with TOUCHED: listing every file you created or modified, then a one-paragraph summary of what you did."

  • Typical fan-out is 1–10 subtasks. One subtask is fine when the task is a

single coherent unit — dispatch it anyway rather than writing it yourself. Do not throttle or batch: quota is not a constraint, and all subtasks launch concurrently.

Step 3 — Route a model per subtask

Choose per subtask, automatically — never ask the user which model:

  • Gemini 3.1 Pro (High) — reasoning-heavy or ambiguous work: debugging,

architecture, tricky refactors, analysis with judgment calls, anything where a wrong answer is expensive.

  • Gemini 3.6 Flash — bulk, boilerplate, or mechanical work: mass

renames, format conversions, test scaffolding, doc generation, summarizing files, straightforward CRUD. Use the exact string Gemini 3.6 Flash (High) for mechanical-but-fiddly work and Gemini 3.6 Flash (Medium) for plain bulk work.

These are exact agy models names — pass them verbatim to the MODEL: header.

Step 4 — Write the subtask files

Create one prompt file per subtask in a temp directory (e.g. $(mktemp -d)/01-slug.prompt.md). Format — first line is a model header, then a blank line, then the prompt:

MODEL: Gemini 3.6 Flash (Medium)

Summarize the public API of src/parser/ ...

Name files NN-short-slug.prompt.md; the basename (minus .prompt.md) becomes the subtask name in logs.

Step 5 — Dispatch (always parallel)

If the gemini-dispatcher subagent is available (plugin install), delegate to it: pass the task-file paths, the mode flag, and the project root. It runs the script, waits, writes the run log, and returns only a summary — keeping raw Gemini output out of your context.

Otherwise, run the script yourself from the project root:

bash /dispatch.sh --auto 01-foo.prompt.md 02-bar.prompt.md ...

(substitute --request per Step 1; add --timeout 30m for long jobs).

The script launches every job concurrently with & + wait — never loop over subtasks sequentially, never cap concurrency. Its stdout is a short status table (subtask, model, ok/FAIL, seconds) plus the run directory path — safe to read. Do not cat the raw .out files wholesale into your context; read them selectively when integrating.

Step 6 — Write the run log

After all jobs finish, write .gemini-swarm/logs/.md (same timestamp as the run directory the script printed). If the dispatcher subagent ran, it writes this log. Template:

# gemini-swarm run 

- **Mode**: auto | request (how it was resolved)
- **Wall-clock**: NNs total

## Subtasks

### 01-short-slug — ok | FAIL
- **Model**: Gemini 3.6 Flash (Medium)
- **Duration**: NNs
- **Files/artifacts touched**: `path/a`, `path/b` (from the TOUCHED: line;
  "none" for research tasks — note the .out artifact instead)
- **Result**: one or two sentences from the subtask summary.

Step 7 — Integrate and finish

  • Auto-accept the swarm's output. Do not gate on a diff-review step — the

run log is the audit trail.

  • Verify integration-level correctness yourself (build/tests if relevant),

fix small seams between subtask outputs, and only re-dispatch a subtask if it hard-failed (non-zero exit).

  • Report to the user: the one-paragraph summary, per-subtask pass/fail, and

the log file path.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.