Lets the Claude Code agent drive goclaw — the CLI for GoClaw AI agent gateway servers — via natural-language prompts. Execute shell commands on remote servers, manage AI agents, approve execution requests, inspect chat sessions, and administer multi-tenant infrastructure, all without leaving Claude Code.
goclawbinary ≥ 0.3.0 in$PATH(install)- Claude Code CLI installed (
~/.claude/directory) - Authenticated: run
goclaw auth loginbefore using the skill - macOS or Linux (Windows via WSL)
RELEASE_URL="https://github.com/nextlevelbuilder/goclaw-cli/releases/download/skill-v0.1.0"
curl -fsSL "$RELEASE_URL/goclaw-skill.tar.gz" -o /tmp/goclaw-skill.tar.gz
curl -fsSL "$RELEASE_URL/goclaw-skill.sha256" -o /tmp/goclaw-skill.sha256
(cd /tmp && sha256sum -c goclaw-skill.sha256) # aborts on mismatch
tar xzf /tmp/goclaw-skill.tar.gz -C /tmp
/tmp/claude-skill/install.shgit clone https://github.com/nextlevelbuilder/goclaw-cli.git
cd goclaw-cli/claude-skill
./install.shOnce installed, just ask Claude:
- "list agents on goclaw" → runs
goclaw agents list --output json - "run
uname -aon goclaw server" → runsgoclaw tools invoke exec --param command="uname -a" - "what's my usage this week" → runs
goclaw usage summary --output json
Destructive operations always prompt you first. Claude will ask "Confirm delete agent xyz?" before running goclaw agents delete xyz --yes.
The installer offers three modes:
| Mode | Rule | When to use |
|---|---|---|
| 1 | Bash(goclaw:*) |
Trusted personal machine, full-auto |
| 2 | ~20 readonly rules | Shared / production machine (default) |
| 3 | Manual JSON snippet | You want to edit settings.json yourself |
Default in pipe mode (curl | bash): Mode 3 (safest).
- Interactive chat REPL (
goclaw chatwithout-m) — use single-shot logs tailstreaming — Claude will suggest polling insteadauth pairdevice pairing — run manually, skill refuses
rm -rf ~/.claude/skills/goclaw
# Then manually remove goclaw permissions from ~/.claude/settings.jsonTested against goclaw CLI ≥ 0.3.0. check-drift.sh catches flag drift between skill and CLI.
MIT — see LICENSE.