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 +26 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
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