yatfa 1.0.77 → 1.0.78

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.
@@ -107,7 +107,10 @@ if [ -f "/tmp/setup-agent.rb" ]; then
107
107
  ruby /tmp/setup-agent.rb
108
108
  else
109
109
  echo "Downloading latest setup-agent.rb (version: ${YATFA_VERSION})..."
110
- curl -fsSL https://objectstore.fra1.civo.com/yatfa/${YATFA_VERSION}/setup-agent.rb | ruby
110
+ curl -fsSL https://objectstore.fra1.civo.com/yatfa/${YATFA_VERSION}/setup-agent.rb -o /tmp/setup-agent.rb
111
+ # Download claw setup (non-fatal — only needed when AGENT_TYPE=claw)
112
+ curl -fsSL https://objectstore.fra1.civo.com/yatfa/${YATFA_VERSION}/setup-claw-agent.rb -o /tmp/setup-claw-agent.rb 2>/dev/null || true
113
+ ruby /tmp/setup-agent.rb
111
114
  fi
112
115
  EOF
113
116
  chmod +x /usr/local/bin/setup-agent
@@ -207,13 +207,39 @@ module YatfaAgent
207
207
  user = detect_agent_user(container_name)
208
208
  puts " User: #{user}"
209
209
 
210
- # Wait for tmux session to be ready
211
- 10.times do
210
+ # Wait for tmux session to be ready (up to 60 seconds)
211
+ # Setup runs git clone, downloads, and config before creating the tmux session,
212
+ # which can take longer than 10 seconds on slow networks or large repos.
213
+ max_wait = 60
214
+ ready = false
215
+
216
+ print " Waiting for agent session to start"
217
+ max_wait.times do
212
218
  if system("docker", "exec", "-u", user, container_name, "tmux", "has-session", "-t", "agent", err: File::NULL, out: File::NULL)
219
+ ready = true
213
220
  break
214
221
  end
222
+ print "."
223
+ $stdout.flush
215
224
  sleep 1
216
225
  end
226
+ puts ""
227
+
228
+ unless ready
229
+ puts ""
230
+ puts "❌ Agent session not ready after #{max_wait} seconds."
231
+ puts ""
232
+ puts " The agent is still initializing inside the container."
233
+ puts " This usually happens when git clone or downloads are slow."
234
+ puts ""
235
+ puts " To check progress:"
236
+ puts " docker logs -f #{container_name}"
237
+ puts ""
238
+ puts " Once you see 'tmux new-session' in the logs, attach with:"
239
+ puts " docker exec -it -u #{user} #{container_name} tmux attach -t agent"
240
+ puts ""
241
+ exit 1
242
+ end
217
243
 
218
244
  # Attach to agent session which has the status bar
219
245
  # Must run as agent user since tmux server runs under that user
@@ -384,6 +410,12 @@ module YatfaAgent
384
410
  if local_setup_script
385
411
  puts "🔧 Using local setup-agent.rb for development"
386
412
  docker_cmd.concat(["-v", "#{File.expand_path(local_setup_script)}:/tmp/setup-agent.rb:ro"])
413
+
414
+ # Also mount setup-claw-agent.rb if present (loaded by setup-agent.rb when AGENT_TYPE=claw)
415
+ local_claw_script = File.join(File.dirname(local_setup_script), "setup-claw-agent.rb")
416
+ if File.exist?(local_claw_script)
417
+ docker_cmd.concat(["-v", "#{File.expand_path(local_claw_script)}:/tmp/setup-claw-agent.rb:ro"])
418
+ end
387
419
  end
388
420
  end
389
421
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yatfa",
3
- "version": "1.0.77",
3
+ "version": "1.0.78",
4
4
  "description": "YATFA - Yet Another Tool For Agents",
5
5
  "bin": "./bin/run-yatfa-agent.rb",
6
6
  "files": [