The uzi ls command shows all active agent sessions for the current repository:
uzi ls
Example output:
AGENT MODEL STATUS DIFF ADDR PROMPTfunny-elephant claude ready +127/-23 http://localhost:3000 Implement user authenticationwise-dolphin codex running +89/-12 http://localhost:3001 Add API endpointsbrave-tiger claude ready +0/-0 http://localhost:3002 Write unit tests
agent-myproject-a1b2c3d-funny-elephant: 2 windows (created Tue Mar 03 10:23:45 2026)agent-myproject-a1b2c3d-wise-dolphin: 2 windows (created Tue Mar 03 10:23:46 2026)agent-myproject-a1b2c3d-brave-tiger: 2 windows (created Tue Mar 03 10:23:47 2026)
Course corrections when agents are going in the wrong direction
Providing additional context or constraints
Asking for status updates or explanations
Example scenarios:
# Add a new requirementuzi broadcast "Also add input validation using Zod"# Request documentationuzi broadcast "Add JSDoc comments to all public functions"# Ask for explanationuzi broadcast "Explain your architectural decisions"# Provide contextuzi broadcast "We're using TypeScript 5.0, use the latest syntax"
Broadcast sends the exact same message to all agents. If you need to give different instructions to specific agents, attach to their individual sessions instead.
Run multiple agents on the same task to compare approaches:
uzi prompt --agents claude:3 "Implement a caching layer for the API"uzi ls -w # Watch all three approaches# Visit their dev servers to test# Checkpoint the best oneuzi checkpoint brave-tiger "feat: add Redis caching layer"uzi kill wise-dolphinuzi kill funny-elephant
uzi prompt --agents claude:1 "Implement user authentication endpoints"uzi prompt --agents codex:1 "Write unit tests for the authentication system"uzi prompt --agents claude:1 "Create API documentation for auth endpoints"
Then use uzi broadcast for global updates:
uzi broadcast "We're using JWT tokens, not sessions"
uzi prompt --agents claude:1 "Build a user dashboard"# Wait for initial implementationuzi broadcast "Add charts using Chart.js"# Wait for chartsuzi broadcast "Make the dashboard responsive for mobile"# Checkpoint when satisfieduzi checkpoint funny-elephant "feat: add responsive user dashboard with charts"