squadrant GEMINI.md

A project direction file for Squadrant, a system that coordinates multiple coding agents such as Claude Code, Codex, Cursor, and Gemini CLI. It describes the repository structure and rules for keeping features usable across agents.

In plain words
What is it for?
Use it when adding agent, workspace, notifier, plugin, or repository changes in Squadrant.
Why use it?
It reduces agent-specific design mistakes and keeps shared features aligned with Squadrant's multi-agent architecture.

Instructions file for Gemini CLI

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add instructions/tu11aa/squadrant/gemini-md
Clone the repo
git clone --depth 1 https://github.com/tu11aa/squadrant

Made for: Gemini CLI.

Per session 2,414 This file is loaded in full into every session.
When invoked 2,414 The same file — it is already loaded in full.
Security scan B 1 finding. Scan, not verified.
Origin 94% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.02414 $0.02414
Opus 5 $0.01207 $0.01207
Sonnet 5 $0.00483 $0.00483
Haiku 4.5 $0.00241 $0.00241

Measured 2d ago against content hash 4b281e838b43, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade B, and why

squadrant GEMINI.md scanned grade B with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Reads agent configuration directoriesmediumAgent snooping

.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.

## Managed `~/.claude/settings.json` (#615)
Origin

This is a copy

94% identical to squadrant AGENTS.md — 9 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

GEMINI.md · 92 lines

How it starts

The opening of the file, as written. The whole thing — 92 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Project Direction: Multi-Agent

Squadrant is a multi-agent orchestration layer, not a Claude-Code-only tool. Claude Code is the reference implementation today; Codex, Cursor, and Gemini CLI are supported (or in progress) through the runtime driver abstraction and the upcoming cross-agent projection layer (issue #31).

When working on squadrant:

  • Prefer AGENTS.md as the canonical instruction format. CLAUDE.md is becoming a thin wrapper.
  • When adding agent-facing features, ask: "does this work for non-Claude agents too?" If not, file a follow-up issue to generalize it.
  • Don't add Claude-only surface area without a migration path. The three plugin slots (runtime / workspace / notifier) exist specifically to avoid this.
  • Skills in plugin/skills/ are portable markdown — Claude Code reads them via the Skill tool; other agents read them via AGENTS.md inclusion.

Full direction statement: docs/specs/2026-04-24-multi-agent-direction.md.

Repository layout

Six packages in a one-way DAG: shared ◄ core ◄ {agents, workspaces, web} ◄ cli

Package Owns
@squadrant/shared Config schema, types, constants — leaf, zero internal deps
@squadrant/core Daemon, state-machine, protocol, AgentDriver interface
@squadrant/agents AI driver seam: claude / codex / opencode / gemini
@squadrant/workspaces Runtime (cmux), workspace (obsidian), notifier drivers
@squadrant/web Observability dashboard (bundled HTML/JS)
@squadrant/cli Commands, bin entry, daemon host — root package

Build outputs: dist/index.js (CLI bin) · dist/squadrantd.js (daemon). See architecture diagram.

Telegram (opt-in, #65)

Two-way Telegram lives in @squadrant/core (src/telegram/*: client/format/state/bridge/setup) and is wired into the daemon by the CLI host (squadrantd.ts) — a daemon-internal TelegramBridge, not a separate process. Outbound crew lifecycle events push to a per-project forum topic; inbound replies become a captain.message mailbox entry delivered to the captain pane. It is constructed only when config.telegram is present (zero behavior change otherwise) and uses plain fetch — no runtime SDK (@grammyjs/types is a dev-only type dep). Set up via squadrant telegram setup (interactive wizard) then squadrant telegram link <project> / squadrant telegram status; full guide + config block in docs/reference.md.

Read the full file on GitHub · 92 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago First seen · 92 lines · 2,414 tokens per session scan B 4b281e838b43

Subscribe to this mod's changes

squadrant GEMINI.md is an instructions file published in the GitHub repository tu11aa/squadrant (2 stars, last pushed 2d ago), licensed MIT. It adds 2,414 tokens to every session, about $0.0121 per session on Opus 5. A static security scan graded it B with 1 finding (reads agent configuration directories). It is 94% identical to squadrant AGENTS.md, differing in 9 lines, and is treated as a copy.

Related

Other instructions, from other repositories

vscode buildNext.instructions.md

Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).

microsoft/vscode · 6,785 tokens

spec-kit AGENTS.md

AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.

github/spec-kit · 7,104 tokens

codex AGENTS.md

AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.

openai/codex · 5,182 tokens

langchain AGENTS.md

AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.

langchain-ai/langchain · 4,345 tokens

vscode oss-third-party-notices.instructions.md

Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).

microsoft/vscode · 5,001 tokens

next.js AGENTS.md

Instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.

vercel/next.js · 7,296 tokens