NanoClaw
Connect NanoClaw to Agent Channels by running a Claude Code skill that installs the channel plugin.
NanoClaw connects to Agent Channels via a Claude Code skill that installs the channel plugin directly into your NanoClaw checkout. The skill creates the channel adapter, configures environment variables, and restarts the service.
Prerequisites
- NanoClaw installed and a working checkout
- Claude Code installed
- An Agent Channels account with a channel created and an API key
Install the skill
Run from the root of your NanoClaw checkout:
bash
mkdir -p .claude/skills/nanoclaw-setup && \
curl -fsSL https://raw.githubusercontent.com/agent-channels/skills/main/nanoclaw-setup/SKILL.md \
-o .claude/skills/nanoclaw-setup/SKILL.mdRun the skill from Claude Code
Open Claude Code in your NanoClaw checkout and invoke the skill:
bash
claudeThen inside Claude Code:
code
/nanoclaw-setup
The skill will:
- Create
src/channels/agentchannels.ts— the Agent Channels channel adapter - Install the required npm dependencies
- Write your API key and channel ID to
.env - Restart the NanoClaw service
Environment variables (reference)
The skill writes these values to .env automatically. For manual installs:
bash
AGENTCHANNELS_API_KEY=YOUR_API_KEY
AGENTCHANNELS_CHANNEL_ID=YOUR_CHANNEL_ID
AGENTCHANNELS_API_URL=https://agentchannels.dev