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
{{ message }}
This repository was archived by the owner on May 6, 2026. It is now read-only.
release: bump to 1.0.4 — robust pnpm lookup on ui:build retry
Real user report: OpenClaw install on a fresh WSL Ubuntu exited with
"line 101: pnpm: command not found". Root cause in the retry path we
added last release: $child_path was computed BEFORE upstream install.sh
ran, so it didn't see dirs npm/corepack created during the install
(npm_prefix/bin may have moved, corepack parks pnpm under
~/.local/share/pnpm, etc). Our retry invoked `pnpm ui:build` against
that stale PATH and bash's cached negative lookup, bombing out with a
"command not found" even though pnpm was installed and functional.
Fix: when the retry kicks in (dist/control-ui/index.html missing), do
the same hash -r + candidate-list dance we already use for the openclaw
binary search — refresh npm prefix, probe npm_prefix/bin,
~/.local/share/pnpm, ~/.local/bin, /usr/local/bin, /usr/bin — and only
then attempt the ui:build re-run. If pnpm is still nowhere to be
found, surface the exact PATH we searched so the user can finish the
build manually.
Version strings bumped in installer.iss, build-pkg.sh, and the README
download tables / build-from-source outputs.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: README.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -89,9 +89,9 @@ Pre-built installers live on the [GitHub Releases page](https://github.com/Sense
89
89
90
90
| Platform | Download | How to Use |
91
91
|----------|----------|------------|
92
-
| Windows |[`AgentPack-1.0.3-windows-x64.exe`](https://github.com/SenseTime-FVG/agent_pack/releases/latest/download/AgentPack-1.0.3-windows-x64.exe)| Double-click and follow the wizard; installation runs inside WSL2, and the PowerShell window is taken over by the installed agent when setup finishes |
93
-
| macOS |[`AgentPack-1.0.3-macos-universal.pkg`](https://github.com/SenseTime-FVG/agent_pack/releases/latest/download/AgentPack-1.0.3-macos-universal.pkg)| Double-click, then complete setup in the Terminal window that opens; the same window becomes the agent's REPL / gateway once installation finishes |
94
-
| Linux |[`AgentPack-1.0.3-linux.sh`](https://github.com/SenseTime-FVG/agent_pack/releases/latest/download/AgentPack-1.0.3-linux.sh)*or* the one-liner below | Download and run `chmod +x AgentPack-1.0.3-linux.sh && ./AgentPack-1.0.3-linux.sh`, or paste `curl -fsSL https://raw.githubusercontent.com/SenseTime-FVG/agent_pack/main/linux/install.sh \| bash` — either way the shell that ran the installer is handed over to the agent via `exec`|
92
+
| Windows |[`AgentPack-1.0.4-windows-x64.exe`](https://github.com/SenseTime-FVG/agent_pack/releases/latest/download/AgentPack-1.0.4-windows-x64.exe)| Double-click and follow the wizard; installation runs inside WSL2, and the PowerShell window is taken over by the installed agent when setup finishes |
93
+
| macOS |[`AgentPack-1.0.4-macos-universal.pkg`](https://github.com/SenseTime-FVG/agent_pack/releases/latest/download/AgentPack-1.0.4-macos-universal.pkg)| Double-click, then complete setup in the Terminal window that opens; the same window becomes the agent's REPL / gateway once installation finishes |
94
+
| Linux |[`AgentPack-1.0.4-linux.sh`](https://github.com/SenseTime-FVG/agent_pack/releases/latest/download/AgentPack-1.0.4-linux.sh)*or* the one-liner below | Download and run `chmod +x AgentPack-1.0.4-linux.sh && ./AgentPack-1.0.4-linux.sh`, or paste `curl -fsSL https://raw.githubusercontent.com/SenseTime-FVG/agent_pack/main/linux/install.sh \| bash` — either way the shell that ran the installer is handed over to the agent via `exec`|
0 commit comments