About Claude Gateway
Claude Gateway is an MCP server in the Agents category: a self-hosted multi-agent gateway for Claude Code with custom personas, memory, and plugin-based channel support. It has been installed 0 times through Conduid.
Install
git clone https://github.com/0xMaxMa/claude-gatewayThis server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.
Ask AI
Ask AI about Claude Gateway
Powered by Claude · Grounded in docs
Security checks
- ·README presentNot checked yet.
- ·License declaredNot checked yet.
- ·Tests presentNot checked yet.
- ·Dependencies pinnedNot checked yet.
- ·No dynamic code executionNot checked yet.
- ·Scoped permissionsNot checked yet.
README
Claude Gateway
A self-hosted multi-agent gateway for Claude Code. Connect Claude agents to Telegram, HTTP APIs, and scheduled tasks — each agent runs in an isolated session with its own personality, memory, and tools.
Features
- Multi-agent — run multiple bots from a single gateway, each with isolated sessions
- Multi-channel MCP — modular tool system per channel (Telegram, Discord, Cron, Skills, extensible to Slack/WhatsApp)
- Agent skills — extensible skill system via SKILL.md files; agents can create, delete, and install skills from URLs at runtime with hot-reload
- Agent identity — define personality, tone, and rules via workspace markdown files
- Live status messages — real-time status updates showing tool usage, thinking, and progress
- Typing indicators — continuous typing animation while the agent is working (Telegram and Discord)
- Streaming API — SSE (Server-Sent Events) endpoint for real-time response streaming
- Auto-forward — agent text output automatically forwarded to Telegram even without explicit reply tool calls
- Heartbeat / scheduled tasks — cron-based proactive messages and recurring tasks via HEARTBEAT.md + REST API; agent jobs deliver output to Telegram, Discord, or both
- Long-term memory — persistent memory system across sessions
- Config auto-migration — automatic schema migration when config format changes
- Access control — allowlist, open, or pairing-based Telegram access policies
- HTTP API — REST API with key-based auth for external integrations
- Session persistence — conversation history saved and restored across restarts
Requirements
- Node.js 18+
- Claude Code CLI v2.1.0+ installed and authenticated —
channels modeis required (claude --version) - Bun — runs the MCP server subprocess (
mcp/server.ts) - A bot token per agent — Telegram (from @BotFather) or Discord (from Discord Developer Portal)
Quick Start
1. Install
git clone <repo>
cd claude-gateway
npm install
npm run build
2. Install MCP server dependencies
The gateway MCP server uses Bun with its own package.json. Install once:
make mcp-install # runs: cd mcp && bun install
This installs grammy (Telegram Bot API) and @modelcontextprotocol/sdk into mcp/node_modules/.
3. Create an agent
The interactive wizard handles everything — workspace files, config, bot token, and pairing:
make create-agent
Steps:
- Choose an agent name
- Describe the agent — Claude generates workspace files
- Review and accept generated files
- Choose a channel: Telegram or Discord
- Paste the bot token — wizard verifies it automatically
- Send any message to the bot to complete pairing
- Agent sends a welcome message
4. Start the gateway
npm start
Config is auto-loaded from ~/.claude-gateway/config.json. Bot tokens are auto-loaded from ~/.claude-gateway/agents/<id>/.env.
Workspace Files
Each agent has a workspace directory with markdown files that define its behaviour:
| File | Required | Purpose |
|---|---|---|
AGENTS.md |
Yes | Core identity, rules, capabilities |
IDENTITY.md |
No | Agent name, emoji, avatar, personality identity |
SOUL.md |
No | Tone, personality, speaking style |
USER.md |
No | User profile and preferences |
MEMORY.md |
No | Long-term memory (auto-appended by the agent) |
HEARTBEAT.md |
No | Scheduled/proactive tasks |
skills/ |
No | Directory of SKILL.md files — agent-specific skills |
On startup (and on any file change), all files are assembled into CLAUDE.md which the Claude subprocess reads as its system prompt. Do not edit CLAUDE.md directly.
Configuration Reference
Config lives at ~/.claude-gateway/config.json (or set GATEWAY_CONFIG env var / --config flag).
{
"configVersion": "1.0.0",
"gateway": {
"logDir": "~/.claude-gateway/logs",
"timezone": "Asia/Bangkok",
"api": {
"keys": [
{
"key": "${MY_API_KEY}",
"description": "Internal app",
"agents": ["alfred"]
},
{
"key": "${ADMIN_API_KEY}",
"description": "Admin",
"agents": "*"
}
]
}
},
"agents": [
{
"id": "alfred",
"description": "Personal assistant",
"workspace": "~/.claude-gateway/agents/alfred/workspace",
"env": "",
"session": {
"idleTimeoutMinutes": 30,
"maxConcurrent": 20
},
"telegram": {
"botToken": "${ALFRED_BOT_TOKEN}"
},
"claude": {
"model": "claude-sonnet-4-6",
"dangerouslySkipPermissions": true,
"extraFlags": []
},
"heartbeat": {
"rateLimitMinutes": 30
}
}
]
}
session
| Field | Default | Description |
|---|---|---|
idleTimeoutMinutes |
30 |
Kill idle session subprocess after N minutes of inactivity |
maxConcurrent |
20 |
Max simultaneous active sessions per agent; oldest idle is evicted when exceeded |
dmPolicy
Access policy is configured per-channel in the agent's workspace state file, not in config.json:
| File | Path |
|---|---|
| Telegram | ~/.claude-gateway/agents/<id>/workspace/.telegram-state/access.json |
| Discord | ~/.claude-gateway/agents/<id>/workspace/.discord-state/access.json |
| Value | Behaviour |
|---|---|
allowlist |
Only user IDs in allowFrom can DM the agent (default) |
open |
Anyone can DM the agent |
pairing |
New users DM the bot to receive a pairing code; approve with npm run pair |
dangerouslySkipPermissions
Set to true for all agents running headless (no interactive terminal). Without it the agent cannot use MCP tools like sending Telegram replies.
gateway.api.keys
Each key has a key string (supports ${ENV_VAR} interpolation), an optional description, and an agents field — either an array of agent IDs or "*" for full access. Keys support both Authorization: Bearer and X-Api-Key headers.
Bot tokens
Tokens are stored per-agent at ~/.claude-gateway/agents/<id>/.env and auto-loaded at startup. Use ${AGENT_BOT_TOKEN} syntax in config to reference them, or set them as shell environment variables.
Architecture
┌─────────────────────────────────────────────────┐
│ Claude Gateway │
│ │
Telegram Bot A ──► TelegramReceiver(A) ──► AgentRunner(A) ─┬─► Session(chat:111) ──► Claude + MCP
├─► Session(chat:222) ──► Claude + MCP
Telegram Bot B ──► TelegramReceiver(B) ──► AgentRunner(B) ──┴─► Session(chat:333) ──► Claude + MCP
│
HTTP Client ──► POST /api/v1/.../messages ────────────────┴─► Session(api:uuid) ──► Claude
(sync JSON or SSE stream)
│ │
│ GatewayRouter (/health, /status, /ui, /api) │
│ CronScheduler (HEARTBEAT.md + REST API) │
│ TypingManager (live status indicators) │
└─────────────────────────────────────────────────┘
┌───────────────────────────────────┐
│ MCP Server (per session) │
│ mcp/server.ts │
│ │
│ telegram_reply │
│ telegram_react │
│ telegram_edit_message │
│ telegram_download_attachment │
│ cron_list / cron_create / ... │
│ skill_create / skill_delete / ... │
└───────────────────────────────────┘
Each agent runs a dedicated TelegramReceiver (single poller per bot token) and a session pool of isolated Claude subprocesses — one per chat or API session. Each session gets its own MCP server (mcp/server.ts) exposing channel-specific tools (Telegram reply, react, cron management, skill management). Sessions persist history via SessionStore, so Claude remembers the conversation even after idle restart.
Session Pool
Each agent maintains a session pool — a separate Claude subprocess per chat ID (Telegram) or session UUID (API). Sessions are fully isolated: Claude sees only its own conversation history with no cross-session leakage.
TelegramReceiver (1 per agent, spawned by gateway)
- single long-poll connection per bot token
- handles access control (allowlist / pairing)
- runs as: bun mcp/tools/telegram/receiver-server.ts (RECEIVER_MODE)
- POSTs incoming messages to AgentRunner callback
AgentRunner (session pool manager)
├── SessionProcess(chat:111) ──► Claude subprocess + MCP server (SEND_ONLY)
├── SessionProcess(chat:222) ──► Claude subprocess + MCP server (SEND_ONLY)
└── SessionProcess(api:uuid) ──► Claude subprocess (no MCP — API-only)
MCP Tool System
The MCP server (mcp/server.ts) uses a modular multi-channel architecture. Each channel is a separate module implementing ChannelModule or ToolModule interfaces:
| Module | Interface | Tools | Purpose |
|---|---|---|---|
telegram |
ChannelModule |
telegram_reply, telegram_react, telegram_edit_message, telegram_download_attachment |
Send messages, reactions, edit messages in Telegram |
discord |
ChannelModule |
discord_reply, discord_react, discord_edit_message |
Send messages, reactions, edit messages in Discord |
cron |
ToolModule |
cron_list, cron_create, cron_delete, cron_run, cron_get_runs |
Manage scheduled jobs via gateway REST API |
skills |
ToolModule |
skill_create, skill_delete, skill_install |
Create, delete, and install agent skills at runtime |
Tools are prefixed by channel name to avoid collisions. Each module controls its own visibility and lifecycle.
Adding a new channel (e.g. Slack) means implementing ChannelModule interface in mcp/tools/slack/module.ts and registering it in server.ts.
Process Modes
| Mode | Process | Behaviour |
|---|---|---|
TELEGRAM_RECEIVER_MODE |
receiver-server.ts |
Polls Telegram, handles commands, POSTs to callback — no MCP |
TELEGRAM_SEND_ONLY |
server.ts |
Exposes MCP tools (telegram_*, cron_*) — no polling |
Session Persistence
History is persisted to SessionStore (.jsonl files) after each message. When a session is spawned after an idle restart, history is injected into the initial prompt so Claude resumes the conversation seamlessly.
Live Status Messages
While an agent is working, the gateway sends real-time status updates to Telegram showing what the agent is doing:
☑️ : 🧠 Analyzing the codebase structure...
☑️ : 📖 Reading: src/agent/runner.ts
☑️ : 🔍 Searching for: "sendMessage" in src/
🕐 : ✏️ Editing: mcp/tools/telegram/typing.ts
(elapsed: 2m 30s)
- Tool tracking — each tool call is displayed with a descriptive label (e.g.
📖 Reading: config.ts,⚡ Running: npm test) - History — previous steps shown with ☑️, current step with 🕐
- Thinking — agent's reasoning shown with 🧠
- Elapsed time — total time since the agent started working
- Auto-cleanup — status message is deleted when the agent finishes
Status updates are sent every 5-10 seconds (first update at 5s, then every 10s).
HTTP API
When gateway.api.keys is configured, the gateway exposes a REST API for external clients.
Pass API key via X-Api-Key: <key> or Authorization: Bearer <key> header.
Endpoints:
| Method | Path | Description |
|---|---|---|
GET |
/api/v1/agents |
List agents accessible by the provided key |
POST |
/api/v1/agents/:agentId/messages |
Send a message — sync JSON or SSE stream |
GET |
/api/v1/crons |
List cron jobs accessible by key |
GET |
/api/v1/crons/status |
Scheduler status |
POST |
/api/v1/crons |
Create a scheduled job |
GET |
/api/v1/crons/:id |
Get a single job |
PUT |
/api/v1/crons/:id |
Update a job |
DELETE |
/api/v1/crons/:id |
Delete a job |
POST |
/api/v1/crons/:id/run |
Trigger a job manually |
GET |
/api/v1/crons/:id/runs |
Get run history |
See API.md for full reference with request/response schemas and curl examples.
File Structure
Project
claude-gateway/
├── Makefile ← make start / create-agent / update-agent / pair / mcp-install
├── config.template.json ← config template (source of truth for migration)
│
├── src/ ← Gateway core (TypeScript, compiled to dist/)
│ ├── index.ts ← entrypoint — loads config, starts agents
│ ├── types.ts ← shared TypeScript types
│ ├── logger.ts ← structured logging with per-agent files
│ │
│ ├── agent/ ← Agent management
│ │ ├── runner.ts ← session pool manager (spawn/evict sessions)
│ │ ├── workspace-loader.ts ← assembles CLAUDE.md from workspace files + skills
│ │ └── context-isolation.ts ← context guard for session isolation
│ │
│ ├── session/ ← Session lifecycle
│ │ ├── process.ts ← single Claude subprocess per session
│ │ ├── store.ts ← persist/load conversation history (.jsonl)
│ │ └── compactor.ts ← summarise + compact old history
│ │
│ ├── telegram/ ← Telegram integration
│ │ ├── receiver.ts ← spawns TelegramReceiver subprocess per agent
│ │ └── markdown.ts ← markdown/HTML utilities
│ │
│ ├── api/ ← HTTP API
│ │ ├── gateway-router.ts ← HTTP server (/health, /status, /ui, /api)
│ │ ├── router.ts ← REST API router (sync + SSE streaming)
│ │ ├── auth.ts ← API key auth middleware (timing-safe)
│ │ └── cron-router.ts ← Cron API router (auth + agent-scoped access)
│ │
│ ├── config/ ← Configuration
│ │ ├── loader.ts ← load + validate config.json
│ │ ├── migrator.ts ← auto-migration for config schema changes
│ │ └── watcher.ts ← hot-reload config on file change
│ │
│ ├── cron/ ← Cron scheduling
│ │ ├── manager.ts ← persistent cron job manager (REST + agentTurn)
│ │ └── scheduler.ts ← heartbeat task scheduler
│ │
│ ├── heartbeat/ ← Proactive tasks
│ │ ├── parser.ts ← parse HEARTBEAT.md YAML
│ │ └── history.ts ← track scheduled task execution
│ │
│ ├── skills/ ← Agent skills system
│ │ ├── index.ts ← re-exports (parser, loader, invoker, watcher)
│ │ ├── parser.ts ← parse SKILL.md frontmatter + body
│ │ ├── loader.ts ← load skills from directories, build registry
│ │ ├── invoker.ts ← detect /skill-name in messages, inject context
│ │ └── watcher.ts ← hot-reload skills on file changes (chokidar)
│ │
│ ├── memory/ ← Long-term memory
│ │ └── manager.ts ← memory persistence
│ │
│ ├── webhook/ ← Webhooks
│ │ └── manager.ts ← webhook event dispatch
│ │
│ └── ui/ ← Dashboard
│ └── web-ui.ts ← live HTML dashboard
│
├── scripts/
│ ├── create-agent.ts ← interactive agent creation wizard (with channel selection)
│ ├── create-agent-prompts.ts ← agent workspace generation prompts
│ ├── update-agent.ts ← update agent.md or manage channels (add/remove)
│ ├── interactive-select.ts ← interactive selection UI helper
│ ├── pair.ts ← approve channel pairing (Telegram / Discord)
│ └── setup-claude-settings.js ← enables channelsEnabled in Claude Code
│
└── mcp/ ← MCP server (runs in Bun, separate node_modules)
├── package.json ← dependencies: grammy, @modelcontextprotocol/sdk
├── server.ts ← MCP entry point — registers all tool modules
├── types.ts ← ChannelModule / ToolModule interfaces
├── channel-manager.ts ← module lifecycle (init, start, stop, restart)
├── router.ts ← route resolution + channel context rendering
│
└── tools/
├── telegram/ ← Telegram channel module
│ ├── module.ts ← ChannelModule: telegram_reply, react, edit, download
│ ├── receiver-server.ts ← standalone receiver (polling mode, no MCP)
│ ├── pure.ts ← markdown → Telegram HTML conversion
│ ├── typing.ts ← typing indicator state
│ └── skills/
│ ├── access/SKILL.md ← /telegram:access skill
│ └── configure/SKILL.md ← /telegram:configure skill
│
├── cron/ ← Cron tool module
│ ├── module.ts ← ToolModule: cron_list, create, delete, run, get_runs
│ ├── client.ts ← HTTP client for gateway cron REST API
│ └── skills/
│ └── cron/SKILL.md ← /cron skill
│
└── skills/ ← Skills tool module
├── module.ts ← ToolModule: skill_create, skill_delete, skill_install
└── handlers.ts ← skill CRUD + URL install handlers
Runtime data (~/.claude-gateway/)
~/.claude-gateway/
├── config.json ← gateway config
├── logs/
│ ├── alfred.log
│ └── warrior.log
├── shared-skills/ ← shared skills (synced to ~/.claude/skills/ on boot and on change)
│ └── <skill-name>/
│ └── SKILL.md ← skill definition (same format as agent skills)
└── agents/
└── alfred/
├── .env ← bot token (auto-created by wizard)
├── sessions/
│ └── <chat_id>.jsonl ← conversation history (SessionStore)
└── workspace/
├── CLAUDE.md ← auto-generated from workspace files, do not edit
├── AGENTS.md ← agent identity, rules, capabilities
├── IDENTITY.md ← name, emoji, avatar
├── SOUL.md ← tone, personality, speaking style
├── USER.md ← user profile and preferences
├── MEMORY.md ← long-term memory (auto-appended)
├── HEARTBEAT.md ← scheduled/proactive tasks
├── skills/ ← agent-specific skills (hot-reloaded)
│ └── <skill-name>/
│ └── SKILL.md ← skill definition with frontmatter
├── .sessions/ ← per-session MCP config
│ └── <session_id>/
│ └── mcp-config.json ← auto-generated MCP config for this session
├── .telegram-state/
│ └── access.json ← Telegram allowlist and pairing state
└── .discord-state/
└── access.json ← Discord allowlist and pairing state
Heartbeat / Scheduled Tasks
Define proactive tasks in HEARTBEAT.md:
tasks:
- name: morning-brief
cron: "0 8 * * *"
prompt: "Give a brief morning summary."
- name: check-in
interval: 6h
prompt: "Check if there are any reminders to send."
cron— standard 5-field cron expressioninterval— shorthand:30m,1h,6h,1d,1w- If the agent replies with
HEARTBEAT_OK(case-insensitive), no message is sent to Telegram rateLimitMinutesin config suppresses tasks if a proactive message was already sent recently (default: 30 min)
Agent Skills
Skills are reusable capabilities defined as SKILL.md files with YAML frontmatter. They are injected into the agent's system prompt and can be invoked via /skill-name commands.
Skill locations
| Location | Scope | Description |
|---|---|---|
workspace/skills/<name>/SKILL.md |
Per-agent | Agent-specific skills |
~/.claude-gateway/shared-skills/<name>/SKILL.md |
All agents | Shared skills — synced to ~/.claude/skills/ at boot and on change |
mcp/tools/<channel>/skills/<name>/SKILL.md |
All agents | Built-in channel skills (e.g. /telegram:access) |
SKILL.md format
---
name: my-skill
description: What this skill does
user_invocable: true # false = system-only, not shown to user
argument_description: "[args]" # optional, shown in /skill-name [args]
---
Skill instructions go here. Claude follows these instructions
when the user invokes /my-skill.
Runtime skill management
Agents can manage skills at runtime via MCP tools:
| Tool | Description |
|---|---|
skill_create |
Create a new skill in the workspace |
skill_delete |
Delete an existing skill |
skill_install |
Install a skill from a GitHub URL or raw URL |
Skills are hot-reloaded — changes to skill files are detected automatically and the skill registry is updated without restarting the session.
Shared skills sync
Skills placed in ~/.claude-gateway/shared-skills/ are automatically synced to ~/.claude/skills/ — the user-level directory that Claude Code scans for every session:
- At boot — gateway copies all shared skills before spawning any agent
- On change — any add, edit, or delete under
shared-skills/triggers a re-sync - Cleanup — each synced skill is tagged with a
.sharedmarker file; if a skill is removed fromshared-skills/, the marker is used to delete the stale copy from~/.claude/skills/automatically (user-installed skills without the marker are never touched)
This means adding a skill to shared-skills/ makes it available to all agents without per-agent setup or a gateway restart.
Config Auto-Migration
When the config schema changes (new fields added in config.template.json), the gateway automatically detects and migrates your config.json:
- Preserves all existing values
- Adds missing fields with defaults from the template
- Prompts for confirmation before writing (use
--auto-migrateto skip) - Tracks schema version for future migrations
Pairing New Users
- Set
dmPolicytopairinginaccess.json:{ "dmPolicy": "pairing" } - Ask the user to DM the bot — they receive a 6-character pairing code
- Approve it:
npm run pair -- --agent=alfred --code=abc123 - The bot confirms pairing within 5 seconds
- Lock down after everyone is paired:
npm run pair -- --agent=alfred --policy=allowlist
To manage channels (add/remove Telegram or Discord) on an existing agent:
make update-agent # choose "Manage channels"
Telegram Groups
The bot can respond in Telegram groups and supergroups. Groups must be registered before the bot will respond.
Step 1 — Add the bot to the group as Admin
Add your bot to the group and promote it to Admin. Without admin rights, Telegram does not deliver group messages to the bot — it will appear online but never respond.
Minimum required admin permission: "Read Messages" (or any admin role — even the most restricted works).
Step 2 — Get the group ID
Forward any message from the group to @userinfobot. It will reply with the chat ID — a negative number like -1001234567890.
Alternatively, send a message in the group and visit:
https://api.telegram.org/bot<YOUR_BOT_TOKEN>/getUpdates
Look for "chat":{"id": ...} in the result.
Step 3 — Register the group
Edit the agent's access.json directly:
~/.claude-gateway/agents/<your-agent-id>/workspace/.telegram-state/access.json
Add the group under "groups":
{
"dmPolicy": "allowlist",
"allowFrom": ["..."],
"groups": {
"-1001234567890": {
"requireMention": true,
"allowFrom": []
}
}
}
Set "requireMention": false if you want the bot to respond to all messages without needing an @mention.
To restrict to specific members only, add their Telegram user IDs to "allowFrom".
Step 4 — Start chatting
@mention the bot in the group (or reply to one of its messages). Changes to access.json take effect immediately — no restart needed.
Managing groups
Edit access.json to add or remove entries from the "groups" object. The gateway re-reads the file on every inbound message.
Note:
/telegram:accessskill is available when running inside a gateway agent session (TELEGRAM_STATE_DIR is set automatically). For standalone terminal use, editaccess.jsondirectly as shown above.
Optional — Let the bot read all messages (disable Privacy Mode)
By default, Telegram bots in groups only receive messages that start with / or directly @mention the bot. If you want the bot to respond to every message without an @mention (and have set "requireMention": false in access.json), you also need to disable Privacy Mode at the bot level:
- Open @BotFather
- Send
/setprivacy - Select your bot
- Choose Disable
This is a bot-level setting — it applies to all groups the bot joins. If @mention-only is fine, skip this step and keep "requireMention": true.
Telegram Commands
Once paired, the following bot commands are available in a private chat:
Session management
| Command | Description |
|---|---|
/session |
Show current session info (name, message count, context %) |
/sessions |
List all sessions with inline keyboard — switch or delete |
/new <name> |
Create a new session, optionally with a name |
/rename <name> |
Rename the current session |
/clear |
Clear current session history (with confirmation) |
/compact |
Summarise old history and keep only recent messages |
/stop |
Interrupt the in-flight turn (gateway sends SIGINT to the subprocess) |
/restart |
Graceful session restart — shows a confirmation button; confirms and notifies when the session is back online |
Agent
| Command | Description |
|---|---|
/model |
Show the current AI model |
/models |
Switch AI model — shows an inline keyboard; selecting a model triggers a graceful restart and notifies when back online |
Account
| Command | Description |
|---|---|
/start |
Pairing instructions |
/status |
Check your pairing state |
/help |
Show available commands |
Monitoring
The gateway runs an HTTP server on port 3000 (set PORT env var to change):
| Endpoint | Description |
|---|---|
GET /health |
All agent IDs and running status |
GET /status |
JSON stats per agent (sessions, uptime) |
GET /ui |
Live HTML dashboard (auto-refreshes every 5s) |
POST /api/v1/agents/:id/messages |
Send a message to an agent (requires API key) |
GET /api/v1/agents |
List accessible agents (requires API key) |
/api/v1/crons/* |
Cron job management — see API.md |
Development
# Build TypeScript
npm run build
# Unit tests only (fast, no external deps)
npm run test:unit
# Integration tests
npm run integration
# All tests
npm test
# Type check without building
npm run typecheck
Troubleshooting
Agent fails to start
- Check workspace path exists and contains
AGENTS.md - Check
dangerouslySkipPermissions: trueis set in config - Check logs in
~/.claude-gateway/logs/<id>.log
Agent not responding to messages
- Verify
dmPolicyinaccess.json— ifallowlist, check the user's ID is inallowFrom - Ensure no other process is polling the same bot token (causes 409 Conflict)
- Only
TelegramReceiverpolls Telegram — MCP session subprocesses run inSEND_ONLYmode (no polling)
Session loses memory after restart
- History is persisted in
~/.claude-gateway/agents/<id>/sessions/<chat_id>.jsonl - If the file is missing, the session starts fresh (no error)
Personality not applied
CLAUDE.mdis auto-regenerated from workspace files on startup and on any file change- Trigger a reload by saving any
.mdfile in the workspace
Heartbeat not firing
- Verify
HEARTBEAT.mdYAML is valid - Check cron expression (5 fields:
min hour day month weekday) - Check rate limit — default 30 min between proactive messages
API returns 403
- Check the key value matches exactly (env var interpolation uses
${VAR}syntax) - Verify the key's
agentslist includes the target agent ID, or set"agents": "*"
MCP tools not working (telegram_reply, cron_list, etc.)
- Ensure
mcp/node_modules/exists — runmake mcp-installif not - Check that
mcp-config.jsonis generated in the session directory - Verify Bun is installed (
bun --version)
Status messages not appearing in Telegram
- First status update is sent after 5 seconds — very fast tasks may complete before it fires
- Check that the MCP server is running in
SEND_ONLYmode for session subprocesses - Verify the bot has permission to send messages in the chat
README mirrored from the source repository 4 months ago. The original is authoritative.