@aptove/aptove 0.1.3 → 0.1.5

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.
Files changed (2) hide show
  1. package/README.md +25 -7
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -126,16 +126,31 @@ Images are published to `ghcr.io/aptove/aptove-agent` on every release.
126
126
  # Pull the latest multi-arch image (amd64 + arm64)
127
127
  docker pull ghcr.io/aptove/aptove-agent:latest
128
128
 
129
- # Run interactively with config and API key
129
+ # Chat mode Linux host
130
130
  docker run --rm -it \
131
131
  -v ~/.config/Aptove:/root/.config/Aptove \
132
132
  -e ANTHROPIC_API_KEY=... \
133
133
  ghcr.io/aptove/aptove-agent:latest chat
134
134
 
135
- # ACP stdio mode (for use with the bridge)
135
+ # Chat mode — macOS host (config lives under ~/Library/Application Support/Aptove)
136
+ docker run --rm -it \
137
+ -v "$HOME/Library/Application Support/Aptove":/root/.config/Aptove \
138
+ -e ANTHROPIC_API_KEY=... \
139
+ ghcr.io/aptove/aptove-agent:latest chat
140
+
141
+ # Bridge mode with QR code for mobile pairing
142
+ # --advertise-addr is required in containers: the container gets an internal virtual IP
143
+ # that mobile devices cannot reach. Pass your host machine's real LAN IP instead.
144
+ docker run --rm -it \
145
+ -p 8765:8765 \
146
+ -v "$HOME/Library/Application Support/Aptove":/root/.config/Aptove \
147
+ -e ANTHROPIC_API_KEY=... \
148
+ ghcr.io/aptove/aptove-agent:latest run --qr --advertise-addr 192.168.1.50
149
+
150
+ # ACP stdio mode (for use with an external bridge)
136
151
  docker run --rm -i \
137
152
  -e ANTHROPIC_API_KEY=... \
138
- ghcr.io/aptove/aptove-agent:latest run
153
+ ghcr.io/aptove/aptove-agent:latest stdio
139
154
  ```
140
155
 
141
156
  Works on Linux natively and on Windows via Docker Desktop (WSL2 backend).
@@ -148,11 +163,14 @@ Apple Native runs Linux containers directly via the macOS Virtualization.framewo
148
163
  # Install the container CLI
149
164
  brew install container # requires arm64 + macOS 26 (Tahoe)
150
165
 
151
- # Run
152
- container run \
153
- -v ~/.config/Aptove:/root/.config/Aptove \
166
+ # Run (macOS config lives under ~/Library/Application Support/Aptove)
167
+ # Use --advertise-addr with your Mac's real LAN IP for local transport QR pairing
168
+ container run -it \
169
+ --dns 8.8.8.8 \
170
+ -p 8765:8765 \
171
+ -v "$HOME/Library/Application Support/Aptove":/root/.config/Aptove \
154
172
  -e ANTHROPIC_API_KEY=... \
155
- ghcr.io/aptove/aptove-agent:latest-darwin-arm64 chat
173
+ ghcr.io/aptove/aptove-agent:0.1.4-darwin-arm64 run --qr --advertise-addr 192.168.1.50
156
174
  ```
157
175
 
158
176
  ### Available Tags
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aptove/aptove",
3
- "version": "0.1.3",
3
+ "version": "0.1.5",
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.3",
39
- "@aptove/aptove-darwin-x64": "0.1.3",
40
- "@aptove/aptove-linux-arm64": "0.1.3",
41
- "@aptove/aptove-linux-x64": "0.1.3",
42
- "@aptove/aptove-win32-x64": "0.1.3"
38
+ "@aptove/aptove-darwin-arm64": "0.1.5",
39
+ "@aptove/aptove-darwin-x64": "0.1.5",
40
+ "@aptove/aptove-linux-arm64": "0.1.5",
41
+ "@aptove/aptove-linux-x64": "0.1.5",
42
+ "@aptove/aptove-win32-x64": "0.1.5"
43
43
  }
44
44
  }