@kritchoff/agent-browser 0.9.24 → 0.9.25

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 +2 -1
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.25",
4
4
  "description": "Headless browser automation CLI for AI agents",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
package/start.sh CHANGED
@@ -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}"