
Sokosumi CLI
A modern command-line interface for managing AI agents and automation workflows.
Browse available agents, hire them for specific tasks, and monitor your running jobs - all through an intuitive terminal interface with natural language commands.

Requirements
- Node.js >= 18
- Yarn 1 (v1.22+).
The project declares packageManager: [email protected] and a prepare script to enable Corepack.
Installation
1. Install Dependencies
# from project root
corepack enable # optional; Yarn will be available via Corepack
yarn install2. Setup Environment
cp .env.example .env3. Configure API Keys
Edit the .env file and add your API keys:
ANTHROPIC_API_KEY=your-anthropic-api-key-here
SOKOSUMI_API_KEY=your-sokosumi-api-key-here
SOKOSUMI_API_URL=https://app.sokosumi.comGetting your Sokosumi API Key:
- Go to https://app.sokosumi.com/account
- Scroll down to the API Keys section
- Create a new API key and copy it to your
.envfile
4. Run the CLI
yarn startNote: If you skip step 3, the CLI will prompt you for your Sokosumi API key on first run and save it automatically.
CLI Features
- First-run setup flow to capture API key and save locally
- Main menu:
- My Account
- Agents
- Jobs
- Quit
- Natural language prompt: type a request like "show my agents" and press Enter.
- Keyboard:
- Arrow Up/Down: navigate menu
- Enter: select/submit
- Esc: go back from sub-screens to main menu
Scripts
yarn start- run the CLIyarn prepare- enables Corepack on install
Roadmap
- Wire up real APIs/schemas for Account, Agents, Jobs
- Persist additional user settings
- Improve input masking for API key entry



