一键导入
release
Cut a new zelligent release — bump version, tag, push, wait for CI, update GitHub release notes, and update the Homebrew formula
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Cut a new zelligent release — bump version, tag, push, wait for CI, update GitHub release notes, and update the Homebrew formula
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use zelligent CLI to spawn Claude subagents into isolated git worktrees, each opened in a new Zellij tab. Trigger when asked to spawn agents, run parallel Claude instances, or split tasks across separate branches/tabs.
Drive tmux sessions, windows, panes, and commands directly via the tmux CLI.
Build and install zelligent (CLI + Zellij plugin) locally for development
| name | release |
| description | Cut a new zelligent release — bump version, tag, push, wait for CI, update GitHub release notes, and update the Homebrew formula |
| allowed-tools | Bash, Read, Edit, Grep |
Read VERSION, increment the patch number (or as instructed), and write it back.
git add VERSION
git commit -m "Bump version to <version>"
git tag v<version>
git push origin main --follow-tags
git push origin v<version>
If the tag already exists on the remote (from a previous failed attempt), delete it first:
gh release delete v<version> --yes 2>/dev/null
git push origin :refs/tags/v<version>
git push origin v<version>
gh run watch $(gh run list --workflow=release.yml --limit 1 --json databaseId -q '.[0].databaseId') --exit-status
Timeout: 5 minutes.
Get the SHA256 from the release body:
gh release view v<version> --json body -q .body | head -1
Get the list of PRs merged since the last release:
gh pr list --state merged --search "merged:>$(gh release view <prev-version> --json publishedAt -q .publishedAt | cut -dT -f1)" --json number,title | jq -r '.[] | "- \(.title) (#\(.number))"'
Then update the release body with gh release edit v<version> --notes "...". Follow the format of previous releases:
SHA256: `<sha256>`
## Install
\`\`\`
brew install pcomans/zelligent/zelligent
zelligent doctor
\`\`\`
## What's Changed
<categorized list of changes>
**Full Changelog**: https://github.com/pcomans/zelligent/compare/<prev-version>...v<version>
The Homebrew tap repo is at /Users/philipp/code/homebrew-zelligent/.
cd /Users/philipp/code/homebrew-zelligent && git pullFormula/zelligent.rb: update version and sha256cd /Users/philipp/code/homebrew-zelligent && git add Formula/zelligent.rb && git commit -m "Update zelligent to v<version>" && git push
Confirm the release is live:
gh release view v<version> --json tagName,name -q '.tagName'