
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
@fleettools/cli
Advanced tools
Global CLI for FleetTools - AI Agent Coordination System
# Global installation
npm install -g @fleettools/fleet-cli
# or
bun install -g @fleettools/fleet-cli
# Development installation
git clone https://github.com/v1truvius/fleettools.git
cd fleettools
bun install
bun run build:packages
cd packages/fleet-cli
bun run build
npm link # or bun link
# Initialize a new project
fleet init my-project
# Start services
cd my-project
fleet start
# Check status
fleet status
fleet init [path] - Initialize a new FleetTools projectfleet start - Start FleetTools servicesfleet stop - Stop FleetTools servicesfleet restart - Restart FleetTools servicesfleet status - Show fleet status and configurationfleet config list - Show current configurationfleet config set <key> <value> - Set configuration valuefleet config edit - Interactive configuration editorfleet services start [service] - Start specific servicefleet services stop [service] - Stop specific servicefleet services logs [service] - Show service logsfleet logs - Show FleetTools logsfleet clean - Clean FleetTools data and cachesfleet init --template basic
Basic FleetTools setup with:
fleet init --template agent
Template for developing AI agents with:
FleetTools CLI supports both Bun and Node.js runtimes:
The CLI automatically detects the runtime and optimizes for the best performance.
Located at ~/.config/fleet/config.yaml:
version: "1.0.0"
defaultRuntime: "bun"
telemetry:
enabled: false
services:
autoStart: false
squawkPort: 3000
apiPort: 3001
paths:
configDir: "~/.config/fleet"
dataDir: "~/.local/share/fleet"
logDir: "~/.local/state/fleet/logs"
Located at fleet.yaml in project root:
name: "my-fleet-project"
version: "1.0.0"
fleet:
version: "0.1.0"
mode: "local"
services:
squawk:
enabled: true
port: 3000
dataDir: "./.fleet/squawk"
api:
enabled: true
port: 3001
postgres:
enabled: false
provider: "podman"
port: 5432
dataDir: "./.fleet/postgres"
plugins:
claudeCode: true
openCode: true
FleetTools provides plugins for popular code editors:
/fleet/fleetFLEET_CONFIG_PATH - Path to global configuration fileFLEET_DATA_DIR - Override for data directoryFLEET_LOG_LEVEL - Log level (debug, info, warn, error)fleet init my-project --template agent --yes
cd my-project
fleet config set services.squawk.port 3005
fleet config set services.api.port 3006
fleet start
fleet services start api
fleet services logs squawk --follow
fleet status --json # JSON output
fleet status # Human-readable output
git clone https://github.com/v1truvius/fleettools.git
cd fleettools/packages/fleet-cli
bun install
bun run dev # Development mode with watch
MIT License - see LICENSE file for details.
FAQs
FleetTools Global CLI - Fleet management and project bootstrapping
We found that @fleettools/cli demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.