yatfa 1.0.92 → 1.0.93
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/agents.rb +3 -3
- package/package.json +1 -1
- package/setup/agent_bridge.rb +1 -1
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
package/setup/agent_bridge.rb
CHANGED
|
@@ -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
|