Full-stack exoclaw bundle — config, provider registry, and one-line wiring
Project description
exoclaw-nanobot
Full-stack exoclaw bundle — wires provider, conversation, all workspace/cron/message/spawn/MCP tools, subagent manager, CLI channel, and heartbeat into a single ready-to-run agent.
Install
pip install exoclaw-nanobot
CLI
exoclaw-nanobot
Reads config from ~/.nanobot/config.json (or NANOBOT_* env vars). Drops into an interactive REPL.
Programmatic usage
import asyncio
from exoclaw_nanobot.app import create, ExoclawNanobot
async def main() -> None:
bot: ExoclawNanobot = await create()
await bot.run()
asyncio.run(main())
create() accepts an optional pre-built Config or config_path. It returns an ExoclawNanobot whose run() method starts the cron service, heartbeat, agent loop, and CLI REPL, and tears everything down cleanly on exit.
Adding channels (Slack, Telegram, Discord, Email, Matrix, WhatsApp)
Each channel lives in its own package — install only what you need:
pip install 'exoclaw-nanobot[slack]'
pip install 'exoclaw-nanobot[slack,telegram,discord]'
pip install 'exoclaw-nanobot[all-channels]'
Then enable each channel in your config:
{
"channels": {
"slack": {
"enabled": true,
"botToken": "xoxb-...",
"appToken": "xapp-...",
"allowFrom": ["U01ABC..."]
},
"telegram": {
"enabled": true,
"token": "123456:abcdef...",
"allowFrom": ["123456789"]
}
}
}
create() reads config.channels.<name> for each section, instantiates the matching channel class, and starts it alongside the CLI. If a channel is enabled: true but its package isn't installed, startup fails with a clear pointer to the right pip install command.
Per-channel config fields live in exoclaw_nanobot.config.schema — SlackConfig, TelegramConfig, DiscordConfig, EmailConfig, MatrixConfig, WhatsAppConfig.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file exoclaw_nanobot-0.32.0.tar.gz.
File metadata
- Download URL: exoclaw_nanobot-0.32.0.tar.gz
- Upload date:
- Size: 60.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6519b64effb2d96db3530d02f477ac55c276a1b474dbed7a9a7e9ec27e84f8d4
|
|
| MD5 |
43d958243a630686a9073107f30e0fdc
|
|
| BLAKE2b-256 |
f96757dfbc737527dcd2ba3f6d0de49cc2fb5650d2e7f7599ff4c63a045bb601
|
File details
Details for the file exoclaw_nanobot-0.32.0-py3-none-any.whl.
File metadata
- Download URL: exoclaw_nanobot-0.32.0-py3-none-any.whl
- Upload date:
- Size: 22.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
69e281173a9cec3aa2248f2be9f714312980ea1c7a0ef4d980f79e8c8289406a
|
|
| MD5 |
c824e7720615759670792440ef387975
|
|
| BLAKE2b-256 |
294bf9c17934d86846652df5b5a0d1ef87b9484b37b96c0b3979b5c9a59a0d69
|