fleet
v0.3.0Live awareness across parallel Claude Code agents working in git worktrees of the same repo. A shared board file in the repo's common .git dir tracks what every agent is working on; hooks register each session on start, update its entry on commits and prompts, and inject sibling-agent updates into context at every turn — so agents coordinate by awareness instead of colliding. Ships /fleet:status (pretty-print the board) and /fleet:start (decompose a big task, provision worktrees with kickoff briefs, and launch a session per stream — tab or headless). Local-only: no server, no auth.
By XTrace1 GitHub starsUpdated 3 hours ago
Directory evidence
- Runtimes
- Claude Code
- Parsed components
- 2 skill or MCP entries
- Source updated
- Sep 3, 2026
- Manifest status
- Canonical path parsed
The directory validates manifest shape and source location. It does not execute the plugin or provide a security endorsement. Review the indexing methodology →
Install fleet for Claude Code
claude plugin marketplace add IchenDEV/agent-plugin-mkt
claude plugin marketplace update agent-plugin-marketplace
claude plugin install fleet@agent-plugin-marketplacePaste and run these commands in a terminal with Claude Code. They add and refresh the PluginsMP catalog, then install this plugin.
The installer fetches third-party code from the source repository shown on this page. This directory validates manifest structure and source location, but does not perform a security audit; review the manifest, components, and source before installing.
Get the source manually
git clone https://github.com/XTraceAI/agent-pluginsClone the source repository, then follow its setup instructions to add the plugin to a compatible client. The plugin root is plugins/fleet/.
Plugin files
├── .claude-plugin/plugin.json├── skills/start/SKILL.md└── skills/status/SKILL.md
Included Skills2
Use when the user wants to start a fleet — split a big task across parallel Claude Code agents in git worktrees (e.g. "/fleet:start <task>", "start a fleet for X", "parallelize this across worktrees", "spin up agents to work on X in parallel"). Decomposes the task, provisions worktrees with kickoff briefs, and launches a real session per stream.
Use when the user asks what the fleet is doing, who else is working on this repo, or for fleet/agent status (e.g. "fleet status", "what are my other agents doing", "who's working on what right now", "show the fleet board"). Read-only — pretty-prints the shared fleet board for the current repo.
Plugin manifests1
{
"name": "fleet",
"description": "Live awareness across parallel Claude Code agents working in git worktrees of the same repo. A shared board file in the repo's common .git dir tracks what every agent is working on; hooks register each session on start, update its entry on commits and prompts, and inject sibling-agent updates into context at every turn — so agents coordinate by awareness instead of colliding. Ships /fleet:status (pretty-print the board) and /fleet:start (decompose a big task, provision worktrees with kickoff briefs, and launch a session per stream — tab or headless). Local-only: no server, no auth.",
"version": "0.3.0",
"author": {
"name": "XTrace",
"email": "[email protected]"
},
"keywords": [
"worktree",
"multi-agent",
"fleet",
"coordination"
]
}For maintainers
If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.
[fleet on Agent Plugins Marketplace](https://pluginsmp.com/plugins/fleet)