You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: correct README docker image tags and version badge; update bump-version skill
- Replace all :main image references with :latest (CI publishes :latest on main merges, not :main)
- Fix version badge from /release/ to /tag/ endpoint — CI creates git tags, not GitHub Releases
- Update stale version format note (now {major}.{minor}.{patch} via version.properties)
- Add Step 8 to bump-version skill: README pre-PR checklist for image tag and badge verification
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: .claude/skills/bump-version.md
+33-1Lines changed: 33 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -211,7 +211,39 @@ block instead of executing it.
211
211
212
212
---
213
213
214
-
## Step 8 — Print Summary
214
+
## Step 8 — Pre-PR Checklist
215
+
216
+
Before printing the summary, verify these items in the README and fix any that are stale. Do NOT stage extra files — if fixes are needed, include them in the same staged set before the PR is created.
Every Docker image reference must use `:latest` — never a branch name (`:main`, `:overhaul`, etc.) or a hardcoded version tag. The CI workflow publishes `:latest` on every merge to `main`; pinned semver tags (e.g., `:2.0.1`) are also published but should not appear in the Quick Start instructions.
225
+
226
+
**Version badge** (line ~7 in README):
227
+
228
+
The badge must use the `shields.io/github/v/tag/` endpoint (not `/release/`) because the CI workflow creates git tags, not GitHub Releases:
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@
4
4
5
5
An orchestration framework for AI coding assistants that solves context pollution and token exhaustion — enabling your AI to work on complex projects without running out of memory.
0 commit comments