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: rename artifacts to AgentPack-<ver>-<platform>[-<arch>].<ext>
Adopt a consistent, self-describing naming scheme across all three
platforms so users can tell at a glance which file is theirs:
AgentPack-1.0.0-windows-x64.exe (was AgentPack-Setup-1.0.0.exe)
AgentPack-1.0.0-macos-universal.pkg (was AgentPack-1.0.0.pkg)
AgentPack-1.0.0-linux.sh (was install.sh)
Also bundle linux/install.sh as a release asset so the Linux download
matches Windows/macOS — users can grab a single file instead of relying
on the curl | bash one-liner (which still works, and still documented).
Changed:
- windows/installer.iss OutputBaseFilename
- macos/build-pkg.sh productbuild output path
- .github/workflows/release.yml artifact globs + Linux staging step
- scripts/release.sh filename expectations
- README.md / README.zh-CN.md download table + "Build from Source" output paths
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-Setup-1.0.0.exe`](https://github.com/SenseTime-FVG/agent_pack/releases/latest/download/AgentPack-Setup-1.0.0.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.0.pkg`](https://github.com/SenseTime-FVG/agent_pack/releases/latest/download/AgentPack-1.0.0.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 |bash one-liner |`curl -fsSL https://raw.githubusercontent.com/SenseTime-FVG/agent_pack/main/linux/install.sh \| bash` — the shell that ran the installer is handed over to the agent via `exec`|
92
+
| Windows |[`AgentPack-1.0.0-windows-x64.exe`](https://github.com/SenseTime-FVG/agent_pack/releases/latest/download/AgentPack-1.0.0-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.0-macos-universal.pkg`](https://github.com/SenseTime-FVG/agent_pack/releases/latest/download/AgentPack-1.0.0-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.0-linux.sh`](https://github.com/SenseTime-FVG/agent_pack/releases/latest/download/AgentPack-1.0.0-linux.sh)*or* the one-liner below | Download and run `chmod +x AgentPack-1.0.0-linux.sh && ./AgentPack-1.0.0-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