@kritchoff/agent-browser 0.9.24 → 0.9.26

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/package.json +1 -1
  2. package/start.sh +3 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kritchoff/agent-browser",
3
- "version": "0.9.24",
3
+ "version": "0.9.26",
4
4
  "description": "Headless browser automation CLI for AI agents",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
package/start.sh CHANGED
@@ -46,7 +46,7 @@ fi
46
46
  echo -e "\n${YELLOW}[2/4] Starting Docker Stack...${NC}"
47
47
  echo " (First run may take a few minutes to download images)"
48
48
 
49
- docker compose -f "${COMPOSE_FILE:-docker-compose.prod.yml}" up -d --build --remove-orphans
49
+ docker compose -f "${COMPOSE_FILE:-docker-compose.prod.yml}" up -d --build --remove-orphans --force-recreate
50
50
 
51
51
  # Find actual container names
52
52
  ANDROID_CONTAINER=$(docker compose -f "${COMPOSE_FILE:-docker-compose.prod.yml}" ps -q android-service)
@@ -101,7 +101,8 @@ wait_for_log() {
101
101
  wait_for_log "$ANDROID_CONTAINER" "Emulator boot complete" "Android Emulator Boot"
102
102
  wait_for_log "$ANDROID_CONTAINER" "APK installation complete" "WootzApp Installation"
103
103
  wait_for_log "$ANDROID_CONTAINER" "CDP Bridge ready" "CDP Bridge"
104
- wait_for_log "$AGENT_CONTAINER" "Ready on port 3000" "Agent Daemon Connection"
104
+ # Daemon logs "Daemon listening on TCP 0.0.0.0:3000" in direct mode
105
+ wait_for_log "$AGENT_CONTAINER" "Daemon listening on TCP" "Agent Daemon Connection"
105
106
 
106
107
  # 4. Success
107
108
  echo -e "\n${GREEN}[4/4] Environment Ready!${NC}"