@link-assistant/hive-mind 1.38.3 → 1.39.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/README.md +10 -10
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @link-assistant/hive-mind
2
2
 
3
+ ## 1.39.0
4
+
5
+ ### Minor Changes
6
+
7
+ - b162658: Migrate to sandbox 1.5.0 with /workspace shared directory, replacing user rename approach with group-based access (issue #1499)
8
+
3
9
  ## 1.38.3
4
10
 
5
11
  ### Patch Changes
package/README.md CHANGED
@@ -197,22 +197,22 @@ docker attach hive-mind
197
197
 
198
198
  # Extract auth data from a running (or stopped) container to the host:
199
199
  mkdir -p ~/.hive-mind
200
- docker cp hive-mind:/home/hive/.claude ~/.hive-mind/claude
201
- docker cp hive-mind:/home/hive/.claude.json ~/.hive-mind/claude.json
202
- docker cp hive-mind:/home/hive/.config/gh ~/.hive-mind/gh
200
+ docker cp hive-mind:/workspace/.claude ~/.hive-mind/claude
201
+ docker cp hive-mind:/workspace/.claude.json ~/.hive-mind/claude.json
202
+ docker cp hive-mind:/workspace/.config/gh ~/.hive-mind/gh
203
203
 
204
- # Fix ownership to match the hive user inside the container:
205
- HIVE_UID=$(docker exec hive-mind id -u hive)
206
- chown -R $HIVE_UID:$HIVE_UID ~/.hive-mind/claude ~/.hive-mind/gh
207
- chown $HIVE_UID:$HIVE_UID ~/.hive-mind/claude.json
204
+ # Fix ownership to match the sandbox user inside the container:
205
+ SANDBOX_UID=$(docker exec hive-mind id -u sandbox)
206
+ chown -R $SANDBOX_UID:$SANDBOX_UID ~/.hive-mind/claude ~/.hive-mind/gh
207
+ chown $SANDBOX_UID:$SANDBOX_UID ~/.hive-mind/claude.json
208
208
 
209
209
  # On subsequent runs, mount the auth data to keep it between restarts:
210
210
  docker run -dit \
211
211
  --name hive-mind \
212
212
  --restart unless-stopped \
213
- -v /root/.hive-mind/claude:/home/hive/.claude \
214
- -v /root/.hive-mind/claude.json:/home/hive/.claude.json \
215
- -v /root/.hive-mind/gh:/home/hive/.config/gh \
213
+ -v /root/.hive-mind/claude:/workspace/.claude \
214
+ -v /root/.hive-mind/claude.json:/workspace/.claude.json \
215
+ -v /root/.hive-mind/gh:/workspace/.config/gh \
216
216
  konard/hive-mind:latest
217
217
  ```
218
218
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@link-assistant/hive-mind",
3
- "version": "1.38.3",
3
+ "version": "1.39.0",
4
4
  "description": "AI-powered issue solver and hive mind for collaborative problem solving",
5
5
  "main": "src/hive.mjs",
6
6
  "type": "module",