yatfa 1.0.86 → 1.0.87

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 CHANGED
@@ -224,7 +224,7 @@ AGENT_CONFIGS = {
224
224
 
225
225
  'researcher' => {
226
226
  name: 'yatfa-autonomous-researcher',
227
- skills: ['researcher-tactical', 'researcher-strategic', 'researcher-digest', 'researcher-telegram-processor', 'researcher-meta-learning', 'researcher-approval-review', 'memory', 'session-learnings', 'proposal-execution', 'proposal-rework-responder', 'memory-consolidation', 'retrospective', 'knowledge-management', 'sentry-investigation', 'agent-browser'],
227
+ skills: ['researcher-tactical', 'researcher-strategic', 'researcher-digest', 'researcher-telegram-processor', 'researcher-meta-learning', 'researcher-approval-review', 'researcher-task-proposal-review', 'memory', 'session-learnings', 'proposal-execution', 'proposal-rework-responder', 'memory-consolidation', 'retrospective', 'knowledge-management', 'sentry-investigation', 'agent-browser'],
228
228
  banner: build_banner(
229
229
  header: RESEARCHER_HEADER,
230
230
  boundaries: RESEARCHER_BOUNDARIES,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yatfa",
3
- "version": "1.0.86",
3
+ "version": "1.0.87",
4
4
  "description": "YATFA - Yet Another Tool For Agents",
5
5
  "bin": "./bin/run-yatfa-agent.rb",
6
6
  "files": [
@@ -62,8 +62,8 @@ def setup_github_auth!
62
62
  response = http.request(request)
63
63
 
64
64
  unless response.is_a?(Net::HTTPSuccess)
65
- # Silent failure for git credential helper - let git try other auth methods
66
- exit 0
65
+ STDERR.puts "❌ Error: Backend API returned #{response.code} for GitHub token"
66
+ exit 1
67
67
  end
68
68
 
69
69
  data = JSON.parse(response.body)
@@ -120,7 +120,7 @@ def setup_github_auth!
120
120
  system("sudo chmod +x #{helper_path}")
121
121
 
122
122
  # Configure git
123
- system("git config --global credential.helper '!f() { test \"$1\" = get && echo \"protocol=https\" && echo \"host=github.com\" && echo \"username=x-access-token\" && echo \"password=$(#{helper_path})\"; }; f'")
123
+ system("git config --global credential.helper '!f() { test \"$1\" = get && echo \"protocol=https\" && echo \"host=github.com\" && echo \"username=x-access-token\" && p=$(#{helper_path}) && echo \"password=$p\"; }; f'")
124
124
 
125
125
  # Configure gh CLI wrapper for auto-refresh and permission controls
126
126
  if install_gh_wrapper!(real_gh_path: "/usr/bin/gh", with_token_refresh: true, token_helper_path: helper_path)