Skip to content

Install and onboard

This tutorial walks you through installing Takopi, creating a Telegram bot, and generating your config file.

What you'll have at the end: A working ~/.takopi/takopi.toml with your bot token, chat ID, workflow settings, and default engine.

1. Install Python 3.14 and uv

Install uv, the modern Python package manager:

curl -LsSf https://astral.sh/uv/install.sh | sh

Install Python 3.14 with uv:

uv python install 3.14

2. Install Takopi

uv tool install -U takopi

Verify it's installed:

takopi --version

You should see something like 0.19.0.

3. Install agent CLIs

Takopi shells out to agent CLIs. Install the ones you plan to use (or install them all now):

Codex

npm install -g @openai/codex

Takopi uses the official Codex CLI, so your existing ChatGPT subscription applies. Run codex and sign in with your ChatGPT account.

Claude Code

npm install -g @anthropic-ai/claude-code

Takopi uses the official Claude CLI, so your existing Claude subscription applies. Run claude and log in with your Claude account. Takopi defaults to subscription billing unless you opt into API billing in config.

OpenCode

npm install -g opencode-ai@latest

OpenCode supports logging in with Anthropic for your Claude subscription or with OpenAI for your ChatGPT subscription, and it can connect to 75+ providers via Models.dev (including local models).

Pi

npm install -g @mariozechner/pi-coding-agent

Pi can authenticate via a provider login or use API billing. You can log in with Anthropic (Claude subscription), OpenAI (ChatGPT subscription), GitHub Copilot, Google Cloud Code Assist (Gemini CLI), or Antigravity (Gemini 3, Claude, GPT-OSS), or choose API billing instead.

4. Run onboarding

Start Takopi without a config file. It will detect this and launch the setup wizard:

takopi

You'll see:

step 1: bot token

? do you already have a bot token from @BotFather? (yes/no)

If you don't have a bot token yet, answer n and Takopi will show you the steps.

5. Create a Telegram bot

If you answered n, follow these steps (or skip to step 6 if you already have a token):

  1. Open Telegram and message @BotFather
  2. Send /newbot or use the mini app
  3. Choose a display name (the obvious choice is "takopi")
  4. Choose a username ending in bot (e.g., my_takopi_bot)

BotFather will congratulate you on your new bot and will reply with your token:

Done! Congratulations on your new bot. You will find it at
t.me/my_takopi_bot. You can now add a description, about
section and profile picture for your bot, see /help for a
list of commands.

Use this token to access the HTTP API:
123456789:ABCdefGHIjklMNOpqrsTUVwxyz

Keep your token secure and store it safely, it can be used
by anyone to control your bot.

Copy the token (the 123456789:ABC... part).

Keep your token secret

Anyone with your bot token can control your bot. Don't commit it to git or share it publicly.

6. Enter your bot token

Paste your token when prompted:

? paste your bot token: ****
  validating...
  connected to @my_takopi_bot

Takopi validates the token by calling the Telegram API. If it fails, double-check you copied the full token.

7. Pick your workflow

Takopi shows three workflow previews:

ongoing chat

make happy wings fit
done · codex · 8s · step 3
carry heavy creatures
done · codex · 12s · step 5
/new
add flower pin
done · codex · 6s · step 2

topics per branch

happian @memory-boxtakopi @master
store artifacts forever
done · codex · 10s · step 4
also freeze them
done · codex · 6s · step 2

reply to continue

make it go back in time
done · codex · 8s · step 3
codex resume abc123
add reconciliation ribbon
done · codex · 3s · step 1
codex resume def456
done · codex · 8s · step 3
more than once
done · codex · 8s · step 5
codex resume abc123

? how will you use takopi?
 ❯ assistant (ongoing chat, /new to reset)
   workspace (projects + branches, i'll set those up)
   handoff (reply to continue, terminal resume)

Each choice automatically configures conversation mode, topics, and resume lines:

Workflow Best for What it does
assistant Single developer, private chat Chat mode (auto-resume), topics off, resume lines hidden. Use /new to start fresh.
workspace Teams, multiple projects/branches Chat mode, topics on, resume lines hidden. Each topic binds to a repo/branch.
handoff Terminal-based workflow Stateless (reply-to-continue), resume lines always shown. Copy resume line to terminal.

Not sure which to pick?

Start with assistant (recommended). You can always change settings later in your config file.

8. Connect your chat

Depending on your workflow choice, Takopi shows different instructions:

For assistant or handoff:

step 3: connect chat

  1. open a chat with @my_takopi_bot
  2. send /start
  waiting for message...

For workspace:

step 3: connect chat

  set up a topics group:
  1. create a group and enable topics (settings → topics)
  2. add @my_takopi_bot as admin with "manage topics"
  3. send any message in the group
  waiting for message...

Once Takopi receives your message:

  got chat_id 123456789 for @yourusername (private chat)

Workspace requires a forum group

If you chose workspace and the chat isn't a forum-enabled supergroup with proper bot permissions, Takopi will warn you and offer to switch to assistant mode instead.

9. Choose your default engine

Takopi scans your PATH for installed agent CLIs:

step 4: default agent

takopi runs these agents on your computer. switch anytime with /agent.

  engine    status         install command
  ───────────────────────────────────────────
  codex     ✓ installed
  claude    ✓ installed
  opencode  ✗ not found    npm install -g opencode-ai@latest
  pi        ✗ not found    npm install -g @mariozechner/pi-coding-agent

? choose default agent:
 ❯ codex
   claude

Pick whichever you prefer. You can always switch engines per-message with /codex, /claude, etc.

10. Save your config

step 5: save config

? save config to ~/.takopi/takopi.toml? (yes/no)

Press y or Enter to save. You'll see:

✓ setup complete. starting takopi...

Takopi is now running and listening for messages!

What just happened

Your config file lives at ~/.takopi/takopi.toml. The exact contents depend on your workflow choice:

~/.takopi/takopi.toml
default_engine = "codex"
transport = "telegram"

[transports.telegram]
bot_token = "..."
chat_id = 123456789
session_mode = "chat"       # auto-resume
show_resume_line = false    # cleaner chat

[transports.telegram.topics]
enabled = false
scope = "auto"
~/.takopi/takopi.toml
default_engine = "codex"
transport = "telegram"

[transports.telegram]
bot_token = "..."
chat_id = -1001234567890    # forum group
session_mode = "chat"
show_resume_line = false

[transports.telegram.topics]
enabled = true              # topics on
scope = "auto"
~/.takopi/takopi.toml
default_engine = "codex"
transport = "telegram"

[transports.telegram]
bot_token = "..."
chat_id = 123456789
session_mode = "stateless"  # reply-to-continue
show_resume_line = true     # always show resume lines

[transports.telegram.topics]
enabled = false
scope = "auto"

This config file controls all of Takopi's behavior. You can edit it directly to change settings or add advanced features.

Full config reference →

Re-running onboarding

If you ever need to reconfigure:

takopi --onboard

This will prompt you to update your existing config (it won't overwrite without asking).

Troubleshooting

"error: missing takopi config"

Run takopi in a terminal with a TTY. The setup wizard only runs interactively.

"failed to connect, check the token and try again"

Make sure you copied the full token from BotFather, including the numbers before the colon.

Bot doesn't respond to /start

If you're still in onboarding, your terminal should show "waiting...". If you accidentally closed it, run takopi again and restart the setup.

"error: already running"

You can only run one Takopi instance per bot token. Find and stop the other process, or remove the stale lock file at ~/.takopi/takopi.lock.

Next

Learn more about conversation modes and how your workflow choice affects follow-ups.

Conversation modes →