Metadata-Version: 2.4
Name: cli-fleet
Version: 0.2.0
Summary: Launch multiple enforced Claude Code agent teams in parallel terminal windows, hardware-aware, coordinating via a shared filesystem mailbox.
Project-URL: Homepage, https://github.com/Alexander-Sorrell-IT/CLI-Enforcement
Author-email: Alexander Sorrell <codehunterextreme@gmail.com>
License: MIT License
        
        Copyright (c) 2026 Alexander Sorrell
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
License-File: LICENSE
Keywords: agent-teams,claude,enforcement,fleet,multi-agent,orchestration
Requires-Python: >=3.9
Requires-Dist: cli-enforcement>=0.3.0
Provides-Extra: test
Requires-Dist: pytest; extra == 'test'
Description-Content-Type: text/markdown

# CLI Fleet

Launch **multiple enforced Claude Code agent teams in parallel** — each team a
separate `claude` session in its own window, coordinating via a shared
filesystem mailbox. A thin, hardware-aware wrapper that completes the stack:

```
cli-wikia  →  cli-enforcement  →  cli-fleet
(knowledge)    (the brakes)        (the power)
```

`cli-fleet` bundles fleetcode's proven shell orchestration verbatim and adds:
- **Hardware gating** — refuses to launch more parallel agents than the box can take.
- **Automatic enforcement** — deploys the cli-enforcement engine into each team
  (hooks merged with fleetcode's mailbox hook), so every spawned team is governed.

## Install

```bash
pip install cli-fleet        # pulls in cli-enforcement + cli-wikia
```

## Usage

```bash
cli-fleet launch fleet.json            # hardware-gated, auto-enforced launch
cli-fleet launch fleet.json --background  # use `claude -p` instead of windows
cli-fleet status [meta-team]           # fleet status (auto-detects if one fleet)
cli-fleet dashboard [meta-team]        # scorecard: teams, mailbox, findings + per-team enforcement points
cli-fleet dashboard --watch 5          # redraw every 5s until Ctrl-C
cli-fleet send team-a team-b "message" --type finding   # cross-team mailbox message (--team to pick fleet)
cli-fleet cleanup [meta-team]          # tear down (auto-detects if one fleet)
```

Note: `cli-fleet launch` requires Linux with a terminal emulator (gnome-terminal/xterm family) unless `--background` is used.

## License
MIT — see [LICENSE](LICENSE).
