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/androidclaw.org 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.
tools
Cyclic shift execution engine. Plans tasks 3x daily (6 AM, 2 PM, 10 PM), decomposes them into granular steps, then executes via 15-minute cron cycles. Each cycle reads state files, picks the next step, executes it, writes results back. Errors are logged and skipped — never fatal. Planning uses Claude 4.6; execution uses GLM-5.
tools
Security middleware for all XMTP communications in EverClaw. Enforces guarded client usage with validation, integrity checks, and fail-closed security policies. Integrates approval flows for sensitive operations. Use when integrating XMTP messaging, configuring communication security, or auditing guarded client enforcement.
data-ai
Daily standup engine. Plans tasks 3x daily (6 AM, 2 PM, 10 PM) and delivers them for approval. Execution happens in the main session via direct conversation. Night shifts auto-approve carryover from earlier in the day.
tools
A helpful utility skill for agents