Skip to content

Getting Started

You need one thing: an Anthropic API key. This is how lynox connects to Claude (the AI).

  1. Go to console.anthropic.com and create an account
  2. Click API KeysCreate Key
  3. Copy the key (starts with sk-ant-)

Anthropic charges per usage — a typical business day costs $1–5. You can set a spending limit in their console.


The easy way — no technical skills needed

Section titled “The easy way — no technical skills needed”

Use the deploy page on lynox.ai/deploy. It walks you through everything in your browser:

  1. Enter your API key — paste the key you just created
  2. Set up Telegram (optional) — create a bot in 2 minutes, the page detects your chat ID automatically
  3. Pick a provider — Hetzner (€3.79/mo), DigitalOcean ($6/mo), or Vultr ($5/mo)
  4. Copy the generated script and paste it into your provider’s setup page

Your credentials never leave your browser — everything is generated client-side.

After 2–3 minutes, your server is ready. Open Telegram, message your bot, done.


Once lynox is running, talk to it like you would to a colleague — via Telegram or the terminal.

Simple things to start with:

  • “Check my emails and tell me what’s important”
  • “Summarize this document” (attach a file in Telegram)
  • “Research [topic] and give me the key points”
  • “What meetings do I have this week?” (after connecting Google)

lynox remembers everything in the knowledge graph automatically. The more you use it, the more it knows about your business.


After setup, you don’t need to manage anything. lynox takes care of itself:

WhatHowYou need to do
UpdatesChecked daily, applied automatically via WatchtowerNothing
EncryptionAES-256-GCM, key generated during setupNothing
RestartsAuto-restart on crash or server rebootNothing
KnowledgeGrows with every conversationJust keep talking to lynox
BackupsTo Google Drive via /backup commandSet up once in Telegram
Bug reportsAnonymized error reports to help improve lynoxOpt-in after first task (one tap)

Your server runs 24/7 with zero maintenance.


Once lynox runs on a server, it works in the background — even when you’re not talking to it:

  • “Every Monday at 9am, summarize my emails from last week” — runs automatically, delivered to Telegram
  • “Monitor competitor.com for pricing changes” — checks in the background, alerts you when something changes
  • “Pull KPIs from the tracking sheet every Friday” — scheduled, hands-free
  • Every conversation builds the knowledge graph — lynox gets smarter over time

All integrations are optional. Add them whenever you’re ready:

IntegrationWhat it doesHow to set up
TelegramUse lynox from your phone — voice, text, photos, documentsSet up during deploy, or see Telegram Guide
Google WorkspaceGmail, Sheets, Drive, Calendar, DocsSend /google in Telegram — authorize in your browser, done
Web ResearchLive web search for current informationAdd Tavily API key during deploy (free: 1K searches/month). For privacy, disable “Allow use of query data” in Tavily settings.
Any REST APIConnect lynox to any service you useAPI Store — describe the API, lynox learns it

Send /google to your bot in Telegram. lynox will send you a link and a code:

  1. Open the link on your phone or computer
  2. Sign in with your Google account and enter the code
  3. Authorize access — lynox confirms in Telegram when it’s done

That’s it — Gmail, Sheets, Drive, Calendar, and Docs are ready. No terminal needed.


Already tried lynox locally? Everything you’ve built — knowledge, config, conversation history — lives in one folder. To move it to your server:

  1. Use your provider’s web console (browser-based terminal) to access your server
  2. Upload the ~/.lynox/ folder from your computer
  3. Restart lynox: the knowledge, config, and history are picked up automatically

See Docker Deployment for details.


After setup, explore these features via Telegram — just ask lynox or use the commands:

FeatureHow to startWhat it does
Gmail & CalendarSend /google in TelegramRead emails, draft replies, check meetings
Contacts & CRMJust mention people and dealslynox tracks clients, deals, and follow-ups automatically
Web Research”Research [topic]“Live web search, structured summaries
Backups”Set up a backup” or /backupEncrypted backups to Google Drive
Scheduled Tasks”Do this every Monday at 9am”Runs in the background, sends results to Telegram
Connect any Service”I use [service], here’s the API docs”lynox learns any API from a description
Cost LimitsSend /cost in TelegramSee your spending, set daily limits

Everything builds on the knowledge graph — the more you use lynox, the better it understands your business. Facts, relationships, preferences, and decisions are remembered automatically across every conversation.


The wizard runs automatically when no API key is found. Re-run anytime with npx @lynox-ai/core --init.

Step 1 — API Key: Paste your Anthropic key. Verified live against the API. Encryption is enabled automatically (AES-256-GCM).

Step 2 — Integrations (all optional): A checklist where you pick what to connect. Arrow keys to move, Space to toggle, Enter to confirm.

IntegrationWhat it does
Google WorkspaceGmail, Sheets, Drive, Calendar, Docs via OAuth
TelegramMobile access — use lynox from your phone
Web ResearchLive web research via Tavily (free: 1K/month)

Skip all with Enter or Esc — add anytime later via /google, /telegram, or /config.

For users who already have a server and prefer the command line:

Terminal window
curl -fsSL https://lynox.ai/setup-server.sh | sh

The script installs Docker, collects your API key and Telegram token interactively, generates an encryption key, and starts lynox in a hardened container. See Docker Deployment for manual setup options.

WhatWhereSurvives restart?
API key + config~/.lynox/config.jsonYes
Vault key~/.lynox/.envYes (auto-loaded)
Run history~/.lynox/history.dbYes (encrypted)
Knowledge~/.lynox/memory/Yes
Terminal window
# Interactive REPL
npx @lynox-ai/core
# One-shot task
npx @lynox-ai/core "Summarize the last 5 commits"
# Piped input
cat report.csv | npx @lynox-ai/core "Find anomalies"
# Re-run setup
npx @lynox-ai/core --init

See CLI Reference for all commands and flags.

“Node.js 22+ required” — Install via nodejs.org or nvm. Docker users don’t need Node.js locally.

“Cannot reach api.anthropic.com” — Warning only. The key is validated on first actual use. Check network/proxy settings.

API key rejected — Must start with sk-ant-, be at least 20 characters, and be active in console.anthropic.com.

Telegram bot not responding — Check that no other instance uses the same bot token. Use your provider’s web console to check logs if needed.