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.
docs: expand platform prereqs into step lists, link GitHub Releases downloads
- Split Windows / macOS / Linux prerequisites into numbered setup steps
with the exact commands users have to run (wsl --install,
xcode-select --install, brew install, brew shellenv).
- Switch the download table to link at releases/latest/download/<file>,
so README never needs a version bump.
- Keep the Linux bash one-liner pointing at linux/install.sh on main.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: README.md
+44-12Lines changed: 44 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -43,23 +43,55 @@ When the installer detects a China region (or `AGENTPACK_CN=1` is set), it prefi
43
43
44
44
## Platform Prerequisites
45
45
46
-
Platform-level prerequisites are NOT auto-installed; the installer prompts the user to install them manually with a link.
46
+
Platform-level prerequisites are **not** auto-installed — install them manually once, then run the Agent Pack installer. Runtime dependencies (Python, Node.js, uv, git, build tools) **are** auto-installed by the product installers, so you don't need those.
47
47
48
-
| Platform | Prerequisite | Link |
49
-
|----------|--------------|------|
50
-
| Windows | WSL2 + a Linux distro |https://learn.microsoft.com/windows/wsl/install|
51
-
| macOS | Xcode Command Line Tools |https://developer.apple.com/download/all/|
52
-
| macOS | Homebrew |https://brew.sh|
48
+
### Windows
53
49
54
-
Runtime dependencies (Python, Node.js, uv, git, build tools) are auto-installed by the product installers.
50
+
Requires **WSL2 + a Linux distro** (the Inno Setup installer calls `wsl.exe` under the hood).
51
+
52
+
1. Open **PowerShell as Administrator** and run:
53
+
```powershell
54
+
wsl --install
55
+
```
56
+
2.**Reboot** when prompted.
57
+
3. On first boot, Windows launches the new Ubuntu distro — set a UNIX username and password.
58
+
4. (Optional, only if `wsl --install` didn't pick one) install a distro from the Microsoft Store, e.g. Ubuntu.
No manual prerequisites — the installer handles `apt`/`yum` dependencies itself. You only need `bash`, `curl`, and `sudo` (standard on every mainstream distro).
55
85
56
86
## Download
57
87
58
-
| Platform | Format | How to Use |
59
-
|----------|--------|------------|
60
-
| Windows |`.exe` installer | Double-click and follow the wizard; installation runs inside WSL2, and the PowerShell window is taken over by the installed agent when setup finishes |
61
-
| macOS |`.pkg` installer | Double-click, then complete setup in the Terminal window that opens; the same window becomes the agent's REPL / gateway once installation finishes |
62
-
| Linux | bash script |`curl -fsSL https://URL/install.sh \| bash` — the shell that ran the installer is handed over to the agent via `exec`|
88
+
Pre-built installers live on the [GitHub Releases page](https://github.com/SenseTime-FVG/agent_pack/releases/latest). Grab the one for your platform:
89
+
90
+
| Platform | Download | How to Use |
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`|
0 commit comments