Skip to main content
Orbyt
Products
Products
Orbyt Jobs
The job search CRM. Free forever.
Orbyt Intelligence
AI compensation data, and the API behind it.
Orbyt One
One account. Every Orbyt product.
Research lab
Orbyt CollectiveAn agent leadership team, an audit harness, and governance layer
The lab
Orbyt Labs
The skunkworks: the agent org, iOS, Apple Watch, Vision Pro
By your situation
Job Search Tracks
15 tracks for your exact moment
For Recruiters
Hiring and comp benchmarking
Start without a card
Playground
Run a live query
MCP server
Three steps into Claude Code
API docs
Endpoints, auth, and limits
What one account means
One login for Jobs and Intelligence.
One bill, one payment method.
One profile that follows you.
Developers
Build
Developer Hub
Start here
Orbyt API
The platform API
Jobs API Docs
23 endpoints, MCP native
Intelligence API
20 endpoints, Decision-Ready
Try
MCP Server
Wired into Claude Code in three steps
Playground
Engine response shapes with cURL
Try It Live
One call, one real response
Webhooks
Events and delivery
Reference
Reference
The full index
Glossary
Every term, defined
Methodology
How the numbers are made
Status
Live service health
Resources
Learn
Interview Prep
Company-by-company question sets
AI Skills Lab
The skills that pay in 2026
Guides
Long-form career playbooks
Blog
What we are building, in the open
Tools and data
Free Tools
Calculators and generators, no signup
Salary Explorer
3,445 roles across 81 cities
Job Board
Curated AI-era roles
Compensation Reports
Free summary PDF
Data Catalog
Every role, city, and engine
Companies
54 leveling frameworks
International
The US, UK, and Canada
Help
Support
Help center and contact
Compare
Orbyt against the alternatives
Books
Start reading
The books
The story in order
Read the opening
Free, no email required
The series
Book 1: Cold Start
Available now
Book 2: Unfair Advantage
Writing
Book 3: Human Heartbeat
Coming
Book 4: Without Me
Future
Book 5: Observer Effect
Future
Receipts
Building in Public
The numbers behind the books
Pricing
Company
Who we are
About
A family of AI products, and why they exist
Leadership
One human decides. AI agents advise.
Values
The principles behind every build decision
Creed
Here is to the relentless ones. The company creed
The story
Labs
The Skunkworks. iOS, Apple Watch, Vision Pro.
Press
Media kit, logos, and inquiries
Contact
Email the team
Log inStart
Pricing
Products
Orbyt JobsOrbyt IntelligenceOrbyt One
Research lab
Orbyt Collective
The lab
Orbyt Labs
Developers
Build
Developer HubOrbyt APIJobs API DocsIntelligence API
Try
MCP ServerPlaygroundTry It LiveWebhooks
Reference
ReferenceGlossaryMethodologyStatus
Resources
Learn
Interview PrepAI Skills LabGuidesBlog
Tools and data
Free ToolsSalary ExplorerJob BoardCompensation ReportsData CatalogCompaniesInternational
Help
SupportCompare
Calculators and tools
Salary CalculatorTake-Home CalculatorTotal Comp CalculatorCompare OffersSkills ImpactSalary Projections 2030Resume ScoreCover Letter GeneratorSalary WidgetUnemployment CalculatorAI Skills Assessment
Books
Start reading
The booksRead the opening
The series
Book 1: Cold StartBook 2: Unfair AdvantageBook 3: Human HeartbeatBook 4: Without MeBook 5: Observer Effect
Receipts
Building in Public
Company
Who we are
AboutLeadershipValuesCreed
The story
LabsPressContact
StartAlready have an account? Log in
  1. Home/
  2. Orbyt Intelligence/
  3. CLI
@orbyt/cli · macOS · Linux · Windows · Free to start. Pro from $99/mo

Orbyt Intelligence CLI.

Terminal-first access to six AI engines. TTY-friendly output, JSON mode for scripts, MCP stdio bundled, webhook tunneling, full parity with the @orbyt/intelligence SDK.

API docsMCP integration

Install.

The CLI is in private preview and not yet on a public package registry. Everything it does runs today over the REST API, which you can call from any shell. Public npm, Homebrew, and curl installers land at general availability.

Generate a key in the dashboard, then call the API directly. The API docs have copy-paste examples in cURL, JavaScript, and Python.

Authentication and config.

Run orbyt login and paste your API key when prompted. Keys are stored at ~/.orbyt/config.json with mode 0600 (owner-only read/write). The key is re-used across every command in the session.

$ orbyt login ✓ Paste your API key (starts with intelligence_live_ or intelligence_test_): ✓ Key validated. Tier: pro. Scopes: intelligence:read, skills:read, market:read. ✓ Saved to ~/.orbyt/config.json (0600)

In CI/CD, skip orbyt login and pass the key via env var or flag.

# CI/CD env var ORBYT_API_KEY=intelligence_live_... orbyt salaries calculate --role=ai-engineer --city=san-francisco --json # Explicit flag orbyt --api-key=intelligence_live_... salaries calculate --role=ai-engineer --json

Restricted API keys with per-engine scopes are supported. A key with only intelligence:read can hit orbyt salaries calculate but not orbyt salaries skills (which needs skills:read).

Common workflows.

Calculate a single salary
orbyt salaries calculate \ --role=ai-engineer \ --city=san-francisco \ --level=senior \ --company-stage=series-b
Pull skill premiums for a role
orbyt salaries skills \ --role=ai-engineer \ --city=san-francisco \ --limit=20 --json | jq '.data[] | { skill, premium, ci_low, ci_high }'
Project comp 4 years forward
orbyt salaries projections \ --role=llm-systems-engineer \ --city=san-francisco \ --through=2030
Compare two roles in the same city
orbyt salaries compare \ --role-a=ai-engineer \ --role-b=ml-engineer \ --city=san-francisco
Search the role catalog (with confidence scores)
orbyt salaries search "llm platform engineer" # Returns top-3 matches: # 1. role:llm-platform-engineer (confidence 0.97) # 2. role:llm-systems-engineer (confidence 0.78) # 3. role:ml-platform-engineer (confidence 0.62)
Resolve a data point's full provenance
orbyt lineage \ ai-engineer:san-francisco:median_base:2026-Q2 # Prints the full source trail: BLS OES record, H-1B LCA filings, # and the reconciliation rules.

MCP bundled.

Run orbyt mcp serve to start the MCP server over stdio, using your CLI's authentication. Drop this into Claude Code's mcp.jsonor any agent's MCP config to grant the agent access to the six locked Decision-Ready tools. The server negotiates official MCP protocol versions (2025-11-25 through 2024-11-05), so official-SDK clients such as Claude Code and Claude Desktop complete the handshake. No CLI install? The hosted endpoint works through the mcp-remote bridge; the MCP integration page has that config.

// .claude/mcp.json { "mcpServers": { "orbyt-intelligence": { "command": "orbyt", "args": ["mcp", "serve"], "env": { "ORBYT_API_KEY": "intelligence_live_..." } } } }

The CLI keeps the stdio process running, handles request cancellation and reconnection, and reports telemetry to a local log file at ~/.orbyt/mcp.log. See the MCP integration page for the full tool catalog and Decision-Ready Response shape.

Webhook tunneling for local dev.

When testing webhook handlers locally, run orbyt webhooks listen --forward-to=http://localhost:3000/api/webhooks/orbyt and the CLI opens a secure tunnel that forwards every webhook delivery from your Orbyt account to your local server. Signature headers and event payloads come through unchanged so signature verification works end-to-end.

$ orbyt webhooks listen --forward-to=http://localhost:3000/api/webhooks/orbyt ✓ Tunnel established: https://tunnel.orbytjobs.ai/u/a4f9b21c ✓ Forwarding to http://localhost:3000/api/webhooks/orbyt ✓ Ctrl-C to disconnect [2026-05-11T18:32:14Z] data.refreshed (req_a4f9b21c8e7d3f01) → 200 OK (42ms) [2026-05-11T18:35:02Z] data.corrected (req_b5g0c32d9f8e4g12) → 200 OK (28ms) [2026-05-11T18:37:55Z] data.refreshed (req_c6h1d43e0g9f5h23) → 200 OK (39ms)

Signatures are computed against your Orbyt webhook signing secret and forwarded unchanged. Run orbyt webhooks verify [event-id]to re-verify a specific delivery's signature after the fact.

Bulk operations.

For exports, batch lookups, and CSV ingestion, use orbyt salaries export. The command paginates the API, writes CSV or JSON Lines, and respects rate limits (auto-throttles when X-RateLimit-Remaining approaches zero).

# Export every salary point for AI roles across every tracked U.S. city orbyt salaries export \ --role-family=llm-and-agents \ --all-cities \ --output=ai_salaries_2026Q2.csv # Batch lookup from an input CSV orbyt salaries calculate \ --batch-input=requests.csv \ --output=results.csv \ --concurrency=4

Rate-limit handling is transparent. The CLI watches X-RateLimit-Remaining and X-RateLimit-Reset headers and auto-throttles. Failed requests retry up to 3 times with exponential backoff. Requests that ultimately fail are written to --failed-output=failures.csv so you can re-run them later.

CI/CD integration.

The CLI is designed for CI scripts. Exit codes are stable: 0 on success, 1 on API errors, 2 on usage errors, 3 on auth errors, 4 on rate-limit errors that exhausted retries. Pipelines can branch on the result.

# .github/workflows/refresh-comp-bands.yml - name: Refresh AI engineer comp bands env: ORBYT_API_KEY: ${{ secrets.ORBYT_API_KEY }} run: | orbyt salaries export \ --role=ai-engineer \ --cities=san-francisco,new-york,seattle,austin \ --output=bands.csv \ || (echo "::error::Orbyt export failed" && exit 1) git add bands.csv git commit -m "chore: refresh AI comp bands ($(date +%Y-%m-%d))"

For long-running jobs, use orbyt jobs submit and orbyt jobs status to offload export work to the server-side bulk endpoint. Available on the Ultra tier.

Reference.

The CLI's auto-generated reference is available at orbyt --help and orbyt <command> --help. Every command lists its arguments, flags, examples, and required scopes. The reference is also shipped as part of the npm package's README.

Source code at github.com/orbytjobs/cli. Issues at the same repo. Changelog at orbyt version --changelog.

See also.

API docs
Canonical API reference
MCP integration
Six tools, one endpoint
Webhooks
Event types and signature verification
All six engines
The full engine catalog

Last updated August 2026. Package: @orbyt/cli (private preview). Documentation auto-generated from the SDK's OpenAPI spec.

Intelligence

  • Explore Orbyt Intelligence
  • Overview
  • Pricing
  • MCP Server
  • Engines
  • Reports
  • Methodology
Compare

Get started

  • Sign Up
  • Sign In
  • Try It Live

More from Orbyt

  • Orbyt Jobs
  • Orbyt One
  • Developers

Product

  • Orbyt Jobs
  • Orbyt Intelligence
  • Orbyt One

Research Lab

  • Orbyt Collective

Developers

  • Orbyt API & MCP
  • Intelligence API & MCP
  • Claude Desktop
  • ChatGPT

Job Search

  • Career Changers
  • New Graduates
  • Recently Laid Off
  • Remote Workers
  • Executives
  • Replaced by AI

Guides

  • AI Skills Lab
  • AI & Tech Job Board
  • Compensation Reports

Free Tools

  • Resume Score
  • Cover Letter Generator
  • Interview Prep
  • Unemployment Calculator
  • AI Skills Assessment
  • Compare Offers

Reference

  • Job Search Glossary
  • Intelligence Glossary
  • Methodology

Salary Data

  • AI Salary Hubs
  • Salary Calculator
  • Take-Home Calculator
  • Total Comp Calculator

Compare

  • Orbyt vs Teal
  • Orbyt vs Huntr
  • Orbyt vs LinkedIn
  • Orbyt vs Levels.fyi
  • Orbyt vs Glassdoor

Account

  • Sign In
  • Sign Up

Company

  • About
  • Leadership
  • The Books
  • Support

Fun Stuff

  • Arcade Games
Product
  • Orbyt Jobs
  • Orbyt Intelligence
  • Orbyt One
Research Lab
  • Orbyt Collective
Developers
  • Orbyt API & MCP
  • Intelligence API & MCP
  • Claude Desktop
  • ChatGPT
  • All developer docs →
Job Search
  • Career Changers
  • New Graduates
  • Recently Laid Off
  • Remote Workers
  • Executives
  • Replaced by AI
  • All job types →
Guides
  • AI Skills Lab
  • AI & Tech Job Board
  • Compensation Reports
  • All guides →
Free Tools
  • Resume Score
  • Cover Letter Generator
  • Interview Prep
  • Unemployment Calculator
  • AI Skills Assessment
  • Compare Offers
  • All free tools →
Reference
  • Job Search Glossary
  • Intelligence Glossary
  • Methodology
  • All references →
Salary Data
  • AI Salary Hubs
  • Salary Calculator
  • Take-Home Calculator
  • Total Comp Calculator
  • All salary data →
Compare
  • Orbyt vs Teal
  • Orbyt vs Huntr
  • Orbyt vs LinkedIn
  • Orbyt vs Levels.fyi
  • Orbyt vs Glassdoor
  • All comparisons →
Company
  • About
  • Leadership
  • The Books
  • Support
Fun Stuff
  • Arcade Games
Sign InSign Up
Orbyt™

© 2026 Purecraft LLC  All rights reserved.

Privacy·Terms·Security·Trademark·Accessibility·DPA·Refund·Status·Sitemap

Orbyt, the Orbyt logo, and the Orbyt product names (Orbyt Jobs, Orbyt Intelligence, Orbyt Collective, Orbyt One, Orbyt Books, Orbyt Labs, Orbyt Arcade) are trademarks of Purecraft LLC. Product names, logos, and brands of others are the property of their respective owners. Orbyt is not affiliated with, sponsored by, or endorsed by any third party referenced on this site.