yatfa 1.0.92 → 1.0.94

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.
package/README.md CHANGED
@@ -110,8 +110,6 @@ npx yatfa -v
110
110
  npx yatfa --version
111
111
  ```
112
112
 
113
- Prints the installed yatfa package version (e.g., `yatfa v1.0.67`).
114
-
115
113
  ### Run Agents
116
114
 
117
115
  When you run an agent, the CLI automatically:
package/agents.rb CHANGED
@@ -19,19 +19,19 @@ AGENT_CONFIGS = {
19
19
 
20
20
  'worker' => {
21
21
  name: 'yatfa-autonomous-worker',
22
- skills: ['git-workflow', 'worker-workflow', 'memory', 'session-learnings', 'screenshot', 'agent-browser'],
22
+ skills: ['git-workflow', 'worker-workflow', 'memory', 'session-learnings', 'screenshot', 'agent-browser', 'test-discovery'],
23
23
  prompt_name: 'worker'
24
24
  },
25
25
 
26
26
  'reviewer' => {
27
27
  name: 'yatfa-autonomous-reviewer',
28
- skills: ['reviewer-workflow', 'qa-workflow', 'memory', 'session-learnings', 'proposal-reviewer', 'screenshot', 'agent-browser'],
28
+ skills: ['reviewer-workflow', 'qa-workflow', 'memory', 'session-learnings', 'proposal-reviewer', 'screenshot', 'agent-browser', 'test-discovery'],
29
29
  prompt_name: 'reviewer'
30
30
  },
31
31
 
32
32
  'researcher' => {
33
33
  name: 'yatfa-autonomous-researcher',
34
- skills: ['researcher-tactical', 'researcher-strategic', 'researcher-digest', 'researcher-telegram-processor', 'researcher-meta-learning', 'researcher-approval-review', 'researcher-confirm-review', 'researcher-task-proposal-review', 'memory', 'session-learnings', 'proposal-execution', 'proposal-rework-responder', 'memory-consolidation', 'retrospective', 'knowledge-management', 'sentry-investigation', 'agent-browser'],
34
+ skills: ['researcher-tactical', 'researcher-strategic', 'researcher-digest', 'researcher-telegram-processor', 'researcher-meta-learning', 'researcher-approval-review', 'researcher-confirm-review', 'researcher-task-proposal-review', 'memory', 'session-learnings', 'proposal-execution', 'proposal-rework-responder', 'memory-consolidation', 'retrospective', 'knowledge-management', 'sentry-investigation', 'agent-browser', 'test-discovery'],
35
35
  prompt_name: 'researcher'
36
36
  },
37
37
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yatfa",
3
- "version": "1.0.92",
3
+ "version": "1.0.94",
4
4
  "description": "YATFA - Yet Another Tool For Agents",
5
5
  "bin": "./bin/run-yatfa-agent.rb",
6
6
  "files": [
@@ -20,7 +20,7 @@
20
20
 
21
21
  # Helper scripts installed into /usr/local/bin by setup_helper_scripts!
22
22
  # Single source of truth — deploy/deploy reads this list too.
23
- HELPER_SCRIPTS = %w[fetch-skill-variant.sh fetch-review-context.sh attach-screenshot.sh].freeze
23
+ HELPER_SCRIPTS = %w[fetch-skill-variant.sh fetch-review-context.sh attach-screenshot.sh test-discovery].freeze
24
24
 
25
25
  def download_agent_bridge!
26
26
  # Detect architecture
@@ -72,6 +72,10 @@ def download_agent_bridge!
72
72
  bridge_url = "#{YATFA_RAW_URL}/bin/agent-bridge-linux-#{arch}"
73
73
  puts "📥 Downloading agent-bridge for linux-#{arch} from GitHub..."
74
74
  system("sudo", "curl", "-fsSL", bridge_url, "-o", "#{target_dir}/agent-bridge")
75
+ unless $?.success?
76
+ puts "❌ Failed to download agent-bridge from GitHub"
77
+ exit 1
78
+ end
75
79
  system("sudo", "chmod", "+x", "#{target_dir}/agent-bridge")
76
80
 
77
81
  puts "✅ agent-bridge installed to #{target_dir}"
@@ -144,6 +148,10 @@ def download_agent_bridge_tmux!(target_dir)
144
148
  system("sudo", "chmod", "+x", "#{target_dir}/agent-bridge-tmux")
145
149
  else
146
150
  system("sudo", "curl", "-fsSL", bridge_tmux_url, "-o", "#{target_dir}/agent-bridge-tmux")
151
+ unless $?.success?
152
+ puts "❌ Failed to download agent-bridge-tmux from GitHub"
153
+ exit 1
154
+ end
147
155
  system("sudo", "chmod", "+x", "#{target_dir}/agent-bridge-tmux")
148
156
  end
149
157