← ClaudeAtlas

fleetlisted

Monitor, search, and audit multiple Claude Code agents using the Fleet CLI. Use this skill to list active sessions, search session content, audit risky commands, check agent status, view token speed, inspect individual agents, stop runaway agents, and check rate-limit usage. Ideal for multi-agent coordination, observability, and security auditing.
hoveychen/claw-fleet · ★ 14 · AI & Automation · score 71
Install: claude install-skill hoveychen/claw-fleet
# Claw Fleet Claw Fleet monitors all your running Claude Code sessions in real time via a desktop app and CLI. ## Prerequisites Check if `fleet` is installed: ```bash which fleet ``` If not found, install via the Claw Fleet app: open the app → **Account & Usage** panel → **Let AI Use Fleet** → install CLI. Or download manually from: https://github.com/hoveychen/claw-fleet/releases ## Commands ```bash # List all active agents fleet agents # List all agents including idle ones fleet agents --all # Show details for a specific agent (by ID prefix or workspace name) fleet agent <id> # Stop an agent (SIGTERM) fleet stop <id> # Force-stop an agent (SIGKILL) fleet stop <id> --force # Show account info and rate-limit usage fleet account # Show per-agent and aggregate token speed fleet speed # Search across all session content (full-text search) fleet search <query> # Search with a result limit fleet search <query> --limit 10 # Audit active sessions for risky commands fleet audit # Audit only high/critical risk events fleet audit --level high # Audit a specific workspace or session fleet audit --filter <workspace-name-or-id> ``` ## Remote SSH mode Any command can be run on a remote host by adding `--remote <host>`: ```bash # <host> accepts: user@hostname, hostname (uses current user), or SSH config profile name fleet agents --remote user@hostname fleet agents --remote myserver --all fleet account --remote user@hostname fleet speed --remote myserver fleet stop <id>