@aptove/aptove 0.1.1 → 0.1.2
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 +51 -0
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://github.com/aptove/aptove/releases/latest)
|
|
4
4
|
[](https://www.npmjs.com/package/@aptove/aptove)
|
|
5
|
+
[](https://github.com/aptove/aptove/actions/workflows/release.yml)
|
|
5
6
|
[](https://discord.gg/gD7AMxBy9y)
|
|
6
7
|
|
|
7
8
|
A Rust CLI AI coding agent that speaks the [Agent-Client Protocol (ACP)](https://agentclientprotocol.org), supports multiple LLM providers, and connects to external MCP servers for tool use.
|
|
@@ -115,6 +116,56 @@ Aptove implements the [ACP protocol](https://agentclientprotocol.org) over stdio
|
|
|
115
116
|
|
|
116
117
|
Use with [bridge](../bridge/) for WebSocket↔stdio bridging.
|
|
117
118
|
|
|
119
|
+
## Container Images
|
|
120
|
+
|
|
121
|
+
Images are published to `ghcr.io/aptove/aptove-agent` on every release.
|
|
122
|
+
|
|
123
|
+
### Linux / Windows (Docker)
|
|
124
|
+
|
|
125
|
+
```sh
|
|
126
|
+
# Pull the latest multi-arch image (amd64 + arm64)
|
|
127
|
+
docker pull ghcr.io/aptove/aptove-agent:latest
|
|
128
|
+
|
|
129
|
+
# Run interactively with config and API key
|
|
130
|
+
docker run --rm -it \
|
|
131
|
+
-v ~/.config/Aptove:/root/.config/Aptove \
|
|
132
|
+
-e ANTHROPIC_API_KEY=... \
|
|
133
|
+
ghcr.io/aptove/aptove-agent:latest chat
|
|
134
|
+
|
|
135
|
+
# ACP stdio mode (for use with the bridge)
|
|
136
|
+
docker run --rm -i \
|
|
137
|
+
-e ANTHROPIC_API_KEY=... \
|
|
138
|
+
ghcr.io/aptove/aptove-agent:latest run
|
|
139
|
+
```
|
|
140
|
+
|
|
141
|
+
Works on Linux natively and on Windows via Docker Desktop (WSL2 backend).
|
|
142
|
+
|
|
143
|
+
### macOS (Apple Native)
|
|
144
|
+
|
|
145
|
+
Apple Native runs Linux containers directly via the macOS Virtualization.framework — no Docker Desktop required.
|
|
146
|
+
|
|
147
|
+
```sh
|
|
148
|
+
# Install the container CLI
|
|
149
|
+
brew install --cask container
|
|
150
|
+
|
|
151
|
+
# Run
|
|
152
|
+
container run \
|
|
153
|
+
-v ~/.config/Aptove:/root/.config/Aptove \
|
|
154
|
+
-e ANTHROPIC_API_KEY=... \
|
|
155
|
+
ghcr.io/aptove/aptove-agent:latest-darwin-arm64 chat
|
|
156
|
+
```
|
|
157
|
+
|
|
158
|
+
### Available Tags
|
|
159
|
+
|
|
160
|
+
| Tag | Description |
|
|
161
|
+
|-----|-------------|
|
|
162
|
+
| `latest` | Latest stable, multi-arch (amd64 + arm64) |
|
|
163
|
+
| `0.2.0` | Specific version, multi-arch |
|
|
164
|
+
| `0.2.0-linux-amd64` | Linux x64 |
|
|
165
|
+
| `0.2.0-linux-arm64` | Linux arm64 |
|
|
166
|
+
| `0.2.0-darwin-arm64` | macOS Apple Silicon (Apple Native) |
|
|
167
|
+
| `0.2.0-darwin-x64` | macOS Intel (Apple Native) |
|
|
168
|
+
|
|
118
169
|
## License
|
|
119
170
|
|
|
120
171
|
Apache-2.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aptove/aptove",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "ACP AI coding agent — connects to Claude, Gemini, and OpenAI",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
|
@@ -35,10 +35,10 @@
|
|
|
35
35
|
"node": ">=16"
|
|
36
36
|
},
|
|
37
37
|
"optionalDependencies": {
|
|
38
|
-
"@aptove/aptove-darwin-arm64": "0.1.
|
|
39
|
-
"@aptove/aptove-darwin-x64": "0.1.
|
|
40
|
-
"@aptove/aptove-linux-arm64": "0.1.
|
|
41
|
-
"@aptove/aptove-linux-x64": "0.1.
|
|
42
|
-
"@aptove/aptove-win32-x64": "0.1.
|
|
38
|
+
"@aptove/aptove-darwin-arm64": "0.1.2",
|
|
39
|
+
"@aptove/aptove-darwin-x64": "0.1.2",
|
|
40
|
+
"@aptove/aptove-linux-arm64": "0.1.2",
|
|
41
|
+
"@aptove/aptove-linux-x64": "0.1.2",
|
|
42
|
+
"@aptove/aptove-win32-x64": "0.1.2"
|
|
43
43
|
}
|
|
44
44
|
}
|