NanoClaw/.claude/skills/add-morpheus/SKILL.md
# Add [REDACTED] — Decentralized Inference for NanoClaw ## What This Does Connects NanoClaw to the EverClaw proxy for decentralized AI inference via the [REDACTED] network. The proxy runs on the host machine and is reachable from Docker containers. ## When To Use Use `/add-morpheus` to: - Enable hybrid mode (Claude orchestration + [REDACTED] inference) - Check proxy health - Switch default inference model ## Setup The EverClaw proxy must be running on the host (installed via `setup.sh`).
npx skillsauth add profbernardoj/everclaw-community-branches NanoClaw/.claude/skills/add-morpheusInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Connects NanoClaw to the EverClaw proxy for decentralized AI inference via the [REDACTED] network. The proxy runs on the host machine and is reachable from Docker containers.
Use /add-morpheus to:
The EverClaw proxy must be running on the host (installed via setup.sh).
Add to the NanoClaw container environment:
MORPHEUS_API_BASE=http://host.docker.internal:8083/v1
MORPHEUS_API_KEY=morpheus-local
MORPHEUS_DEFAULT_MODEL=glm-5
On Linux (native Docker), replace host.docker.internal with 172.17.0.1.
If NanoClaw uses Docker Compose, add extra_hosts to ensure the alias resolves:
services:
nanoclaw:
extra_hosts:
- "host.docker.internal:host-[REDACTED]"
environment:
- MORPHEUS_API_BASE=http://host.docker.internal:8083/v1
- MORPHEUS_API_KEY=morpheus-local
| Model | Use Case |
|-------|----------|
| glm-5 | Complex reasoning, coding, analysis (Opus 4.5-level) |
| glm-4.7-flash | Fast responses, lightweight tasks |
| kimi-k2.5 | General purpose |
| qwen3-235b | Large context, multilingual |
From inside the container:
curl -sf http://host.docker.internal:8083/health
From the host:
curl -sf http://127.0.0.1:8083/health
glm-5 or glm-4.7-flash as the model parametercd ~/.everclaw
node scripts/everclaw-wallet.mjs setup
node scripts/everclaw-wallet.mjs stake
MOR tokens are staked, not spent — returned when sessions close. Stake once, use forever.
testing
Agent-to-agent social coordination. Create a group, every member gets their own buddy bot. Bots talk over XMTP to coordinate real-world actions on behalf of their humans. Built on EverClaw + XMTP + ERC-8004.
data-ai
# Enable [REDACTED] — Decentralized Inference for ZeroClaw ## Proxy - **Endpoint:** `http://127.0.0.1:8083/v1` - **Auth:** `morpheus-local` - **Provider URL:** `custom:http://127.0.0.1:8083/v1` ## Models | Config Key | Model | Tier | |------------|-------|------| | `glm5` | GLM-5 (default) | HEAVY | | `flash` | GLM-4.7-flash | LIGHT | | `kimi` | Kimi K2.5 | STANDARD | | `qwen` | Qwen3-235b | STANDARD | ## Switch Model Edit `~/.zeroclaw/config.toml`: ```toml default_model = "glm-4.7-flash"
testing
# Enable [REDACTED] — Decentralized Inference for TinyClaw ## What This Does Switches TinyClaw agents to use the EverClaw proxy for [REDACTED] decentralized inference. ## When To Use Use `/enable-morpheus` to: - Verify the proxy is running and healthy - Check which models are available - Switch agent model assignments ## Proxy Details - **Endpoint:** `http://127.0.0.1:8083/v1` - **Auth:** `morpheus-local` (Bearer token) - **Health:** `curl -sf http://127.0.0.1:8083/health` ## Available Mo
data-ai
# Enable [REDACTED] — Decentralized Inference for PicoClaw ## Proxy Details - **Endpoint:** `http://127.0.0.1:8083/v1` - **Auth:** `morpheus-local` - **Health:** `curl -sf http://127.0.0.1:8083/health` ## Models | Name in Config | Model | Use Case | |----------------|-------|----------| | `morpheus-glm5` | GLM-5 | Heavy reasoning, coding (default) | | `morpheus-flash` | GLM-4.7-flash | Fast, lightweight | | `morpheus-kimi` | Kimi K2.5 | General purpose | ## Switch Default Model Edit `~/.pi