A personal AI chief-of-staff that lives in Telegram.
Every chat topic is its own isolated Claude Code agent β with a persona, persistent memory, and a web of cron jobs that quietly keep an eye on your inbox, calendar, and life.
Claw is my Telegram-based personal assistant. This repo is its open skeleton β the full engine and architecture, with my personal data and integrations stripped out so you can build your own.
It's not a wrapper around a chat completion. Each Telegram forum topic spawns a long-lived, resumable Claude Code session with its own persona and memory, so "Coding," "Coach," and "Finance" are genuinely different agents that never bleed into each other. A nightly rollup distills the day's notes into durable memory, and a fleet of cron jobs turns the bot from reactive to proactive β triaging email, drafting calendar events, and nudging you before you ask.
flowchart TD
You(["You Β· Telegram"]) <--> Router["grammY router<br/>auth Β· queue Β· media Β· streaming"]
Router -->|"one isolated session<br/>per forum topic"| T1["Coding<br/>Claude Code session"]
Router --> T2["Coach<br/>Claude Code session"]
Router --> T3["General<br/>Claude Code session"]
T1 --> Mem["Layered memory<br/>daily notes β nightly rollup β<br/>MEMORY.md + per-topic"]
T2 --> Mem
T3 --> Mem
Mem -.->|"reinjected at session start"| Router
Crons["Cron + heartbeat jobs"] -->|"inbox Β· calendar Β·<br/>proactive nudges"| Router
π Deeper dive: ARCHITECTURE.md β turn lifecycle + the memory pipeline, with diagrams.
- π§ Per-topic isolated agents β each forum topic is its own persistent Claude Code session with its own persona and memory file. No cross-talk, no context soup.
- π Memory that survives restarts β append-only daily notes get promoted by a nightly
LLM rollup into a lean long-term
MEMORY.mdplus per-topic files. The bot wakes up knowing you. - β° Proactive, not just reactive β a shared cron runner fires scheduled Claude jobs (inbox triage, calendar, digests, health) and routes the results to the right topic.
- π Personas & guest mode β per-topic personas, prefix routing, and a guest mode you
can
@mentionfrom any chat the bot isn't even in. - β»οΈ Self-maintaining β Claw can read and edit its own source, rebuild, and restart; smart auto-clear summarizes idle sessions instead of nuking them mid-thought.
- π§ Production-hardened details β model-alias indirection, periodic context re-injection, streaming Telegram message edits, and systemd units with reliability drop-ins + failure alerts.
claw-skeleton/
βββ CLAUDE.md # the blueprint β what the assistant is and how it remembers
βββ .env.example # the environment variables you fill in
βββ src/
β βββ bot/ # grammY router, middleware, commands, guest mode
β βββ claude/ # session lifecycle: runner, auto-clear, checkpoints, prompt builder
β βββ telegram/ # sender β markdown β Telegram HTML, streaming edits
β βββ util/ # logger, sanitizer, graceful shutdown
β βββ config.ts # topics, personas, models, constants
β βββ index.ts # entry point
βββ cron-scripts/ # shared cron runner framework + libs
βββ cron-prompts/ # example scheduled-job prompts
βββ systemd/ # unit + timer patterns (bot, cron, reliability drop-ins)
βββ personas/ # example personas (default, coding, coach)
Start with CLAUDE.md β it's the spec that defines what the assistant
is, how it remembers, and how it behaves. The TypeScript is the engine; CLAUDE.md is the soul.
# 1. create a Telegram bot via @BotFather, make a topic-enabled supergroup
# 2. wire it up
cp .env.example .env # add BOT_TOKEN, CHAT_ID, OWNER_USER_ID
npm install
# edit src/config.ts -> your topic IDs, personas, routing
# write personas/*.md and cron-prompts/*.txt for your own life
npm run build && npm start
# 3. (optional) install the systemd units to run it 24/7 + on a scheduleThis is a sanitized skeleton, not a turnkey app: the personal integrations (email, calendar, finance, healthβ¦) and data were removed by design. Point your own Claude Code at the repo and have it flesh out the parts you want β that's the whole idea.
MIT β see LICENSE.