Agent Fleet banner
k-k1 k-k1

Agent Fleet

AI community

Description

Self-hosted web console for running AI coding agents (Claude Code, Codex, Copilot, Antigravity, Cursor, Kiro, OpenCode) as a managed fleet: isolated per-user workspaces, git/SVN working copies, scheduling and usage accounting.

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

Agent Fleet — a self-hosted console for running AI coding agents as a fleet

![The Agent Fleet Console: repo tree with live sessions, a chat mirror of a running agent, and the repository's commit graph side by side](docs/img/console-en.webp)

Agent Fleet is a web service that lets a team share AI coding agents — Claude Code, Codex CLI, GitHub Copilot CLI, Antigravity CLI, Cursor CLI, Kiro, OpenCode — efficiently and safely. Each member gets an isolated per-user environment — a Docker container with cgroup CPU/memory quotas (or a bubblewrap sandbox in the Docker-less native runtime) — with a persistent home and git working copies, and starts, drives and manages agent sessions from the browser. A Go control plane orchestrates the workspaces; the same core runs **both locally (Docker) and on AWS ECS (CloudFormation)** — the deployment layer is separated via ports & adapters ([portability](docs/dev/09-deploy.md)).

**Status: Phase 2 complete, Phase 3 in progress.** Multiple users can work in parallel, mutually invisible, on a single on-prem host (per-user Workspace / AuthGateway / network isolation / at-rest encryption). Phase 3 productization has reached the packaging & distribution milestone (P3-10): the full Console rebuild (React+Vite), the AWS ECS adapter (P3-7) and the compose / ECS / Docker-less native distribution targets are shipped, with 0.x releases published to the [distribution repo](https://github.com/k-k1/agent-fleet-dist) ([docs/history/p3-10-packaging.md](docs/history/p3-10-packaging.md), [docs/roadmap.md](docs/roadmap.md)). **Current operational details and pitfalls: [docs/HANDOFF.md](docs/HANDOFF.md) (read first in a new session).** Code: [`workspace/`](workspace/) (Agent + image) / [`control-plane/`](control-plane/) / [`console/`](console/); start via [`deploy/local/run-dev.sh`](deploy/local/run-dev.sh) (subcommands: `local` = Docker default / `wsl` = WSL preset / `native` = no Docker / `reset` = wipe data. [docs/dev/10 §10.3](docs/dev/10-developme