Skip to content

AgentGUI v1.0.1114

Choose a tag to compare

@github-actions github-actions released this 29 Jul 15:02

AgentGUI v1.0.1114

Latest commit: ee728e4
fix(ci): stop auto-declaudeify force-pushing over the release version bump

auto-declaudeify ran on push to every branch, rewrote all history with
git filter-branch --force, then ran git push --all --force from a checkout
taken before the concurrent publish job's bump commit existed. It therefore
raced Publish and Release on the same sha and silently destroyed the bump.

Witnessed on run 30462473770: the publish job logged '096f766..ce4a898
HEAD -> main' and 'Successfully pushed version bump', yet refs/heads/main is
still 096f766, origin/main package.json still reads 1.0.1099 against npm's
1.0.1113, and ce4a898 is no longer fetchable from the remote at all. The
same mechanism left spoint's tag v0.1.465 pointing at a commit absent from
main. This, not the bump logic, is why main drifted behind the registry.

The author check could never stop firing either: git log --all --author=Claude
matches 69 historical commits on every run, so the force-push was effectively
unconditional and permanent.

Rewriting published history is a deliberate, exclusive operation, not an
automated per-push force-push, so the job is now manual-dispatch and
read-only: it reports what it finds instead of rewriting and force-pushing.

Install with:

bun x agentgui@latest
npm install -g agentgui
npx agentgui

Web interface: http://localhost:3000/gm/

Notes:

  • Data stored in ~/.gmgui/ folder
  • Requirements: Node.js 18+