Drive the real claude binary from Telegram — on your machine, on the Claude subscription you already pay for. No API key, no extra bill.
curl -fsSL claudebot.ve.ke/install.sh | bash
Anthropic's “no third-party harness” rule is about where your token goes. Never copy it into another client, gateway, SDK, or raw API call.
claudebot never reads the token. It sends text to the real claude process and reads JSON back — Claude Code owns auth.
Keep it single-user and within normal interactive use.
Gate it to your own Telegram ID. Letting others use your plan is account sharing.
Let Claude Code handle auth. Don't lift credentials into another tool.
The service keeps the bot reachable; the use stays interactive — you on one end, not scheduled jobs.
Run claudebot only on a machine you trust. Scope the working directory. Keep it DM-only. Not a public bot.
Empty list means nobody gets access. DM-only handlers ignore groups and channels.
Attached and fetched content is treated as data, not instructions to follow.
Bot tokens are stripped from the child environment. .env and state stay private.
The code is small, readable, and MIT-licensed. Audit the parts that touch your machine.
curl -fsSL claudebot.ve.ke/install.sh | bash
Linux: run loginctl enable-linger $USER once so the service survives logout.
Yes — claudebot runs Claude Code on your machine, so the machine must be awake to answer. The service (launchd / systemd) keeps the bot alive through crashes and reboots, and every chat resumes exactly where it left off.
Yes. /cd ~/path moves a chat to another project and sticks across restarts. For two fully separate bots — say work and personal — claudebot --instance work setup stands one up with its own token, state, and service.
Only the Telegram chat traffic. Inference goes through Claude Code exactly as it does at your desk — no third-party servers in between, and no API key anywhere.
No. That's account sharing, and it hands them a shell on your machine. One Telegram ID — yours.
Nothing beyond the Claude plan you already pay for. claudebot is free and MIT-licensed.
It depends how you use it. Stay single-user, never extract the token, no unattended loops — see Subscription use.