@northglass/agent
v0.4.1
Published
CLI client for controlling Idle Coder agents remotely
Downloads
122
Readme
Idle Agent
CLI client for controlling Idle Coder agents remotely.
Unlike idle-cli which both runs and controls agents, idle-agent only controls them — listing machines, spawning sessions on a machine, creating sessions, sending messages, reading history, monitoring state, and stopping sessions.
Installation
From the monorepo:
yarn workspace idle-agent buildOr link globally:
cd packages/idle-agent && npm linkAuthentication
Idle Agent uses account authentication via QR code, the same flow as linking a device in the Idle mobile app.
# Authenticate by scanning QR code with the Idle mobile app
idle-agent auth login
# Check authentication status
idle-agent auth status
# Clear stored credentials
idle-agent auth logoutCredentials are stored at ~/.idle/agent.key.
Commands
List sessions
# List all sessions
idle-agent list
# List only active sessions
idle-agent list --active
# Output as JSON
idle-agent list --jsonList machines
# List all machines
idle-agent machines
# List only active machines
idle-agent machines --active
# Output as JSON
idle-agent machines --jsonSpawn on a machine
# Spawn a session on a specific machine
idle-agent spawn --machine <machine-id> --path ~/project
# Let the daemon create the directory if needed
idle-agent spawn --machine <machine-id> --path ~/new-project --create-dir
# Choose a specific agent
idle-agent spawn --machine <machine-id> --path ~/project --agent codex
# Output as JSON
idle-agent spawn --machine <machine-id> --path ~/project --jsonSession status
# Get live session state (supports ID prefix matching)
idle-agent status <session-id>
# Output as JSON
idle-agent status <session-id> --jsonCreate a session
# Create a new session with a tag
idle-agent create --tag my-project
# Specify a working directory
idle-agent create --tag my-project --path /home/user/project
# Output as JSON
idle-agent create --tag my-project --jsonSend a message
# Send a message to a session
idle-agent send <session-id> "Fix the login bug"
# Send with yolo permissions
idle-agent send <session-id> "Ship it" --yolo
# Send and wait for the agent to finish
idle-agent send <session-id> "Run the tests" --wait
# Output as JSON
idle-agent send <session-id> "Hello" --jsonMessage history
# View message history
idle-agent history <session-id>
# Limit to last N messages
idle-agent history <session-id> --limit 10
# Output as JSON
idle-agent history <session-id> --jsonStop a session
idle-agent stop <session-id>Wait for idle
# Wait for agent to become idle (default 300s timeout)
idle-agent wait <session-id>
# Custom timeout
idle-agent wait <session-id> --timeout 60Exit code 0 when agent becomes idle, 1 on timeout.
Environment Variables
IDLE_SERVER_URL- API server URL (default:https://idle-api.northglass.io)IDLE_HOME_DIR- Home directory for credential storage (default:~/.idle)
Session ID Matching
All commands that accept a <session-id> support prefix matching. You can provide the first few characters of a session ID and the CLI will resolve the full ID.
Machine-aware commands such as spawn --machine <machine-id> also support ID prefix matching.
Encryption
All machine and session data is end-to-end encrypted. New records use AES-256-GCM with per-record keys. Existing records created by other clients are decrypted using the appropriate key scheme (AES-256-GCM or legacy NaCl secretbox).
Requirements
- Node.js >= 20.0.0
- A Idle mobile app account for authentication
Publishing to npm
Maintainers can publish a new version:
yarn release # From repo root: choose library to release
# or directly:
yarn workspace idle-agent releaseThis flow:
- runs tests/build checks via
prepublishOnly - creates a release commit and
idle-agent-vX.Y.Ztag - creates a GitHub release with generated notes
- publishes
idle-agentto npm
License
MIT
