Trade-intelligence CLI for coding agents. Hosts the canonical SKILL.md for skills.sh discovery plus pre-built binaries that install.eximagent.ai serves.
Install the skill into your host agent so it learns the CLI surface:
npx skills add EximAgent/cliThen install the binary (standalone, no runtime required):
curl -fsSL https://install.eximagent.ai | sh # macOS / Linux
irm https://install.eximagent.ai/install.ps1 | iex # Windows (PowerShell)Auth:
eximagent login # device flow (browser pops, Google OAuth, token persists)
eximagent login --token <pat> # PAT for CI / unattended environmentsUse:
eximagent skill # canonical SKILL.md to stdout
eximagent whoami # verify auth
eximagent exim profile get # ground in user's defaults
eximagent <provider> <command> [--flag value ...]All output is newline-delimited JSON on stdout. Typed errors on stderr. --stream for long-running commands.
skills/eximagent/SKILL.md— the canonical skill that teaches your agent the full CLI surface, clarification-first pattern, and typed-error recovery. Served viaeximagent skilland vianpx skills add EximAgent/cli.eximagent-<platform>-<arch>— pre-built standalone binaries attached to each GitHub release. Mirrored byinstall.eximagent.ai. Supported targets:darwin-arm64,darwin-amd64,linux-arm64,linux-amd64,windows-amd64.install.sh— the curl-installer that picks the right binary for your platform.LICENSE— UNLICENSED. See LICENSE.
- CLI source. The CLI is a thin dispatcher; every command is one HTTPS call to the eximagent.ai API. Source is closed.
- Server source. The backend implements every trade-intelligence primitive. Closed.
- Site: https://eximagent.ai
- skills.sh listing: https://skills.sh/EximAgent/cli