amp-acp 0.5.1 → 0.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -128,6 +128,32 @@ You can configure multiple MCP servers to extend Amp's capabilities:
128
128
 
129
129
  For more details, see [docs/mcp-passthrough.md](docs/mcp-passthrough.md).
130
130
 
131
+ ## Using Pre-built Binaries
132
+
133
+ Pre-built binaries are available on the [GitHub Releases](https://github.com/tao12345666333/amp-acp/releases) page for:
134
+
135
+ | Platform | Architecture | Binary |
136
+ |----------|-------------|--------|
137
+ | Linux | x64 | `amp-acp-linux-x64` |
138
+ | Linux | arm64 | `amp-acp-linux-arm64` |
139
+ | macOS | x64 (Intel) | `amp-acp-darwin-x64` |
140
+ | macOS | arm64 (Apple Silicon) | `amp-acp-darwin-arm64` |
141
+ | Windows | x64 | `amp-acp-windows-x64.exe` |
142
+
143
+ Download the binary for your platform, make it executable (`chmod +x` on Linux/macOS), and configure Zed to use it:
144
+
145
+ ```json
146
+ {
147
+ "agent_servers": {
148
+ "Amp": {
149
+ "command": "/path/to/amp-acp-darwin-arm64"
150
+ }
151
+ }
152
+ }
153
+ ```
154
+
155
+ These are standalone executables with no runtime dependencies — no Node.js or Bun required.
156
+
131
157
  ## Troubleshooting
132
158
 
133
159
  **Adapter doesn't start**: Make sure you have Node.js 18 or later installed. Run `node --version` to check.
package/dist/index.js CHANGED
@@ -9535,7 +9535,7 @@ function safeJson(x) {
9535
9535
  // package.json
9536
9536
  var package_default = {
9537
9537
  name: "amp-acp",
9538
- version: "0.5.1",
9538
+ version: "0.6.0",
9539
9539
  private: false,
9540
9540
  type: "module",
9541
9541
  main: "dist/index.js",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "amp-acp",
3
- "version": "0.5.1",
3
+ "version": "0.6.0",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "main": "dist/index.js",