outlit-cli

Use when running Outlit CLI commands, setting up Outlit for AI agents, authenticating with Outlit, querying customer data from the terminal, or troubleshooting Outlit CLI issues. Triggers on outlit auth, outlit setup, outlit customers, outlit sql, or any @outlit/cli usage.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "outlit-cli" with this command: npx skills add outlitai/outlit-agent-skills/outlitai-outlit-agent-skills-outlit-cli

Outlit CLI

Customer intelligence from the terminal. Install: npm i -g @outlit/cli

All commands support --help for full option details.

Command Reference

CommandPurpose
outlit auth loginStore API key (interactive or --key for CI)
outlit auth logoutRemove stored key
outlit auth statusValidate current key
outlit auth whoamiPrint masked key (for scripting)
outlit auth signupOpen signup in browser
outlit customers listList/filter customers with risk signals
outlit customers get <id|domain>Customer details with optional --include users,revenue,recentTimeline,behaviorMetrics
outlit customers timeline <id|domain>Activity timeline with channel/event filters
outlit users listList/filter users across customers
outlit facts <customer>Signals and insights for a customer
outlit search '<query>'Natural language search across customer context
outlit sql '<query>'SQL against analytics DB (or --query-file)
outlit schema [table]Describe analytics tables and columns
outlit setupAuto-detect and configure AI agents
outlit setup <agent>Configure specific agent: cursor, claude-code, claude-desktop, vscode, gemini, openclaw
outlit doctorDiagnose CLI version, auth, connectivity, agents
outlit completions <shell>Generate shell completions (bash/zsh/fish)

Authentication

API key format: ok_ + 32+ alphanumeric characters.

Credential priority (first match wins):

  1. --api-key flag
  2. OUTLIT_API_KEY env var
  3. ~/.config/outlit/credentials.json (written by outlit auth login)

Quick auth for CI/scripts:

outlit auth login --key ok_your_key_here
# or
export OUTLIT_API_KEY=ok_your_key_here

Output Behavior

  • Interactive terminal: Pretty tables with colors
  • Piped stdout: Automatic JSON (no flag needed)
  • --json flag: Force JSON in any context

This means outlit customers list | jq '.items[].domain' just works.

SQL Tables

Available in outlit sql and outlit schema:

TableContains
eventsAll tracked events
customer_dimensionsCustomer attributes and metrics
user_dimensionsUser attributes and journey stages
mrr_snapshotsRevenue over time

Always run outlit schema first to discover columns before writing SQL.

Common Filters

Most list commands share these filters (check --help for specifics):

  • --billing-status PAYING|TRIALING|CHURNED|NONE
  • --no-activity-in 7d|14d|30d|90d / --has-activity-in
  • --mrr-above <cents> / --mrr-below <cents>
  • --search <term>
  • --limit <1-100> / --cursor <token> for pagination
  • --order-by <field> / --order-direction asc|desc

Common Patterns

At-risk paying customers:

outlit customers list --billing-status PAYING --no-activity-in 30d

High-value customer details:

outlit customers get acme.com --include users,revenue,behaviorMetrics

Search for churn signals:

outlit search 'complaints about pricing' --customer acme.com

Revenue query:

outlit sql 'SELECT customer_id, mrr_cents FROM mrr_snapshots ORDER BY mrr_cents DESC LIMIT 10'

Setup all detected agents at once:

outlit setup --yes

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Automation

outlit-sdk

No summary provided by upstream source.

Repository SourceNeeds Review
Automation

outlit-mcp

No summary provided by upstream source.

Repository SourceNeeds Review
Automation

outlit

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

openclaw-version-monitor

监控 OpenClaw GitHub 版本更新,获取最新版本发布说明,翻译成中文, 并推送到 Telegram 和 Feishu。用于:(1) 定时检查版本更新 (2) 推送版本更新通知 (3) 生成中文版发布说明

Archived SourceRecently Updated