Releases: nextlevelbuilder/goclaw-cli
Releases · nextlevelbuilder/goclaw-cli
Claude Code Skill v0.1.0
First release of the GoClaw Claude Code Skill.
Lets Claude Code autonomously invoke the goclaw CLI to manage your GoClaw
AI agent gateway: list agents, run exec shell commands on the server,
inspect traces, rotate credentials, and more.
Install
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 && shasum -a 256 -c goclaw-skill.sha256)
tar xzf /tmp/goclaw-skill.tar.gz -C /tmp
/tmp/claude-skill/install.shRequires goclaw binary on PATH and Claude Code installed at ~/.claude/.
Highlights
- 16 progressive-disclosure reference files covering 38 top-level command groups
- 3-mode install-time permission selector (full wildcard / readonly-only / no-patch)
- Safe
settings.jsonmerge via quoted Python3 heredoc with env-var injection - SHA256 integrity verification for tarball
check-drift.shvalidator — every flag documented is verified againstcmd/*.go- Refuses streaming/interactive commands (chat,
logs tail,teams events) - Prompts user confirmation before destructive ops
Permission modes
| Mode | Rule | Safety |
|---|---|---|
| 1 — full | Bash(goclaw:*) |
Trust machine. Requires TTY confirm. |
| 2 — readonly | 30 enumerated rules (list, get, status, …) |
Default recommendation |
| 3 — no patch | Prints JSON snippet, user copies manually | Automated default under curl | bash |
Verify tarball
sha256 665786c70a120218f6cae1c4afc4283e0b67299326fb3a87eddfd6a0a130e9e0 goclaw-skill.tar.gz
Source: claude-skill/ directory on branch feat/claude-skill-v0.1.
Limitations
- macOS / Linux only (Windows aborts with a message — use WSL).
- Streaming commands (
chatinteractive,logs tail,teams events) not wrapped. - Claude may still hallucinate flags not in references — run the bundled
check-drift.shfromgoclaw-clirepo root to validate.
License: MIT.
v0.3.0
v0.2.0
0.2.0 (2026-03-26)
Feature
- cli: add multi-tenant support, 12 new command groups, modularize oversized files (96068ba)
Bug Fixes
- cli: escape fmt.Sprintf path params in grants and instances (259424e)
- cli: use url.Values for query params, fix import ordering (62953c9)
- cli: escape flag-sourced values in DELETE paths, fix storage consistency (e64fb3f)
- cli: address Claude code review findings (276f8f5)
Styles
- cli: fix import ordering, add plans/ to .gitignore (d51196d)
v0.1.1
v0.1.0
0.1.0 (2026-03-16)
Feature
- ci: add semantic-release for automatic versioning (7a9e35a)
- cli: add api-keys and api-docs command groups (4fb4179)
- add unit tests, CLAUDE.md, and multi-platform CI (2eec9bd)
- add project documentation and mark all plan phases completed (3cd11a5)
- add CI/CD workflows for build, test, and release (1eb5362)
- initial GoClaw CLI implementation (9bf67a0)
Bug Fixes
- address critical security and reliability issues (ea50bd7)
Documentation
- add api-keys and api-docs command documentation (7935a52)