Lightweight Rust daemon that bridges messaging platforms to local AI CLI tools.
┌──────────────┐
│ Telegram │──┐
├──────────────┤ │ ┌─────────────────────────────────────────┐ ┌──────────────┐
│ WhatsApp │──┼────▶│ RustifyMyClaw │────▶ │ claude │
├──────────────┤ │ │ Security → Router → Executor → Format │◀─── │ codex │
│ Slack │──┘ └─────────────────────────────────────────┘ │ gemini │
└──────────────┘ └──────────────┘
AI CLI tools are powerful but terminal-bound. RustifyMyClaw lets you use them from Telegram, WhatsApp, or Slack without a web server, a database, or any infrastructure beyond the daemon itself. One config file, one binary, running in the background.
git clone https://github.com/Escoto/RustifyMyClaw.git
cd RustifyMyClaw
cargo build --release
mkdir -p ~/.rustifymyclaw
cp examples/config.yaml ~/.rustifymyclaw/config.yaml
# Edit config.yaml: set your directory, tokens, and allowed_users
export TELEGRAM_BOT_TOKEN=your_token_here
./target/release/rustifymyclawFull setup details: docs/configuration.md
Minimal config.yaml to get started:
workspaces:
- name: "my-project"
directory: "/home/user/projects/my-project"
backend: "claude-cli"
channels:
- kind: telegram
token: "${TELEGRAM_BOT_TOKEN}"
allowed_users:
- 123456789
output:
max_message_chars: 4000
file_upload_threshold_bytes: 51200
chunk_strategy: "natural"Tokens are never hardcoded — use ${ENV_VAR} interpolation. Full reference: docs/configuration.md
| Backend | Binary | Status |
|---|---|---|
| Claude Code | claude |
Stable |
| Codex | codex |
Stable |
| Gemini CLI | gemini |
Stable |
| Channel | Mode | Status |
|---|---|---|
| Telegram | Long-polling | Stable |
| Webhook | Stable | |
| Slack | Socket Mode | Stable |
| Command | Description |
|---|---|
/new |
Reset the current session |
/use <workspace> |
Switch to a different workspace |
/status |
Show current workspace, backend, and session state |
/help |
List available commands |
See docs/architecture.md for the full system design, data flow walkthrough, and extension points.
Contributions welcome. See CONTRIBUTING.md.
Licensed under Apache-2.0.