@elizaos/agent 2.0.0-alpha.421 → 2.0.0-alpha.425

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.
Files changed (79) hide show
  1. package/package.json +4 -4
  2. package/packages/agent/src/api/accounts-routes.d.ts +11 -3
  3. package/packages/agent/src/api/accounts-routes.d.ts.map +1 -1
  4. package/packages/agent/src/api/accounts-routes.js +70 -123
  5. package/packages/agent/src/api/subscription-routes.js +27 -23
  6. package/packages/agent/src/runtime/plugin-role-gating.js +4 -3
  7. package/packages/app-core/src/api/client-agent.d.ts +63 -1
  8. package/packages/app-core/src/api/client-agent.d.ts.map +1 -1
  9. package/packages/app-core/src/api/client-agent.js +51 -0
  10. package/packages/app-core/src/components/accounts/AccountCard.d.ts +30 -0
  11. package/packages/app-core/src/components/accounts/AccountCard.d.ts.map +1 -0
  12. package/packages/app-core/src/components/accounts/AccountCard.js +183 -0
  13. package/packages/app-core/src/components/accounts/AccountList.d.ts +15 -0
  14. package/packages/app-core/src/components/accounts/AccountList.d.ts.map +1 -0
  15. package/packages/app-core/src/components/accounts/AccountList.js +80 -0
  16. package/packages/app-core/src/components/accounts/AddAccountDialog.d.ts +33 -0
  17. package/packages/app-core/src/components/accounts/AddAccountDialog.d.ts.map +1 -0
  18. package/packages/app-core/src/components/accounts/AddAccountDialog.js +277 -0
  19. package/packages/app-core/src/components/accounts/RotationStrategyPicker.d.ts +16 -0
  20. package/packages/app-core/src/components/accounts/RotationStrategyPicker.d.ts.map +1 -0
  21. package/packages/app-core/src/components/accounts/RotationStrategyPicker.js +50 -0
  22. package/packages/app-core/src/components/pages/PluginsView.d.ts.map +1 -1
  23. package/packages/app-core/src/components/pages/PluginsView.js +3 -34
  24. package/packages/app-core/src/components/settings/ProviderSwitcher.d.ts.map +1 -1
  25. package/packages/app-core/src/components/settings/ProviderSwitcher.js +2 -1
  26. package/packages/app-core/src/hooks/useAccounts.d.ts +41 -0
  27. package/packages/app-core/src/hooks/useAccounts.d.ts.map +1 -0
  28. package/packages/app-core/src/hooks/useAccounts.js +250 -0
  29. package/packages/app-core/src/i18n/locales/en.json +31 -31
  30. package/packages/app-core/src/i18n/locales/es.json +31 -31
  31. package/packages/app-core/src/i18n/locales/ko.json +31 -31
  32. package/packages/app-core/src/i18n/locales/pt.json +31 -31
  33. package/packages/app-core/src/i18n/locales/tl.json +31 -31
  34. package/packages/app-core/src/i18n/locales/vi.json +31 -31
  35. package/packages/app-core/src/i18n/locales/zh-CN.json +31 -31
  36. package/packages/typescript/src/features/basic-capabilities/index.d.ts +1 -0
  37. package/packages/typescript/src/features/basic-capabilities/index.d.ts.map +1 -1
  38. package/packages/typescript/src/features/basic-capabilities/index.js +4 -0
  39. package/packages/typescript/src/features/index.d.ts.map +1 -1
  40. package/packages/typescript/src/features/index.js +2 -7
  41. package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/core-status.d.ts +14 -0
  42. package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/core-status.d.ts.map +1 -0
  43. package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/core-status.js +48 -0
  44. package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/create.d.ts +32 -0
  45. package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/create.d.ts.map +1 -0
  46. package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/create.js +502 -0
  47. package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/eject.d.ts +16 -0
  48. package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/eject.d.ts.map +1 -0
  49. package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/eject.js +47 -0
  50. package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/install.d.ts +18 -0
  51. package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/install.d.ts.map +1 -0
  52. package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/install.js +59 -0
  53. package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/list-ejected.d.ts +14 -0
  54. package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/list-ejected.d.ts.map +1 -0
  55. package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/list-ejected.js +31 -0
  56. package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/list.d.ts +14 -0
  57. package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/list.d.ts.map +1 -0
  58. package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/list.js +51 -0
  59. package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/reinject.d.ts +15 -0
  60. package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/reinject.d.ts.map +1 -0
  61. package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/reinject.js +43 -0
  62. package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/search.d.ts +15 -0
  63. package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/search.d.ts.map +1 -0
  64. package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/search.js +52 -0
  65. package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/sync.d.ts +15 -0
  66. package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/sync.d.ts.map +1 -0
  67. package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/sync.js +48 -0
  68. package/packages/typescript/src/features/plugin-manager/actions/plugin.d.ts +25 -0
  69. package/packages/typescript/src/features/plugin-manager/actions/plugin.d.ts.map +1 -0
  70. package/packages/typescript/src/features/plugin-manager/actions/plugin.js +439 -0
  71. package/packages/typescript/src/features/plugin-manager/index.d.ts +2 -0
  72. package/packages/typescript/src/features/plugin-manager/index.d.ts.map +1 -1
  73. package/packages/typescript/src/features/plugin-manager/index.js +7 -10
  74. package/packages/typescript/src/features/plugin-manager/security.d.ts +33 -0
  75. package/packages/typescript/src/features/plugin-manager/security.d.ts.map +1 -0
  76. package/packages/typescript/src/features/plugin-manager/security.js +80 -0
  77. package/packages/app-core/src/runtime/plugin-manager-guard.d.ts +0 -12
  78. package/packages/app-core/src/runtime/plugin-manager-guard.d.ts.map +0 -1
  79. package/packages/app-core/src/runtime/plugin-manager-guard.js +0 -82
@@ -0,0 +1,250 @@
1
+ /**
2
+ * useAccounts — fetches and mutates the multi-account credential pool
3
+ * surfaced by `/api/accounts/*`.
4
+ *
5
+ * Polls `client.listAccounts()` on a configurable interval (default 30s)
6
+ * to keep usage / health rows fresh. Each mutation routes through the
7
+ * matching client method, applies an optimistic local update where safe,
8
+ * and reconciles after the server response. Failures bubble through
9
+ * `setActionNotice` so the parent settings panel can surface them.
10
+ */
11
+ import { useCallback, useEffect, useRef, useState } from "react";
12
+ import { client } from "../api";
13
+ const DEFAULT_POLL_MS = 30_000;
14
+ function describeError(prefix, err) {
15
+ const message = err instanceof Error && err.message.trim()
16
+ ? `${prefix}: ${err.message}`
17
+ : prefix;
18
+ return message;
19
+ }
20
+ function replaceAccount(list, providerId, next) {
21
+ if (!list)
22
+ return list;
23
+ return {
24
+ providers: list.providers.map((p) => {
25
+ if (p.providerId !== providerId)
26
+ return p;
27
+ const existing = p.accounts.find((a) => a.id === next.id);
28
+ const merged = existing
29
+ ? { ...existing, ...next }
30
+ : { ...next, hasCredential: true };
31
+ return {
32
+ ...p,
33
+ accounts: p.accounts
34
+ .map((a) => (a.id === next.id ? merged : a))
35
+ .sort((a, b) => a.priority - b.priority),
36
+ };
37
+ }),
38
+ };
39
+ }
40
+ export function useAccounts(opts = {}) {
41
+ const { setActionNotice, pollMs = DEFAULT_POLL_MS } = opts;
42
+ const [data, setData] = useState(null);
43
+ const [loading, setLoading] = useState(true);
44
+ const [saving, setSaving] = useState(() => new Set());
45
+ const mountedRef = useRef(true);
46
+ const notify = useCallback((prefix, err) => {
47
+ setActionNotice?.(describeError(prefix, err), "error", 6000);
48
+ }, [setActionNotice]);
49
+ const refresh = useCallback(async () => {
50
+ try {
51
+ const next = await client.listAccounts();
52
+ if (!mountedRef.current)
53
+ return;
54
+ setData(next);
55
+ }
56
+ catch (err) {
57
+ if (!mountedRef.current)
58
+ return;
59
+ notify("Failed to load accounts", err);
60
+ }
61
+ finally {
62
+ if (mountedRef.current)
63
+ setLoading(false);
64
+ }
65
+ }, [notify]);
66
+ const markSaving = useCallback((id, on) => {
67
+ setSaving((prev) => {
68
+ const next = new Set(prev);
69
+ if (on)
70
+ next.add(id);
71
+ else
72
+ next.delete(id);
73
+ return next;
74
+ });
75
+ }, []);
76
+ const createApiKey = useCallback(async (providerId, body) => {
77
+ const key = `create:${providerId}`;
78
+ markSaving(key, true);
79
+ try {
80
+ const created = await client.createApiKeyAccount(providerId, body);
81
+ setData((prev) => {
82
+ if (!prev)
83
+ return prev;
84
+ return {
85
+ providers: prev.providers.map((p) => {
86
+ if (p.providerId !== providerId)
87
+ return p;
88
+ const accounts = [
89
+ ...p.accounts,
90
+ { ...created, hasCredential: true },
91
+ ].sort((a, b) => a.priority - b.priority);
92
+ return { ...p, accounts };
93
+ }),
94
+ };
95
+ });
96
+ await refresh();
97
+ }
98
+ catch (err) {
99
+ notify("Failed to create account", err);
100
+ throw err;
101
+ }
102
+ finally {
103
+ markSaving(key, false);
104
+ }
105
+ }, [markSaving, notify, refresh]);
106
+ const patch = useCallback(async (providerId, accountId, body) => {
107
+ markSaving(accountId, true);
108
+ const previous = data;
109
+ // Optimistic update for safe fields.
110
+ setData((prev) => {
111
+ if (!prev)
112
+ return prev;
113
+ return {
114
+ providers: prev.providers.map((p) => {
115
+ if (p.providerId !== providerId)
116
+ return p;
117
+ return {
118
+ ...p,
119
+ accounts: p.accounts
120
+ .map((a) => (a.id === accountId ? { ...a, ...body } : a))
121
+ .sort((x, y) => x.priority - y.priority),
122
+ };
123
+ }),
124
+ };
125
+ });
126
+ try {
127
+ const updated = await client.patchAccount(providerId, accountId, body);
128
+ setData((prev) => replaceAccount(prev, providerId, updated));
129
+ }
130
+ catch (err) {
131
+ setData(previous);
132
+ notify("Failed to update account", err);
133
+ throw err;
134
+ }
135
+ finally {
136
+ markSaving(accountId, false);
137
+ }
138
+ }, [data, markSaving, notify]);
139
+ const remove = useCallback(async (providerId, accountId) => {
140
+ markSaving(accountId, true);
141
+ try {
142
+ await client.deleteAccount(providerId, accountId);
143
+ setData((prev) => {
144
+ if (!prev)
145
+ return prev;
146
+ return {
147
+ providers: prev.providers.map((p) => p.providerId === providerId
148
+ ? {
149
+ ...p,
150
+ accounts: p.accounts.filter((a) => a.id !== accountId),
151
+ }
152
+ : p),
153
+ };
154
+ });
155
+ }
156
+ catch (err) {
157
+ notify("Failed to delete account", err);
158
+ throw err;
159
+ }
160
+ finally {
161
+ markSaving(accountId, false);
162
+ }
163
+ }, [markSaving, notify]);
164
+ const test = useCallback(async (providerId, accountId) => {
165
+ markSaving(`test:${accountId}`, true);
166
+ try {
167
+ const result = await client.testAccount(providerId, accountId);
168
+ if (result.ok) {
169
+ setActionNotice?.(`Connection OK${typeof result.latencyMs === "number"
170
+ ? ` (${result.latencyMs}ms)`
171
+ : ""}`, "success", 3000);
172
+ }
173
+ else {
174
+ setActionNotice?.(`Connection failed: ${result.error ?? `HTTP ${result.status ?? "?"}`}`, "error", 6000);
175
+ }
176
+ return result;
177
+ }
178
+ catch (err) {
179
+ notify("Failed to test account", err);
180
+ throw err;
181
+ }
182
+ finally {
183
+ markSaving(`test:${accountId}`, false);
184
+ }
185
+ }, [markSaving, notify, setActionNotice]);
186
+ const refreshUsage = useCallback(async (providerId, accountId) => {
187
+ markSaving(`usage:${accountId}`, true);
188
+ try {
189
+ const result = await client.refreshAccountUsage(providerId, accountId);
190
+ setData((prev) => replaceAccount(prev, providerId, result.account));
191
+ }
192
+ catch (err) {
193
+ notify("Failed to refresh usage", err);
194
+ throw err;
195
+ }
196
+ finally {
197
+ markSaving(`usage:${accountId}`, false);
198
+ }
199
+ }, [markSaving, notify]);
200
+ const setStrategy = useCallback(async (providerId, strategy) => {
201
+ const key = `strategy:${providerId}`;
202
+ markSaving(key, true);
203
+ const previous = data;
204
+ setData((prev) => {
205
+ if (!prev)
206
+ return prev;
207
+ return {
208
+ providers: prev.providers.map((p) => p.providerId === providerId ? { ...p, strategy } : p),
209
+ };
210
+ });
211
+ try {
212
+ await client.patchProviderStrategy(providerId, { strategy });
213
+ }
214
+ catch (err) {
215
+ setData(previous);
216
+ notify("Failed to update rotation strategy", err);
217
+ throw err;
218
+ }
219
+ finally {
220
+ markSaving(key, false);
221
+ }
222
+ }, [data, markSaving, notify]);
223
+ useEffect(() => {
224
+ mountedRef.current = true;
225
+ void refresh();
226
+ return () => {
227
+ mountedRef.current = false;
228
+ };
229
+ }, [refresh]);
230
+ useEffect(() => {
231
+ if (pollMs <= 0)
232
+ return;
233
+ const id = setInterval(() => {
234
+ void refresh();
235
+ }, pollMs);
236
+ return () => clearInterval(id);
237
+ }, [pollMs, refresh]);
238
+ return {
239
+ data,
240
+ loading,
241
+ saving,
242
+ refresh,
243
+ createApiKey,
244
+ patch,
245
+ remove,
246
+ test,
247
+ refreshUsage,
248
+ setStrategy,
249
+ };
250
+ }
@@ -2418,34 +2418,34 @@
2418
2418
  "runtime.failed": "FAILED",
2419
2419
  "runtime.starting": "STARTING",
2420
2420
  "runtime.stopped": "STOPPED",
2421
- "runtimegate.autoCreating": "Auto Creating",
2422
- "runtimegate.cloudDesc": "Cloud Desc",
2423
- "runtimegate.cloudEyebrow": "Cloud Eyebrow",
2424
- "runtimegate.cloudLoginEyebrow": "Cloud Login Eyebrow",
2425
- "runtimegate.cloudTitle": "Cloud Title",
2426
- "runtimegate.connecting": "Connecting",
2427
- "runtimegate.creating": "Creating",
2428
- "runtimegate.failedCreate": "Failed Create",
2429
- "runtimegate.failedLoadAgents": "Failed Load Agents",
2430
- "runtimegate.loadingAgents": "Loading Agents",
2431
- "runtimegate.localDesc": "Local Desc",
2432
- "runtimegate.localEyebrow": "Local Eyebrow",
2433
- "runtimegate.localTitle": "Local Title",
2434
- "runtimegate.provisioning": "Provisioning",
2435
- "runtimegate.remoteConnectEyebrow": "Remote Connect Eyebrow",
2436
- "runtimegate.remoteDesc": "Remote Desc",
2437
- "runtimegate.remoteEyebrow": "Remote Eyebrow",
2438
- "runtimegate.remoteTitle": "Remote Title",
2439
- "runtimegate.remoteTokenPlaceholder": "Remote Token Placeholder",
2440
- "runtimegate.remoteUrlPlaceholder": "Remote Url Placeholder",
2421
+ "runtimegate.autoCreating": "Setting up your first agent...",
2422
+ "runtimegate.cloudDesc": "Hosted agent with managed LLMs and connectors. Fastest start.",
2423
+ "runtimegate.cloudEyebrow": "Eliza Cloud",
2424
+ "runtimegate.cloudLoginEyebrow": "Sign in to Eliza Cloud",
2425
+ "runtimegate.cloudTitle": "Run in Eliza Cloud",
2426
+ "runtimegate.connecting": "Connecting...",
2427
+ "runtimegate.creating": "Creating agent...",
2428
+ "runtimegate.failedCreate": "Failed to create agent. Try again.",
2429
+ "runtimegate.failedLoadAgents": "Failed to load agents",
2430
+ "runtimegate.loadingAgents": "Loading your agent...",
2431
+ "runtimegate.localDesc": "Keep the agent on this machine. You'll pick a provider after start.",
2432
+ "runtimegate.localEyebrow": "This device",
2433
+ "runtimegate.localTitle": "Run a local agent",
2434
+ "runtimegate.provisioning": "Provisioning...",
2435
+ "runtimegate.remoteConnectEyebrow": "Connect to a remote agent",
2436
+ "runtimegate.remoteDesc": "Point at an agent you're already running (e.g. on your Mac).",
2437
+ "runtimegate.remoteEyebrow": "Remote agent",
2438
+ "runtimegate.remoteTitle": "Connect to an existing agent",
2439
+ "runtimegate.remoteTokenPlaceholder": "Access token (optional)",
2440
+ "runtimegate.remoteUrlPlaceholder": "https://your-agent.example.com",
2441
2441
  "runtimegate.retry": "Retry",
2442
- "runtimegate.signIn": "Sign In",
2443
- "runtimegate.startingProvisioning": "Starting Provisioning",
2444
- "runtimegate.subtitle": "Subtitle",
2445
- "runtimegate.title": "Title",
2446
- "runtimegate.unknownError": "Unknown Error",
2447
- "runtimegate.waitingForAuth": "Waiting For Auth",
2448
- "runtimegate.yourAgents": "Your Agents",
2442
+ "runtimegate.signIn": "Sign in with Eliza Cloud",
2443
+ "runtimegate.startingProvisioning": "Starting provisioning...",
2444
+ "runtimegate.subtitle": "Where should your agent run?",
2445
+ "runtimegate.title": "Choose your setup",
2446
+ "runtimegate.unknownError": "Unknown error",
2447
+ "runtimegate.waitingForAuth": "Waiting for auth...",
2448
+ "runtimegate.yourAgents": "Your cloud agents",
2449
2449
  "runtimeview.actions": "actions:",
2450
2450
  "runtimeview.actionsDescription": "Review registered actions and their load order in the active runtime.",
2451
2451
  "runtimeview.agent": "agent:",
@@ -2582,12 +2582,12 @@
2582
2582
  "settings.sections.autoTraining.label": "Auto-training",
2583
2583
  "settings.sections.backupReset.desc": "Back up the agent, restore from a backup, or wipe everything and start over",
2584
2584
  "settings.sections.backupReset.label": "Backup & Reset",
2585
- "settings.sections.capabilities.autoTrainingLabel": "Auto Training Label",
2586
- "settings.sections.capabilities.autoTrainingName": "Auto Training Name",
2585
+ "settings.sections.capabilities.autoTrainingLabel": "Enable Auto-training",
2586
+ "settings.sections.capabilities.autoTrainingName": "Auto-training",
2587
2587
  "settings.sections.capabilities.browserHint": "Show the Browser tab for agent-controlled web browsing",
2588
2588
  "settings.sections.capabilities.browserLabel": "Enable Browser",
2589
- "settings.sections.capabilities.computerUseHint": "Computer Use Hint",
2590
- "settings.sections.capabilities.computerUseLabel": "Computer Use Label",
2589
+ "settings.sections.capabilities.computerUseHint": "Computer Use requires Accessibility and Screen Recording permissions.",
2590
+ "settings.sections.capabilities.computerUseLabel": "Enable Computer Use",
2591
2591
  "settings.sections.capabilities.computerUseModeOption.fullControl": "Full Control",
2592
2592
  "settings.sections.capabilities.computerUseModeOption.pauseComputerUse": "Pause Computer Use",
2593
2593
  "settings.sections.capabilities.computerUseModeOption.reviewEveryAction": "Review Every Action",
@@ -2418,34 +2418,34 @@
2418
2418
  "runtime.failed": "FALLÓ",
2419
2419
  "runtime.starting": "INICIANDO",
2420
2420
  "runtime.stopped": "DETENIDO",
2421
- "runtimegate.autoCreating": "Auto Creating",
2422
- "runtimegate.cloudDesc": "Cloud Desc",
2423
- "runtimegate.cloudEyebrow": "Cloud Eyebrow",
2424
- "runtimegate.cloudLoginEyebrow": "Cloud Login Eyebrow",
2425
- "runtimegate.cloudTitle": "Cloud Title",
2426
- "runtimegate.connecting": "Connecting",
2427
- "runtimegate.creating": "Creating",
2428
- "runtimegate.failedCreate": "Failed Create",
2429
- "runtimegate.failedLoadAgents": "Failed Load Agents",
2430
- "runtimegate.loadingAgents": "Loading Agents",
2431
- "runtimegate.localDesc": "Local Desc",
2432
- "runtimegate.localEyebrow": "Local Eyebrow",
2433
- "runtimegate.localTitle": "Local Title",
2434
- "runtimegate.provisioning": "Provisioning",
2435
- "runtimegate.remoteConnectEyebrow": "Remote Connect Eyebrow",
2436
- "runtimegate.remoteDesc": "Remote Desc",
2437
- "runtimegate.remoteEyebrow": "Remote Eyebrow",
2438
- "runtimegate.remoteTitle": "Remote Title",
2439
- "runtimegate.remoteTokenPlaceholder": "Remote Token Placeholder",
2440
- "runtimegate.remoteUrlPlaceholder": "Remote Url Placeholder",
2421
+ "runtimegate.autoCreating": "Setting up your first agent...",
2422
+ "runtimegate.cloudDesc": "Hosted agent with managed LLMs and connectors. Fastest start.",
2423
+ "runtimegate.cloudEyebrow": "Eliza Cloud",
2424
+ "runtimegate.cloudLoginEyebrow": "Sign in to Eliza Cloud",
2425
+ "runtimegate.cloudTitle": "Run in Eliza Cloud",
2426
+ "runtimegate.connecting": "Connecting...",
2427
+ "runtimegate.creating": "Creating agent...",
2428
+ "runtimegate.failedCreate": "Failed to create agent. Try again.",
2429
+ "runtimegate.failedLoadAgents": "Failed to load agents",
2430
+ "runtimegate.loadingAgents": "Loading your agent...",
2431
+ "runtimegate.localDesc": "Keep the agent on this machine. You'll pick a provider after start.",
2432
+ "runtimegate.localEyebrow": "This device",
2433
+ "runtimegate.localTitle": "Run a local agent",
2434
+ "runtimegate.provisioning": "Provisioning...",
2435
+ "runtimegate.remoteConnectEyebrow": "Connect to a remote agent",
2436
+ "runtimegate.remoteDesc": "Point at an agent you're already running (e.g. on your Mac).",
2437
+ "runtimegate.remoteEyebrow": "Remote agent",
2438
+ "runtimegate.remoteTitle": "Connect to an existing agent",
2439
+ "runtimegate.remoteTokenPlaceholder": "Access token (optional)",
2440
+ "runtimegate.remoteUrlPlaceholder": "https://your-agent.example.com",
2441
2441
  "runtimegate.retry": "Retry",
2442
- "runtimegate.signIn": "Sign In",
2443
- "runtimegate.startingProvisioning": "Starting Provisioning",
2444
- "runtimegate.subtitle": "Subtitle",
2445
- "runtimegate.title": "Title",
2446
- "runtimegate.unknownError": "Unknown Error",
2447
- "runtimegate.waitingForAuth": "Waiting For Auth",
2448
- "runtimegate.yourAgents": "Your Agents",
2442
+ "runtimegate.signIn": "Sign in with Eliza Cloud",
2443
+ "runtimegate.startingProvisioning": "Starting provisioning...",
2444
+ "runtimegate.subtitle": "Where should your agent run?",
2445
+ "runtimegate.title": "Choose your setup",
2446
+ "runtimegate.unknownError": "Unknown error",
2447
+ "runtimegate.waitingForAuth": "Waiting for auth...",
2448
+ "runtimegate.yourAgents": "Your cloud agents",
2449
2449
  "runtimeview.actions": "acciones:",
2450
2450
  "runtimeview.actionsDescription": "Revisa las acciones registradas y su orden de carga en el runtime activo.",
2451
2451
  "runtimeview.agent": "agente:",
@@ -2583,12 +2583,12 @@
2583
2583
  "settings.sections.autoTraining.label": "Auto-entrenamiento",
2584
2584
  "settings.sections.backupReset.desc": "Haz una copia de seguridad del agente, restaura desde una copia o borra todo y empieza de nuevo",
2585
2585
  "settings.sections.backupReset.label": "Copia de seguridad y restablecimiento",
2586
- "settings.sections.capabilities.autoTrainingLabel": "Auto Training Label",
2587
- "settings.sections.capabilities.autoTrainingName": "Auto Training Name",
2586
+ "settings.sections.capabilities.autoTrainingLabel": "Habilitar auto-entrenamiento",
2587
+ "settings.sections.capabilities.autoTrainingName": "Auto-entrenamiento",
2588
2588
  "settings.sections.capabilities.browserHint": "Mostrar la pestaña del navegador para navegación web controlada por el agente",
2589
2589
  "settings.sections.capabilities.browserLabel": "Habilitar Navegador",
2590
- "settings.sections.capabilities.computerUseHint": "Computer Use Hint",
2591
- "settings.sections.capabilities.computerUseLabel": "Computer Use Label",
2590
+ "settings.sections.capabilities.computerUseHint": "El uso del equipo requiere permisos de accesibilidad y grabación de pantalla.",
2591
+ "settings.sections.capabilities.computerUseLabel": "Habilitar uso del equipo",
2592
2592
  "settings.sections.capabilities.computerUseModeOption.fullControl": "Control total",
2593
2593
  "settings.sections.capabilities.computerUseModeOption.pauseComputerUse": "Pausar uso del equipo",
2594
2594
  "settings.sections.capabilities.computerUseModeOption.reviewEveryAction": "Revisar cada acción",
@@ -2418,34 +2418,34 @@
2418
2418
  "runtime.failed": "실패",
2419
2419
  "runtime.starting": "시작 중",
2420
2420
  "runtime.stopped": "중지됨",
2421
- "runtimegate.autoCreating": "Auto Creating",
2422
- "runtimegate.cloudDesc": "Cloud Desc",
2423
- "runtimegate.cloudEyebrow": "Cloud Eyebrow",
2424
- "runtimegate.cloudLoginEyebrow": "Cloud Login Eyebrow",
2425
- "runtimegate.cloudTitle": "Cloud Title",
2426
- "runtimegate.connecting": "Connecting",
2427
- "runtimegate.creating": "Creating",
2428
- "runtimegate.failedCreate": "Failed Create",
2429
- "runtimegate.failedLoadAgents": "Failed Load Agents",
2430
- "runtimegate.loadingAgents": "Loading Agents",
2431
- "runtimegate.localDesc": "Local Desc",
2432
- "runtimegate.localEyebrow": "Local Eyebrow",
2433
- "runtimegate.localTitle": "Local Title",
2434
- "runtimegate.provisioning": "Provisioning",
2435
- "runtimegate.remoteConnectEyebrow": "Remote Connect Eyebrow",
2436
- "runtimegate.remoteDesc": "Remote Desc",
2437
- "runtimegate.remoteEyebrow": "Remote Eyebrow",
2438
- "runtimegate.remoteTitle": "Remote Title",
2439
- "runtimegate.remoteTokenPlaceholder": "Remote Token Placeholder",
2440
- "runtimegate.remoteUrlPlaceholder": "Remote Url Placeholder",
2421
+ "runtimegate.autoCreating": "Setting up your first agent...",
2422
+ "runtimegate.cloudDesc": "Hosted agent with managed LLMs and connectors. Fastest start.",
2423
+ "runtimegate.cloudEyebrow": "Eliza Cloud",
2424
+ "runtimegate.cloudLoginEyebrow": "Sign in to Eliza Cloud",
2425
+ "runtimegate.cloudTitle": "Run in Eliza Cloud",
2426
+ "runtimegate.connecting": "Connecting...",
2427
+ "runtimegate.creating": "Creating agent...",
2428
+ "runtimegate.failedCreate": "Failed to create agent. Try again.",
2429
+ "runtimegate.failedLoadAgents": "Failed to load agents",
2430
+ "runtimegate.loadingAgents": "Loading your agent...",
2431
+ "runtimegate.localDesc": "Keep the agent on this machine. You'll pick a provider after start.",
2432
+ "runtimegate.localEyebrow": "This device",
2433
+ "runtimegate.localTitle": "Run a local agent",
2434
+ "runtimegate.provisioning": "Provisioning...",
2435
+ "runtimegate.remoteConnectEyebrow": "Connect to a remote agent",
2436
+ "runtimegate.remoteDesc": "Point at an agent you're already running (e.g. on your Mac).",
2437
+ "runtimegate.remoteEyebrow": "Remote agent",
2438
+ "runtimegate.remoteTitle": "Connect to an existing agent",
2439
+ "runtimegate.remoteTokenPlaceholder": "Access token (optional)",
2440
+ "runtimegate.remoteUrlPlaceholder": "https://your-agent.example.com",
2441
2441
  "runtimegate.retry": "Retry",
2442
- "runtimegate.signIn": "Sign In",
2443
- "runtimegate.startingProvisioning": "Starting Provisioning",
2444
- "runtimegate.subtitle": "Subtitle",
2445
- "runtimegate.title": "Title",
2446
- "runtimegate.unknownError": "Unknown Error",
2447
- "runtimegate.waitingForAuth": "Waiting For Auth",
2448
- "runtimegate.yourAgents": "Your Agents",
2442
+ "runtimegate.signIn": "Sign in with Eliza Cloud",
2443
+ "runtimegate.startingProvisioning": "Starting provisioning...",
2444
+ "runtimegate.subtitle": "Where should your agent run?",
2445
+ "runtimegate.title": "Choose your setup",
2446
+ "runtimegate.unknownError": "Unknown error",
2447
+ "runtimegate.waitingForAuth": "Waiting for auth...",
2448
+ "runtimegate.yourAgents": "Your cloud agents",
2449
2449
  "runtimeview.actions": "액션:",
2450
2450
  "runtimeview.actionsDescription": "활성 런타임에 등록된 작업과 그 로드 순서를 검토하세요.",
2451
2451
  "runtimeview.agent": "에이전트:",
@@ -2583,12 +2583,12 @@
2583
2583
  "settings.sections.autoTraining.label": "자동 학습",
2584
2584
  "settings.sections.backupReset.desc": "에이전트를 백업하고, 백업에서 복원하거나, 모두 지우고 처음부터 다시 시작합니다",
2585
2585
  "settings.sections.backupReset.label": "백업 및 초기화",
2586
- "settings.sections.capabilities.autoTrainingLabel": "Auto Training Label",
2587
- "settings.sections.capabilities.autoTrainingName": "Auto Training Name",
2586
+ "settings.sections.capabilities.autoTrainingLabel": "자동 학습 활성화",
2587
+ "settings.sections.capabilities.autoTrainingName": "자동 학습",
2588
2588
  "settings.sections.capabilities.browserHint": "에이전트 제어 웹 브라우징을 위한 브라우저 탭 표시",
2589
2589
  "settings.sections.capabilities.browserLabel": "브라우저 활성화",
2590
- "settings.sections.capabilities.computerUseHint": "Computer Use Hint",
2591
- "settings.sections.capabilities.computerUseLabel": "Computer Use Label",
2590
+ "settings.sections.capabilities.computerUseHint": "Computer Use 사용하려면 손쉬운 사용 및 화면 기록 권한이 필요합니다.",
2591
+ "settings.sections.capabilities.computerUseLabel": "Computer Use 활성화",
2592
2592
  "settings.sections.capabilities.computerUseModeOption.fullControl": "전체 제어",
2593
2593
  "settings.sections.capabilities.computerUseModeOption.pauseComputerUse": "컴퓨터 사용 일시정지",
2594
2594
  "settings.sections.capabilities.computerUseModeOption.reviewEveryAction": "모든 액션 검토",
@@ -2418,34 +2418,34 @@
2418
2418
  "runtime.failed": "FALHOU",
2419
2419
  "runtime.starting": "INICIANDO",
2420
2420
  "runtime.stopped": "PARADO",
2421
- "runtimegate.autoCreating": "Auto Creating",
2422
- "runtimegate.cloudDesc": "Cloud Desc",
2423
- "runtimegate.cloudEyebrow": "Cloud Eyebrow",
2424
- "runtimegate.cloudLoginEyebrow": "Cloud Login Eyebrow",
2425
- "runtimegate.cloudTitle": "Cloud Title",
2426
- "runtimegate.connecting": "Connecting",
2427
- "runtimegate.creating": "Creating",
2428
- "runtimegate.failedCreate": "Failed Create",
2429
- "runtimegate.failedLoadAgents": "Failed Load Agents",
2430
- "runtimegate.loadingAgents": "Loading Agents",
2431
- "runtimegate.localDesc": "Local Desc",
2432
- "runtimegate.localEyebrow": "Local Eyebrow",
2433
- "runtimegate.localTitle": "Local Title",
2434
- "runtimegate.provisioning": "Provisioning",
2435
- "runtimegate.remoteConnectEyebrow": "Remote Connect Eyebrow",
2436
- "runtimegate.remoteDesc": "Remote Desc",
2437
- "runtimegate.remoteEyebrow": "Remote Eyebrow",
2438
- "runtimegate.remoteTitle": "Remote Title",
2439
- "runtimegate.remoteTokenPlaceholder": "Remote Token Placeholder",
2440
- "runtimegate.remoteUrlPlaceholder": "Remote Url Placeholder",
2421
+ "runtimegate.autoCreating": "Setting up your first agent...",
2422
+ "runtimegate.cloudDesc": "Hosted agent with managed LLMs and connectors. Fastest start.",
2423
+ "runtimegate.cloudEyebrow": "Eliza Cloud",
2424
+ "runtimegate.cloudLoginEyebrow": "Sign in to Eliza Cloud",
2425
+ "runtimegate.cloudTitle": "Run in Eliza Cloud",
2426
+ "runtimegate.connecting": "Connecting...",
2427
+ "runtimegate.creating": "Creating agent...",
2428
+ "runtimegate.failedCreate": "Failed to create agent. Try again.",
2429
+ "runtimegate.failedLoadAgents": "Failed to load agents",
2430
+ "runtimegate.loadingAgents": "Loading your agent...",
2431
+ "runtimegate.localDesc": "Keep the agent on this machine. You'll pick a provider after start.",
2432
+ "runtimegate.localEyebrow": "This device",
2433
+ "runtimegate.localTitle": "Run a local agent",
2434
+ "runtimegate.provisioning": "Provisioning...",
2435
+ "runtimegate.remoteConnectEyebrow": "Connect to a remote agent",
2436
+ "runtimegate.remoteDesc": "Point at an agent you're already running (e.g. on your Mac).",
2437
+ "runtimegate.remoteEyebrow": "Remote agent",
2438
+ "runtimegate.remoteTitle": "Connect to an existing agent",
2439
+ "runtimegate.remoteTokenPlaceholder": "Access token (optional)",
2440
+ "runtimegate.remoteUrlPlaceholder": "https://your-agent.example.com",
2441
2441
  "runtimegate.retry": "Retry",
2442
- "runtimegate.signIn": "Sign In",
2443
- "runtimegate.startingProvisioning": "Starting Provisioning",
2444
- "runtimegate.subtitle": "Subtitle",
2445
- "runtimegate.title": "Title",
2446
- "runtimegate.unknownError": "Unknown Error",
2447
- "runtimegate.waitingForAuth": "Waiting For Auth",
2448
- "runtimegate.yourAgents": "Your Agents",
2442
+ "runtimegate.signIn": "Sign in with Eliza Cloud",
2443
+ "runtimegate.startingProvisioning": "Starting provisioning...",
2444
+ "runtimegate.subtitle": "Where should your agent run?",
2445
+ "runtimegate.title": "Choose your setup",
2446
+ "runtimegate.unknownError": "Unknown error",
2447
+ "runtimegate.waitingForAuth": "Waiting for auth...",
2448
+ "runtimegate.yourAgents": "Your cloud agents",
2449
2449
  "runtimeview.actions": "ações:",
2450
2450
  "runtimeview.actionsDescription": "Revise as ações registradas e a ordem de carregamento no runtime ativo.",
2451
2451
  "runtimeview.agent": "agente:",
@@ -2582,12 +2582,12 @@
2582
2582
  "settings.sections.autoTraining.label": "Treinamento automático",
2583
2583
  "settings.sections.backupReset.desc": "Faça backup do agente, restaure de um backup ou apague tudo e comece do zero",
2584
2584
  "settings.sections.backupReset.label": "Backup e Redefinir",
2585
- "settings.sections.capabilities.autoTrainingLabel": "Auto Training Label",
2586
- "settings.sections.capabilities.autoTrainingName": "Auto Training Name",
2585
+ "settings.sections.capabilities.autoTrainingLabel": "Ativar auto-treinamento",
2586
+ "settings.sections.capabilities.autoTrainingName": "Auto-treinamento",
2587
2587
  "settings.sections.capabilities.browserHint": "Mostrar a aba do navegador para navegacao web controlada pelo agente",
2588
2588
  "settings.sections.capabilities.browserLabel": "Habilitar Navegador",
2589
- "settings.sections.capabilities.computerUseHint": "Computer Use Hint",
2590
- "settings.sections.capabilities.computerUseLabel": "Computer Use Label",
2589
+ "settings.sections.capabilities.computerUseHint": "O uso do computador requer permissões de acessibilidade e gravação de tela.",
2590
+ "settings.sections.capabilities.computerUseLabel": "Ativar uso do computador",
2591
2591
  "settings.sections.capabilities.computerUseModeOption.fullControl": "Controle total",
2592
2592
  "settings.sections.capabilities.computerUseModeOption.pauseComputerUse": "Pausar uso do computador",
2593
2593
  "settings.sections.capabilities.computerUseModeOption.reviewEveryAction": "Revisar cada ação",