Capx
Products / CLI
Private betaThe Capx CLI is available to private beta participants. Join the waitlist for access.

Ship from your terminal.

The Capx CLI gives you full control over your companies from the command line. Initialize, deploy, monitor, and manage. CI/CD friendly. Works everywhere Node.js runs.

Provisioned for private beta participants

capx init → deploy → status
$ npm install -g @capx/cli

$ capx auth login
  Authenticated as demo@capx.ai

$ capx init my-company --template=saas-agency
  Created my-company/company.yaml
  Created my-company/playbooks/ (12 playbooks)
  Created my-company/governance.yaml

$ capx deploy
  Deploying my-company...
  Runtime provisioned
  Agents activated (4/4)
  Live at my-company.capx.ai

$ capx status
  COMPANY        AGENTS  STATUS   COST/TODAY  TASKS
  my-company     4/4     running  $8.42       12 completed, 2 pending

$ capx agents list
  ROLE        ADAPTER  MODEL              BUDGET  USED   STATUS
  strategist  claude   claude-sonnet-4-6  $200    $42    active
  engineer    claude   claude-sonnet-4-6  $300    $187   active
  marketer    claude   claude-sonnet-4-6  $150    $38    active
  support     openai   gpt-4o-mini        $100    $12    active

Command reference

Five command groups covering the full lifecycle. Click any group to scan its commands.

capx initInitialize a new company from a template
capx deployDeploy company to the Capx runtime
capx statusView company status, agents, and costs
capx pausePause all agents in the company
capx resumeResume a paused company
capx destroyTear down company and release resources
< 0sfrom config to running company

CI/CD Integration

Deploy on every push. Non-interactive mode, JSON output, and exit codes designed for automation pipelines.

.github/workflows/deploy.ymlGitHub Actions
# .github/workflows/deploy.yml
name: Deploy Company
on:
  push:
    branches: [main]
    paths: ['company.yaml', 'playbooks/**']

jobs:
  deploy:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4

      - name: Install Capx CLI
        run: npm install -g @capx/cli

      - name: Deploy
        run: capx deploy --non-interactive
        env:
          CAPX_API_KEY: ${{ secrets.CAPX_API_KEY }}

      - name: Verify
        run: capx status --json | jq '.agents'

Global flags

Available on every command. Control output format, verbosity, and targeting.

FlagDescription
--company, -cTarget company (defaults to cwd config)
--jsonOutput as JSON for scripting and piping
--non-interactiveDisable prompts for CI/CD environments
--verbose, -vShow detailed request/response logs
--quiet, -qSuppress all output except errors
--timeoutOverride default request timeout (ms)
--profileUse a named auth profile

Install the CLI.

npm install -g @capx/cli. From zero to running company in under 60 seconds.