@kritchoff/agent-browser 0.9.15 → 0.9.17

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/sdk.sh +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kritchoff/agent-browser",
3
- "version": "0.9.15",
3
+ "version": "0.9.17",
4
4
  "description": "Headless browser automation CLI for AI agents",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
package/sdk.sh CHANGED
@@ -62,10 +62,10 @@ pull_images_with_retry() {
62
62
  local max_retries=5
63
63
  local count=0
64
64
 
65
- log_info "Downloading Agent Environment (this may take a while)..."
65
+ log_info "Please wait while we get things ready..."
66
66
 
67
67
  while [ $count -lt $max_retries ]; do
68
- if docker compose -f "$COMPOSE_FILE" pull; then
68
+ if docker compose -f "$COMPOSE_FILE" pull --quiet; then
69
69
  return 0
70
70
  fi
71
71