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.
npx agentmods add skills/sabbour/agentweaver/squad-fleetnpx skills add sabbour/agentweaver --skill squad-fleetgit clone --depth 1 https://github.com/sabbour/agentweaverWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/sabbour/agentweaver/squad-fleet)<a href="https://agentmods.dev/skills/sabbour/agentweaver/squad-fleet"><img src="https://agentmods.dev/badge/skills/sabbour/agentweaver/squad-fleet.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00192 | $0.02154 |
| Opus 5 | $0.00096 | $0.01077 |
| Sonnet 5 | $0.00038 | $0.00431 |
| Haiku 4.5 | $0.00019 | $0.00215 |
Grade A, and why
squad-fleet scanned grade A with 0 findings 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 5d 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.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 229 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Squad Fleet — Parallel Issue Execution
Fleet mode is how Squad maximizes throughput: instead of working issues one by one, multiple agents run simultaneously in isolated git worktrees. Each agent owns one issue, one branch, one PR. They can't conflict with each other because they're in separate checkouts.
Step 1 — Show the current board
Before doing anything, print a status snapshot so Ahmed can see where things stand.
Run the issue-status skill (.copilot/skills/agentweaver-issue-status/SKILL.md) or call:
gh issue list --state open --label "go:yes" \
--json number,title,labels,state --limit 30
Display as a summary table: # | Title | Squad | Priority | Type.
Step 2 — Build the work queue
Fetch all open issues labeled go:yes. Sort them in this priority order:
priority:p0bugs first (blocking / production outage)priority:p1bugspriority:p0/priority:p1chorespriority:p2bugs- Features and remaining chores
- Spikes last
Within each tier, sort by issue number ascending (older issues first).
Skip issues that already have an open PR (gh pr list --search "#{N}") or an
active worktree (git worktree list).
Step 3 — Conflict analysis
Before spawning, check whether any queued issues would touch overlapping files. Two issues conflict when their domains have shared file ownership:
| If both issues touch... | They conflict |
|---|---|
Same component file (apps/web/src/...) |
Yes |
| Same API controller/service | Yes |
| Same k8s manifest | Yes |
| Different domains entirely (e.g. frontend + infra) | No |
How to check: Read the issue title and labels. Use the routing table in
.squad/routing.md to determine the domain files each issue would touch. If
two issues both route to squad:trinity AND likely edit the same component,
serialize them (add to "stacked" queue). If they route to different squad
members, they're safe to parallelize.
Group the queue into parallel batches:
- Batch 1: all conflict-safe issues (run simultaneously)
- Batch 2+: dependent or conflicting issues (run after batch 1 merges)
What ships with it
1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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.
- 5d ago First seen · 229 lines · 192 tokens per session scan A d56f29c64092
squad-fleet is a skill published in the GitHub repository sabbour/agentweaver (5 stars, last pushed today), licensed MIT. It adds 192 tokens to every session and 2,154 once invoked, about $0.0010 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
auditing-kubernetes-cluster-rbac
Auditing Kubernetes cluster RBAC configurations to identify overly permissive roles, wildcard permissions, dangerous ClusterRoleBindings, service account abuse, and privilege escalation paths using kubectl, rbac-tool, KubiScan, and Kubeaudit.
agent-workflow-playbook
AI Agent Workflow & Skill Architecture Guide — turn expert work into measurable, reusable agent systems. Covers workflow discovery, skill decomposition, harness design, evaluation, human escalation, observability, cost control, and multi-agent orchestration. Includes a measured marketing-delivery case: 15 people × 3–4…
aks-mcp
Azure Kubernetes Service (AKS) official MCP server.
dotnet-microsoft-agent-framework
Build .NET AI agents and multi-agent workflows with Microsoft Agent Framework using the right agent type, threads, tools, workflows, hosting protocols, and enterprise guardrails.
dotnet-microsoft-extensions-ai
Build provider-agnostic .NET AI integrations with Microsoft.Extensions.AI, IChatClient, embeddings, middleware, structured output, vector search, and evaluation.
dotnet-orleans
Build or review distributed .NET applications with Orleans grains, silos, persistence, streaming, reminders, placement, testing, and cloud-native hosting.