Getting Started
Before You Start
Section titled “Before You Start”You need one thing: an Anthropic API key. This is how lynox connects to Claude (the AI).
- Go to console.anthropic.com and create an account
- Click API Keys → Create Key
- 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.
Deploy lynox
Section titled “Deploy lynox”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:
- Enter your API key — paste the key you just created
- Set up Telegram (optional) — create a bot in 2 minutes, the page detects your chat ID automatically
- Pick a provider — Hetzner (€3.79/mo), DigitalOcean ($6/mo), or Vultr ($5/mo)
- 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.
Your First Conversation
Section titled “Your First Conversation”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.
What Happens Automatically
Section titled “What Happens Automatically”After setup, you don’t need to manage anything. lynox takes care of itself:
| What | How | You need to do |
|---|---|---|
| Updates | Checked daily, applied automatically via Watchtower | Nothing |
| Encryption | AES-256-GCM, key generated during setup | Nothing |
| Restarts | Auto-restart on crash or server reboot | Nothing |
| Knowledge | Grows with every conversation | Just keep talking to lynox |
| Backups | To Google Drive via /backup command | Set up once in Telegram |
| Bug reports | Anonymized error reports to help improve lynox | Opt-in after first task (one tap) |
Your server runs 24/7 with zero maintenance.
What 24/7 Unlocks
Section titled “What 24/7 Unlocks”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
Connect Your Tools
Section titled “Connect Your Tools”All integrations are optional. Add them whenever you’re ready:
| Integration | What it does | How to set up |
|---|---|---|
| Telegram | Use lynox from your phone — voice, text, photos, documents | Set up during deploy, or see Telegram Guide |
| Google Workspace | Gmail, Sheets, Drive, Calendar, Docs | Send /google in Telegram — authorize in your browser, done |
| Web Research | Live web search for current information | Add Tavily API key during deploy (free: 1K searches/month). For privacy, disable “Allow use of query data” in Tavily settings. |
| Any REST API | Connect lynox to any service you use | API Store — describe the API, lynox learns it |
Connecting Google Workspace
Section titled “Connecting Google Workspace”Send /google to your bot in Telegram. lynox will send you a link and a code:
- Open the link on your phone or computer
- Sign in with your Google account and enter the code
- Authorize access — lynox confirms in Telegram when it’s done
That’s it — Gmail, Sheets, Drive, Calendar, and Docs are ready. No terminal needed.
Moving from Local to Server
Section titled “Moving from Local to Server”Already tried lynox locally? Everything you’ve built — knowledge, config, conversation history — lives in one folder. To move it to your server:
- Use your provider’s web console (browser-based terminal) to access your server
- Upload the
~/.lynox/folder from your computer - Restart lynox: the knowledge, config, and history are picked up automatically
See Docker Deployment for details.
What’s Next
Section titled “What’s Next”After setup, explore these features via Telegram — just ask lynox or use the commands:
| Feature | How to start | What it does |
|---|---|---|
| Gmail & Calendar | Send /google in Telegram | Read emails, draft replies, check meetings |
| Contacts & CRM | Just mention people and deals | lynox tracks clients, deals, and follow-ups automatically |
| Web Research | ”Research [topic]“ | Live web search, structured summaries |
| Backups | ”Set up a backup” or /backup | Encrypted 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 Limits | Send /cost in Telegram | See 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.
Technical Reference
Section titled “Technical Reference”Setup Wizard (local install)
Section titled “Setup Wizard (local install)”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.
| Integration | What it does |
|---|---|
| Google Workspace | Gmail, Sheets, Drive, Calendar, Docs via OAuth |
| Telegram | Mobile access — use lynox from your phone |
| Web Research | Live web research via Tavily (free: 1K/month) |
Skip all with Enter or Esc — add anytime later via /google, /telegram, or /config.
SSH Setup Script
Section titled “SSH Setup Script”For users who already have a server and prefer the command line:
curl -fsSL https://lynox.ai/setup-server.sh | shThe 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.
Persistence
Section titled “Persistence”| What | Where | Survives restart? |
|---|---|---|
| API key + config | ~/.lynox/config.json | Yes |
| Vault key | ~/.lynox/.env | Yes (auto-loaded) |
| Run history | ~/.lynox/history.db | Yes (encrypted) |
| Knowledge | ~/.lynox/memory/ | Yes |
CLI Quick Reference
Section titled “CLI Quick Reference”# Interactive REPLnpx @lynox-ai/core
# One-shot tasknpx @lynox-ai/core "Summarize the last 5 commits"
# Piped inputcat report.csv | npx @lynox-ai/core "Find anomalies"
# Re-run setupnpx @lynox-ai/core --initSee CLI Reference for all commands and flags.
Troubleshooting
Section titled “Troubleshooting”“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.