
Company News
Free Business Plan Upgrades for Open Source Maintainers
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.
@seldonframe/cli
Advanced tools
Terminal client for the SeldonFrame builder marketplace — discover, inspect, and run agents and tools, and check your prepaid wallet.
A terminal client for the SeldonFrame builder marketplace. Discover, inspect, and run agents and tools, and check your prepaid wallet — straight from the shell, or from an agent framework that shells out.
It's the command-line twin of the SeldonFrame MCP discover → inspect → run flow: same endpoints, same auth, same honest pricing.
npm install -g @seldonframe/cli
Then teach your IDE agent the whole build-and-sell flow:
set up https://seldonframe.com/SKILL.md
Every command that hits the API uses your active workspace bearer key as Authorization: Bearer wst_….
seldonframe keys add --label main --key wst_xxxxxxxx
The first key you add becomes active. Keys are stored locally (see Key storage) and are never printed in full — only ever masked (wst_…xxxx).
| Command | What it does | Endpoint |
|---|---|---|
keys add --label <l> --key <wst_…> | Store a key (first = active) | local |
keys list | List stored keys (masked) | local |
keys activate <label> | Switch the active key | local |
keys remove <label> | Remove a key | local |
discover -q <query> [--limit <n>] | Search the catalog → ranked agents + tools, each with its price | POST /api/v1/build/discover |
inspect --type <agent|tool> --id <id> | Show an entry's input schema, pricing, and docs | POST /api/v1/build/inspect |
run --type <agent|tool> --id <id> -i <json|@file> | Run an entry → result + honest billing | POST /api/v1/build/run |
wallet balance | Your prepaid wallet balance + accrued earnings | GET /api/v1/build/wallet/balance |
--version, -V | Print the version | — |
--help, -h | Print usage | — |
Add --json to any command to emit raw JSON for piping/scripting.
# Search the marketplace
seldonframe discover -q "send an email to a customer" --limit 5
# Look at how to call a tool
seldonframe inspect --type tool --id GMAIL_SEND_EMAIL
# Run an agent with an inline JSON message
seldonframe run --type agent --id ace-receptionist \
-i '{"message":"Do you do emergency calls?"}'
# Run a tool with input from a file
seldonframe run --type tool --id GMAIL_SEND_EMAIL -i @payload.json
# Check your wallet (as JSON)
seldonframe wallet balance --json
A run returns a billing block. The CLI relays it exactly as the API reports it — it invents no charge:
Billing:
cost: $0.10 (100000 micro-USD)
charged: no
(cost recorded, not charged)
charged reflects the real wallet/flag state from the server. Successful runs accrue cost; errored runs are never billed. When your prepaid wallet can't cover a run, the API returns 402 and the run does not execute — the CLI prints a top-up hint.
| Variable | Purpose | Default |
|---|---|---|
SELDONFRAME_API_BASE_URL | Override the API base | https://app.seldonframe.com |
SELDONFRAME_CONFIG_DIR | Override where keys are stored | OS config dir (below) |
Keys live in a single JSON file, keys.json, under your OS config directory:
%APPDATA%\seldonframe\keys.json~/Library/Application Support/seldonframe/keys.json$XDG_CONFIG_HOME/seldonframe/keys.json (or ~/.config/seldonframe/keys.json)The file is written with 0600 permissions where the OS honors it. The CLI never echoes a full key to stdout, stderr, or --json output.
| Status | What you'll see |
|---|---|
| no key | No active key. Run seldonframe keys add … |
401 | Unauthorized — run seldonframe keys add with a fresh wst_ key |
402 | Insufficient balance — top up at app.seldonframe.com/build/wallet |
429 | Rate limited. Wait a moment and try again. |
| offline / bad base URL | Could not reach <base> … Check your connection or SELDONFRAME_API_BASE_URL. |
Node.js >= 18 (uses the built-in fetch). Zero runtime dependencies.
MIT
FAQs
Terminal client for the SeldonFrame builder marketplace — discover, inspect, and run agents and tools, and check your prepaid wallet.
The npm package @seldonframe/cli receives a total of 4 weekly downloads. As such, @seldonframe/cli popularity was classified as not popular.
We found that @seldonframe/cli demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.

Security News
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.

Security News
During a UK cyber test, a Mythos 5 agent used sockpuppets, social engineering, and prompt injection to try to get a maintainer to merge malware.