Skip to content

Releases: nextlevelbuilder/goclaw-cli

Claude Code Skill v0.1.0

17 Apr 10:02

Choose a tag to compare

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.sh

Requires 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.json merge via quoted Python3 heredoc with env-var injection
  • SHA256 integrity verification for tarball
  • check-drift.sh validator — every flag documented is verified against cmd/*.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 (chat interactive, logs tail, teams events) not wrapped.
  • Claude may still hallucinate flags not in references — run the bundled
    check-drift.sh from goclaw-cli repo root to validate.

License: MIT.

v0.3.0

08 Apr 05:09
c742f5d

Choose a tag to compare

0.3.0 (2026-04-08)

Feature

  • cli: add remaining missing commands for full API coverage (e53e275)

Bug Fixes

  • cli: address round 3 Claude review findings (0b8417d)
  • cli: address round 2 Claude review findings (74a1f1c)
  • cli: address Claude code review findings (072642c)

v0.2.0

26 Mar 10:15
b0e192c

Choose a tag to compare

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

16 Mar 07:57

Choose a tag to compare

0.1.1 (2026-03-16)

Bug Fixes

  • ci: pass GITHUB_TOKEN env var to goreleaser hook (392122a)

v0.1.0

16 Mar 07:50

Choose a tag to compare

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)