colana 1.0.0-beta.73 → 1.0.0-beta.74

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "colana",
3
- "version": "1.0.0-beta.73",
3
+ "version": "1.0.0-beta.74",
4
4
  "description": "Agent-First. Multiplied. Multi-agent command center for AI coding agents.",
5
5
  "type": "module",
6
6
  "main": "server/index.js",
package/public/app.js CHANGED
@@ -869,6 +869,12 @@ async function launchPersonalAgent() {
869
869
  task: 'Personal Assistant',
870
870
  mode: 'pty',
871
871
  }, { repair: err.code === 'BROKEN_INSTALL' });
872
+ } else if (err.code === 'GATEWAY_AUTH_MISSING') {
873
+ showToast(err.message || 'The Personal Agent needs an API key. Open Settings to add one.', 'warning', 8000);
874
+ openSettingsModal().then(() => {
875
+ const el = document.getElementById('settings-openclaw-model');
876
+ if (el) el.scrollIntoView({ behavior: 'smooth', block: 'center' });
877
+ });
872
878
  } else {
873
879
  showToast('Failed to start personal agent: ' + (err.message || err), 'error');
874
880
  }
@@ -226,8 +226,8 @@ function checkOpenClawConfig() {
226
226
  ok: false,
227
227
  code: 'GATEWAY_AUTH_MISSING',
228
228
  httpStatus: 400,
229
- message: 'No API key configured for the Personal Agent.',
230
- fix: 'Add a key in Settings > Personal AI Agents.',
229
+ message: 'The Personal Agent needs an API key to call AI models. Subscription auth (Claude, Gemini) doesn\'t carry over — add an Anthropic or OpenAI API key in Settings.',
230
+ fix: 'Open Settings > Personal AI Agents and enter an API key.',
231
231
  };
232
232
  }
233
233