yatfa 1.0.71 → 1.0.73
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/bin/install-agent.sh +1 -1
- package/package.json +2 -2
package/agents.rb
CHANGED
|
@@ -194,7 +194,7 @@ AGENT_CONFIGS = {
|
|
|
194
194
|
|
|
195
195
|
'worker' => {
|
|
196
196
|
name: 'yatfa-autonomous-worker',
|
|
197
|
-
skills: ['git-workflow', 'worker-workflow', 'memory', 'agent-browser'],
|
|
197
|
+
skills: ['git-workflow', 'worker-workflow', 'memory', 'session-learnings', 'agent-browser'],
|
|
198
198
|
banner: build_banner(
|
|
199
199
|
header: WORKER_HEADER,
|
|
200
200
|
boundaries: WORKER_BOUNDARIES,
|
|
@@ -204,7 +204,7 @@ AGENT_CONFIGS = {
|
|
|
204
204
|
|
|
205
205
|
'reviewer' => {
|
|
206
206
|
name: 'yatfa-autonomous-reviewer',
|
|
207
|
-
skills: ['reviewer-workflow', 'qa-workflow', 'memory', 'proposal-reviewer', 'agent-browser'],
|
|
207
|
+
skills: ['reviewer-workflow', 'qa-workflow', 'memory', 'session-learnings', 'proposal-reviewer', 'agent-browser'],
|
|
208
208
|
banner: build_banner(
|
|
209
209
|
header: REVIEWER_HEADER,
|
|
210
210
|
boundaries: REVIEWER_BOUNDARIES,
|
|
@@ -214,7 +214,7 @@ AGENT_CONFIGS = {
|
|
|
214
214
|
|
|
215
215
|
'researcher' => {
|
|
216
216
|
name: 'yatfa-autonomous-researcher',
|
|
217
|
-
skills: ['researcher-tactical', 'researcher-strategic', 'researcher-digest', 'researcher-telegram-processor', 'memory', 'proposal-execution', 'proposal-rework-responder', 'memory-consolidation', 'retrospective', 'knowledge-management', 'sentry-investigation', 'agent-browser'],
|
|
217
|
+
skills: ['researcher-tactical', 'researcher-strategic', 'researcher-digest', 'researcher-telegram-processor', 'memory', 'session-learnings', 'proposal-execution', 'proposal-rework-responder', 'memory-consolidation', 'retrospective', 'knowledge-management', 'sentry-investigation', 'agent-browser'],
|
|
218
218
|
banner: build_banner(
|
|
219
219
|
header: RESEARCHER_HEADER,
|
|
220
220
|
boundaries: RESEARCHER_BOUNDARIES,
|
package/bin/install-agent.sh
CHANGED
|
@@ -7,7 +7,7 @@ export DEBIAN_FRONTEND=noninteractive
|
|
|
7
7
|
echo 'Acquire::Check-Date "false";' > /etc/apt/apt.conf.d/99no-check-date
|
|
8
8
|
|
|
9
9
|
apt-get update && apt-get install -y \
|
|
10
|
-
git curl tmux sudo unzip wget jq nano
|
|
10
|
+
git curl tmux sudo unzip wget jq nano chromium
|
|
11
11
|
|
|
12
12
|
# Install Node.js (required for Claude CLI)
|
|
13
13
|
# Check for existing Node installation
|
package/package.json
CHANGED