一键导入
release-cli
Release the aw CLI. Tags aw-vX.Y.Z on aweb, which triggers sync to awebai/aw repo + goreleaser (GitHub Releases) + npm (@awebai/aw).
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Release the aw CLI. Tags aw-vX.Y.Z on aweb, which triggers sync to awebai/aw repo + goreleaser (GitHub Releases) + npm (@awebai/aw).
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Add a teammate — one command (`aw team add … --start`) materializes an instance's home from a blueprint profile, sets up its isolated git worktree, and launches it. Use when a human asks for a teammate or assigned work needs one.
Check and set up the aweb channel connection. Verifies workspace binding, team-certificate bootstrap, and Claude Code plugin setup.
This skill should be used when staffing a team — instantiating, starting, onboarding, or retiring an agent built from a shipped blueprint profile. Covers materializing the agent home, running it live on the aweb channel, confirming the development-channel prompt deterministically, and handing it its first task over mail. The mechanics that turn a profile into a working teammate.
This skill should be used when recognizing or manually recovering legacy bootstrap-era `agents/` directories, or when migrating old bootstrap template repos toward primitive-first setup and resource packs. The `aw agents` command family is retired; do not recommend running it.
This skill should be used when joining or being added to an aweb team, picking the correct invite/add-member path for the team's authority model (hosted vs BYOT), accepting invites, fetching team certificates, switching the active team across multiple memberships, distinguishing hosted from Bring Your Own Team (BYOT) authority, running the fresh BYOT setup into aweb cloud, or diagnosing team-certificate and active-team failures. Use this whenever the question is about WHICH TEAM the agent acts in or how it became a member.
Remove a teammate — delete an instance's aweb identity and workspace, then its home, worktree, and branch. Use when an instance's job is done (a developer whose branch merged, a reviewer that gave its verdict).
| name | release-cli |
| description | Release the aw CLI. Tags aw-vX.Y.Z on aweb, which triggers sync to awebai/aw repo + goreleaser (GitHub Releases) + npm (@awebai/aw). |
| argument-hint | ["version"] |
The CLI release is triggered by pushing an aw-vX.Y.Z tag on aweb.
The workflow at .github/workflows/aw-release.yml syncs cli/go/
to the awebai/aw repo and tags it as vX.Y.Z, which triggers
goreleaser + npm publish in that repo.
Determine the version.
The CLI version matches the server version in server/pyproject.toml.
Usually tagged alongside a server release.
Run CLI tests.
cd cli/go && GOCACHE=/tmp/go-build go test ./cmd/aw ./chat ./awid ./run ./internal/conformance -count=1
Tag.
git tag aw-v<VERSION>
Push the tag.
git push origin aw-v<VERSION>
Verify publication.
# GitHub Releases (goreleaser binaries)
curl -s https://api.github.com/repos/awebai/aw/releases/tags/v<VERSION> | python3 -c "import sys,json; d=json.load(sys.stdin); print(d.get('name','NOT FOUND'), d.get('published_at','N/A'))"
# npm
curl -s https://registry.npmjs.org/@awebai/aw/latest | python3 -c "import sys,json; d=json.load(sys.stdin); print('npm:', d.get('version','N/A'))"
aw-release.yml workflow requires the AW_REPO_TOKEN secret.