@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.
- package/package.json +4 -4
- package/packages/agent/src/api/accounts-routes.d.ts +11 -3
- package/packages/agent/src/api/accounts-routes.d.ts.map +1 -1
- package/packages/agent/src/api/accounts-routes.js +70 -123
- package/packages/agent/src/api/subscription-routes.js +27 -23
- package/packages/agent/src/runtime/plugin-role-gating.js +4 -3
- package/packages/app-core/src/api/client-agent.d.ts +63 -1
- package/packages/app-core/src/api/client-agent.d.ts.map +1 -1
- package/packages/app-core/src/api/client-agent.js +51 -0
- package/packages/app-core/src/components/accounts/AccountCard.d.ts +30 -0
- package/packages/app-core/src/components/accounts/AccountCard.d.ts.map +1 -0
- package/packages/app-core/src/components/accounts/AccountCard.js +183 -0
- package/packages/app-core/src/components/accounts/AccountList.d.ts +15 -0
- package/packages/app-core/src/components/accounts/AccountList.d.ts.map +1 -0
- package/packages/app-core/src/components/accounts/AccountList.js +80 -0
- package/packages/app-core/src/components/accounts/AddAccountDialog.d.ts +33 -0
- package/packages/app-core/src/components/accounts/AddAccountDialog.d.ts.map +1 -0
- package/packages/app-core/src/components/accounts/AddAccountDialog.js +277 -0
- package/packages/app-core/src/components/accounts/RotationStrategyPicker.d.ts +16 -0
- package/packages/app-core/src/components/accounts/RotationStrategyPicker.d.ts.map +1 -0
- package/packages/app-core/src/components/accounts/RotationStrategyPicker.js +50 -0
- package/packages/app-core/src/components/pages/PluginsView.d.ts.map +1 -1
- package/packages/app-core/src/components/pages/PluginsView.js +3 -34
- package/packages/app-core/src/components/settings/ProviderSwitcher.d.ts.map +1 -1
- package/packages/app-core/src/components/settings/ProviderSwitcher.js +2 -1
- package/packages/app-core/src/hooks/useAccounts.d.ts +41 -0
- package/packages/app-core/src/hooks/useAccounts.d.ts.map +1 -0
- package/packages/app-core/src/hooks/useAccounts.js +250 -0
- package/packages/app-core/src/i18n/locales/en.json +31 -31
- package/packages/app-core/src/i18n/locales/es.json +31 -31
- package/packages/app-core/src/i18n/locales/ko.json +31 -31
- package/packages/app-core/src/i18n/locales/pt.json +31 -31
- package/packages/app-core/src/i18n/locales/tl.json +31 -31
- package/packages/app-core/src/i18n/locales/vi.json +31 -31
- package/packages/app-core/src/i18n/locales/zh-CN.json +31 -31
- package/packages/typescript/src/features/basic-capabilities/index.d.ts +1 -0
- package/packages/typescript/src/features/basic-capabilities/index.d.ts.map +1 -1
- package/packages/typescript/src/features/basic-capabilities/index.js +4 -0
- package/packages/typescript/src/features/index.d.ts.map +1 -1
- package/packages/typescript/src/features/index.js +2 -7
- package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/core-status.d.ts +14 -0
- package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/core-status.d.ts.map +1 -0
- package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/core-status.js +48 -0
- package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/create.d.ts +32 -0
- package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/create.d.ts.map +1 -0
- package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/create.js +502 -0
- package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/eject.d.ts +16 -0
- package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/eject.d.ts.map +1 -0
- package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/eject.js +47 -0
- package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/install.d.ts +18 -0
- package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/install.d.ts.map +1 -0
- package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/install.js +59 -0
- package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/list-ejected.d.ts +14 -0
- package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/list-ejected.d.ts.map +1 -0
- package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/list-ejected.js +31 -0
- package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/list.d.ts +14 -0
- package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/list.d.ts.map +1 -0
- package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/list.js +51 -0
- package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/reinject.d.ts +15 -0
- package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/reinject.d.ts.map +1 -0
- package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/reinject.js +43 -0
- package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/search.d.ts +15 -0
- package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/search.d.ts.map +1 -0
- package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/search.js +52 -0
- package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/sync.d.ts +15 -0
- package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/sync.d.ts.map +1 -0
- package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/sync.js +48 -0
- package/packages/typescript/src/features/plugin-manager/actions/plugin.d.ts +25 -0
- package/packages/typescript/src/features/plugin-manager/actions/plugin.d.ts.map +1 -0
- package/packages/typescript/src/features/plugin-manager/actions/plugin.js +439 -0
- package/packages/typescript/src/features/plugin-manager/index.d.ts +2 -0
- package/packages/typescript/src/features/plugin-manager/index.d.ts.map +1 -1
- package/packages/typescript/src/features/plugin-manager/index.js +7 -10
- package/packages/typescript/src/features/plugin-manager/security.d.ts +33 -0
- package/packages/typescript/src/features/plugin-manager/security.d.ts.map +1 -0
- package/packages/typescript/src/features/plugin-manager/security.js +80 -0
- package/packages/app-core/src/runtime/plugin-manager-guard.d.ts +0 -12
- package/packages/app-core/src/runtime/plugin-manager-guard.d.ts.map +0 -1
- package/packages/app-core/src/runtime/plugin-manager-guard.js +0 -82
|
@@ -2418,34 +2418,34 @@
|
|
|
2418
2418
|
"runtime.failed": "NABIGO",
|
|
2419
2419
|
"runtime.starting": "NAGSISIMULA",
|
|
2420
2420
|
"runtime.stopped": "HININTO",
|
|
2421
|
-
"runtimegate.autoCreating": "
|
|
2422
|
-
"runtimegate.cloudDesc": "
|
|
2423
|
-
"runtimegate.cloudEyebrow": "Cloud
|
|
2424
|
-
"runtimegate.cloudLoginEyebrow": "
|
|
2425
|
-
"runtimegate.cloudTitle": "Cloud
|
|
2426
|
-
"runtimegate.connecting": "Connecting",
|
|
2427
|
-
"runtimegate.creating": "Creating",
|
|
2428
|
-
"runtimegate.failedCreate": "Failed
|
|
2429
|
-
"runtimegate.failedLoadAgents": "Failed
|
|
2430
|
-
"runtimegate.loadingAgents": "Loading
|
|
2431
|
-
"runtimegate.localDesc": "
|
|
2432
|
-
"runtimegate.localEyebrow": "
|
|
2433
|
-
"runtimegate.localTitle": "
|
|
2434
|
-
"runtimegate.provisioning": "Provisioning",
|
|
2435
|
-
"runtimegate.remoteConnectEyebrow": "
|
|
2436
|
-
"runtimegate.remoteDesc": "
|
|
2437
|
-
"runtimegate.remoteEyebrow": "Remote
|
|
2438
|
-
"runtimegate.remoteTitle": "
|
|
2439
|
-
"runtimegate.remoteTokenPlaceholder": "
|
|
2440
|
-
"runtimegate.remoteUrlPlaceholder": "
|
|
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
|
|
2443
|
-
"runtimegate.startingProvisioning": "Starting
|
|
2444
|
-
"runtimegate.subtitle": "
|
|
2445
|
-
"runtimegate.title": "
|
|
2446
|
-
"runtimegate.unknownError": "Unknown
|
|
2447
|
-
"runtimegate.waitingForAuth": "Waiting
|
|
2448
|
-
"runtimegate.yourAgents": "Your
|
|
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": "mga action:",
|
|
2450
2450
|
"runtimeview.actionsDescription": "Suriin ang mga nakarehistrong action at ang pagkakasunod ng pag-load ng mga ito sa aktibong runtime.",
|
|
2451
2451
|
"runtimeview.agent": "ahente:",
|
|
@@ -2583,12 +2583,12 @@
|
|
|
2583
2583
|
"settings.sections.autoTraining.label": "Auto-training",
|
|
2584
2584
|
"settings.sections.backupReset.desc": "I-backup ang agent, i-restore mula sa backup, o burahin ang lahat at magsimula muli",
|
|
2585
2585
|
"settings.sections.backupReset.label": "Backup at I-reset",
|
|
2586
|
-
"settings.sections.capabilities.autoTrainingLabel": "
|
|
2587
|
-
"settings.sections.capabilities.autoTrainingName": "Auto
|
|
2586
|
+
"settings.sections.capabilities.autoTrainingLabel": "I-enable ang auto-training",
|
|
2587
|
+
"settings.sections.capabilities.autoTrainingName": "Auto-training",
|
|
2588
2588
|
"settings.sections.capabilities.browserHint": "Ipakita ang Browser tab para sa agent-controlled web browsing",
|
|
2589
2589
|
"settings.sections.capabilities.browserLabel": "I-enable ang Browser",
|
|
2590
|
-
"settings.sections.capabilities.computerUseHint": "Computer Use
|
|
2591
|
-
"settings.sections.capabilities.computerUseLabel": "Computer Use
|
|
2590
|
+
"settings.sections.capabilities.computerUseHint": "Kailangan ng Computer Use ang Accessibility at Screen Recording permissions.",
|
|
2591
|
+
"settings.sections.capabilities.computerUseLabel": "I-enable ang Computer Use",
|
|
2592
2592
|
"settings.sections.capabilities.computerUseModeOption.fullControl": "Full Control",
|
|
2593
2593
|
"settings.sections.capabilities.computerUseModeOption.pauseComputerUse": "I-pause ang Computer Use",
|
|
2594
2594
|
"settings.sections.capabilities.computerUseModeOption.reviewEveryAction": "I-review ang Bawat Action",
|
|
@@ -2418,34 +2418,34 @@
|
|
|
2418
2418
|
"runtime.failed": "THẤT BẠI",
|
|
2419
2419
|
"runtime.starting": "ĐANG KHỞI ĐỘNG",
|
|
2420
2420
|
"runtime.stopped": "ĐÃ DỪNG",
|
|
2421
|
-
"runtimegate.autoCreating": "
|
|
2422
|
-
"runtimegate.cloudDesc": "
|
|
2423
|
-
"runtimegate.cloudEyebrow": "Cloud
|
|
2424
|
-
"runtimegate.cloudLoginEyebrow": "
|
|
2425
|
-
"runtimegate.cloudTitle": "Cloud
|
|
2426
|
-
"runtimegate.connecting": "Connecting",
|
|
2427
|
-
"runtimegate.creating": "Creating",
|
|
2428
|
-
"runtimegate.failedCreate": "Failed
|
|
2429
|
-
"runtimegate.failedLoadAgents": "Failed
|
|
2430
|
-
"runtimegate.loadingAgents": "Loading
|
|
2431
|
-
"runtimegate.localDesc": "
|
|
2432
|
-
"runtimegate.localEyebrow": "
|
|
2433
|
-
"runtimegate.localTitle": "
|
|
2434
|
-
"runtimegate.provisioning": "Provisioning",
|
|
2435
|
-
"runtimegate.remoteConnectEyebrow": "
|
|
2436
|
-
"runtimegate.remoteDesc": "
|
|
2437
|
-
"runtimegate.remoteEyebrow": "Remote
|
|
2438
|
-
"runtimegate.remoteTitle": "
|
|
2439
|
-
"runtimegate.remoteTokenPlaceholder": "
|
|
2440
|
-
"runtimegate.remoteUrlPlaceholder": "
|
|
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
|
|
2443
|
-
"runtimegate.startingProvisioning": "Starting
|
|
2444
|
-
"runtimegate.subtitle": "
|
|
2445
|
-
"runtimegate.title": "
|
|
2446
|
-
"runtimegate.unknownError": "Unknown
|
|
2447
|
-
"runtimegate.waitingForAuth": "Waiting
|
|
2448
|
-
"runtimegate.yourAgents": "Your
|
|
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": "hành động:",
|
|
2450
2450
|
"runtimeview.actionsDescription": "Xem lại các action đã đăng ký và thứ tự tải của chúng trong runtime hiện tại.",
|
|
2451
2451
|
"runtimeview.agent": "đại lý:",
|
|
@@ -2583,12 +2583,12 @@
|
|
|
2583
2583
|
"settings.sections.autoTraining.label": "Tự động huấn luyện",
|
|
2584
2584
|
"settings.sections.backupReset.desc": "Sao lưu agent, khôi phục từ bản sao lưu, hoặc xoá sạch và bắt đầu lại",
|
|
2585
2585
|
"settings.sections.backupReset.label": "Sao lưu & Đặt lại",
|
|
2586
|
-
"settings.sections.capabilities.autoTrainingLabel": "
|
|
2587
|
-
"settings.sections.capabilities.autoTrainingName": "
|
|
2586
|
+
"settings.sections.capabilities.autoTrainingLabel": "Bật tự động huấn luyện",
|
|
2587
|
+
"settings.sections.capabilities.autoTrainingName": "Tự động huấn luyện",
|
|
2588
2588
|
"settings.sections.capabilities.browserHint": "Hien thi tab Trinh duyet de agent dieu khien duyet web",
|
|
2589
2589
|
"settings.sections.capabilities.browserLabel": "Bat Trinh duyet",
|
|
2590
|
-
"settings.sections.capabilities.computerUseHint": "Computer Use
|
|
2591
|
-
"settings.sections.capabilities.computerUseLabel": "Computer Use
|
|
2590
|
+
"settings.sections.capabilities.computerUseHint": "Computer Use yêu cầu quyền Trợ năng và Ghi màn hình.",
|
|
2591
|
+
"settings.sections.capabilities.computerUseLabel": "Bật Computer Use",
|
|
2592
2592
|
"settings.sections.capabilities.computerUseModeOption.fullControl": "Toàn quyền",
|
|
2593
2593
|
"settings.sections.capabilities.computerUseModeOption.pauseComputerUse": "Tạm dừng Computer Use",
|
|
2594
2594
|
"settings.sections.capabilities.computerUseModeOption.reviewEveryAction": "Xem xét mọi hành động",
|
|
@@ -2418,34 +2418,34 @@
|
|
|
2418
2418
|
"runtime.failed": "失败",
|
|
2419
2419
|
"runtime.starting": "启动中",
|
|
2420
2420
|
"runtime.stopped": "已停止",
|
|
2421
|
-
"runtimegate.autoCreating": "
|
|
2422
|
-
"runtimegate.cloudDesc": "
|
|
2423
|
-
"runtimegate.cloudEyebrow": "Cloud
|
|
2424
|
-
"runtimegate.cloudLoginEyebrow": "
|
|
2425
|
-
"runtimegate.cloudTitle": "Cloud
|
|
2426
|
-
"runtimegate.connecting": "Connecting",
|
|
2427
|
-
"runtimegate.creating": "Creating",
|
|
2428
|
-
"runtimegate.failedCreate": "Failed
|
|
2429
|
-
"runtimegate.failedLoadAgents": "Failed
|
|
2430
|
-
"runtimegate.loadingAgents": "Loading
|
|
2431
|
-
"runtimegate.localDesc": "
|
|
2432
|
-
"runtimegate.localEyebrow": "
|
|
2433
|
-
"runtimegate.localTitle": "
|
|
2434
|
-
"runtimegate.provisioning": "Provisioning",
|
|
2435
|
-
"runtimegate.remoteConnectEyebrow": "
|
|
2436
|
-
"runtimegate.remoteDesc": "
|
|
2437
|
-
"runtimegate.remoteEyebrow": "Remote
|
|
2438
|
-
"runtimegate.remoteTitle": "
|
|
2439
|
-
"runtimegate.remoteTokenPlaceholder": "
|
|
2440
|
-
"runtimegate.remoteUrlPlaceholder": "
|
|
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
|
|
2443
|
-
"runtimegate.startingProvisioning": "Starting
|
|
2444
|
-
"runtimegate.subtitle": "
|
|
2445
|
-
"runtimegate.title": "
|
|
2446
|
-
"runtimegate.unknownError": "Unknown
|
|
2447
|
-
"runtimegate.waitingForAuth": "Waiting
|
|
2448
|
-
"runtimegate.yourAgents": "Your
|
|
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": "查看当前 runtime 中已注册的 actions 及其加载顺序。",
|
|
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": "
|
|
2587
|
-
"settings.sections.capabilities.autoTrainingName": "
|
|
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
|
|
2591
|
-
"settings.sections.capabilities.computerUseLabel": "Computer Use
|
|
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": "逐项审核",
|
|
@@ -20,6 +20,7 @@ export { advancedActions, advancedCapabilities, advancedEvaluators, advancedProv
|
|
|
20
20
|
export * from "../advanced-capabilities/providers/index.ts";
|
|
21
21
|
export * from "../autonomy/index.ts";
|
|
22
22
|
export { coreCapabilities, pluginManagerCapability, secretsCapability, trustCapability, } from "../index.ts";
|
|
23
|
+
export { createPluginAction, hasAdminAccess, hasOwnerAccess, pluginAction, type PluginMode, type SecurityDeps, } from "../plugin-manager/index.ts";
|
|
23
24
|
type MediaData = {
|
|
24
25
|
data: Buffer;
|
|
25
26
|
mediaType: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../typescript/src/features/basic-capabilities/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAqBH,OAAO,KAAK,EAOX,SAAS,EAET,aAAa,EAGb,KAAK,EACL,MAAM,EACN,cAAc,EAGd,MAAM,EAEN,IAAI,EAIJ,MAAM,sBAAsB,CAAC;AAG9B,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAY1D,cAAc,oBAAoB,CAAC;AACnC,cAAc,sBAAsB,CAAC;AAGrC,OAAO,EAEN,oBAAoB,EAIpB,MAAM,mCAAmC,CAAC;AAY3C,cAAc,2CAA2C,CAAC;AAC1D,cAAc,8CAA8C,CAAC;AAE7D,OAAO,EACN,eAAe,EACf,oBAAoB,EACpB,kBAAkB,EAClB,iBAAiB,EACjB,gBAAgB,GAChB,MAAM,mCAAmC,CAAC;AAC3C,cAAc,6CAA6C,CAAC;AAE5D,cAAc,sBAAsB,CAAC;AAErC,OAAO,EACN,gBAAgB,EAChB,uBAAuB,EACvB,iBAAiB,EACjB,eAAe,GACf,MAAM,aAAa,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../typescript/src/features/basic-capabilities/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -46,6 +46,10 @@ export * from "../advanced-capabilities/providers/index.js";
|
|
|
46
46
|
export * from "../autonomy/index.js";
|
|
47
47
|
// Re-export core capabilities (trust, secrets, plugin-manager)
|
|
48
48
|
export { coreCapabilities, pluginManagerCapability, secretsCapability, trustCapability, } from "../index.js";
|
|
49
|
+
// Re-export plugin-manager security helpers (used by other plugins like
|
|
50
|
+
// plugin-app-control to gate owner/admin-only actions without taking a dep
|
|
51
|
+
// on @elizaos/agent, which would create a layer cycle).
|
|
52
|
+
export { createPluginAction, hasAdminAccess, hasOwnerAccess, pluginAction, } from "../plugin-manager/index.js";
|
|
49
53
|
function escapeRegex(value) {
|
|
50
54
|
return value.replace(/[.*+?^${}()|[\]\\]/g, "\\$&");
|
|
51
55
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../typescript/src/features/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AAEH,OAAO,KAAK,EAAE,MAAM,EAAE,SAAS,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AACrE,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AACvD,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AA0BzD,QAAA,MAAM,eAAe;eAOf,QAAQ,EAAE;aAOV,MAAM,EAAE;gBAKR,SAAS,EAAE;cA8BX,YAAY,EAAE;kBACC,aAAa,GAAG,OAAO,CAAC,IAAI,CAAC;CAIjD,CAAC;AAsBF,QAAA,MAAM,iBAAiB;eAMjB,QAAQ,EAAE;aAMV,MAAM,EAAE;cAoBR,YAAY,EAAE;CACnB,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../typescript/src/features/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AAEH,OAAO,KAAK,EAAE,MAAM,EAAE,SAAS,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AACrE,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AACvD,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AA0BzD,QAAA,MAAM,eAAe;eAOf,QAAQ,EAAE;aAOV,MAAM,EAAE;gBAKR,SAAS,EAAE;cA8BX,YAAY,EAAE;kBACC,aAAa,GAAG,OAAO,CAAC,IAAI,CAAC;CAIjD,CAAC;AAsBF,QAAA,MAAM,iBAAiB;eAMjB,QAAQ,EAAE;aAMV,MAAM,EAAE;cAoBR,YAAY,EAAE;CACnB,CAAC;AAaF,QAAA,MAAM,uBAAuB;eAKvB,QAAQ,EAAE;aACY,MAAM,EAAE;cAc9B,YAAY,EAAE;CACnB,CAAC;AAIF,YAAY,EACX,mBAAmB,EACnB,uBAAuB,EACvB,4BAA4B,EAC5B,qBAAqB,GACrB,MAAM,sBAAsB,CAAC;AAC9B,OAAO,EACN,qBAAqB,EACrB,iBAAiB,EACjB,qBAAqB,EACrB,YAAY,EACZ,gBAAgB,EAChB,gBAAgB,EAChB,eAAe,EACf,mBAAmB,EACnB,uBAAuB,EACvB,iBAAiB,GACjB,MAAM,sBAAsB,CAAC;AAC9B,YAAY,EACX,uBAAuB,EACvB,kBAAkB,EAClB,qBAAqB,EACrB,oBAAoB,EACpB,eAAe,EACf,kBAAkB,EAClB,0BAA0B,EAC1B,yBAAyB,GACzB,MAAM,yBAAyB,CAAC;AACjC,OAAO,EACN,mBAAmB,EACnB,kBAAkB,GAClB,MAAM,yBAAyB,CAAC;AAIjC,OAAO,EAAE,uBAAuB,EAAE,iBAAiB,EAAE,eAAe,EAAE,CAAC;AAEvE,eAAO,MAAM,gBAAgB;;mBAjLvB,QAAQ,EAAE;iBAOV,MAAM,EAAE;oBAKR,SAAS,EAAE;kBA8BX,YAAY,EAAE;sBACC,aAAa,GAAG,OAAO,CAAC,IAAI,CAAC;;;mBAgC5C,QAAQ,EAAE;iBAMV,MAAM,EAAE;kBAoBR,YAAY,EAAE;;;mBAmBd,QAAQ,EAAE;iBACY,MAAM,EAAE;kBAc9B,YAAY,EAAE;;CA8CnB,CAAC;AAEF,eAAe,gBAAgB,CAAC"}
|
|
@@ -113,19 +113,14 @@ const secretsCapability = {
|
|
|
113
113
|
],
|
|
114
114
|
};
|
|
115
115
|
// ─── Plugin Manager ───────────────────────────────────────────────────────────
|
|
116
|
-
import { CoreManagerService,
|
|
116
|
+
import { CoreManagerService, pluginAction, PluginManagerService, pluginConfigurationStatusProvider, pluginStateProvider, registryPluginsProvider, } from "./plugin-manager/index.js";
|
|
117
117
|
const pluginManagerCapability = {
|
|
118
118
|
providers: [
|
|
119
119
|
pluginConfigurationStatusProvider,
|
|
120
120
|
pluginStateProvider,
|
|
121
121
|
registryPluginsProvider,
|
|
122
122
|
],
|
|
123
|
-
actions: [
|
|
124
|
-
coreStatusAction,
|
|
125
|
-
searchPluginAction,
|
|
126
|
-
getPluginDetailsAction,
|
|
127
|
-
listEjectedPluginsAction,
|
|
128
|
-
],
|
|
123
|
+
actions: [pluginAction],
|
|
129
124
|
services: [
|
|
130
125
|
{
|
|
131
126
|
serviceType: "plugin_manager",
|
package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/core-status.d.ts
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @module features/plugin-manager/actions/plugin-handlers/core-status
|
|
3
|
+
*
|
|
4
|
+
* `core_status` sub-mode of the unified PLUGIN action. Reports whether
|
|
5
|
+
* `@elizaos/core` is currently ejected or running from the npm package.
|
|
6
|
+
*/
|
|
7
|
+
import type { ActionResult, HandlerCallback } from "../../../../types/components.ts";
|
|
8
|
+
import type { IAgentRuntime } from "../../../../types/runtime.ts";
|
|
9
|
+
export interface CoreStatusInput {
|
|
10
|
+
runtime: IAgentRuntime;
|
|
11
|
+
callback?: HandlerCallback;
|
|
12
|
+
}
|
|
13
|
+
export declare function runCoreStatus({ runtime, callback, }: CoreStatusInput): Promise<ActionResult>;
|
|
14
|
+
//# sourceMappingURL=core-status.d.ts.map
|
package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/core-status.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"core-status.d.ts","sourceRoot":"","sources":["../../../../../../../../../typescript/src/features/plugin-manager/actions/plugin-handlers/core-status.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,KAAK,EACX,YAAY,EACZ,eAAe,EACf,MAAM,iCAAiC,CAAC;AACzC,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,8BAA8B,CAAC;AAMlE,MAAM,WAAW,eAAe;IAC/B,OAAO,EAAE,aAAa,CAAC;IACvB,QAAQ,CAAC,EAAE,eAAe,CAAC;CAC3B;AAED,wBAAsB,aAAa,CAAC,EACnC,OAAO,EACP,QAAQ,GACR,EAAE,eAAe,GAAG,OAAO,CAAC,YAAY,CAAC,CA6CzC"}
|
package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/core-status.js
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @module features/plugin-manager/actions/plugin-handlers/core-status
|
|
3
|
+
*
|
|
4
|
+
* `core_status` sub-mode of the unified PLUGIN action. Reports whether
|
|
5
|
+
* `@elizaos/core` is currently ejected or running from the npm package.
|
|
6
|
+
*/
|
|
7
|
+
export async function runCoreStatus({ runtime, callback, }) {
|
|
8
|
+
const service = runtime.getService("core_manager");
|
|
9
|
+
if (!service) {
|
|
10
|
+
const text = "Core manager service not available";
|
|
11
|
+
await callback?.({ text });
|
|
12
|
+
return { success: false, text };
|
|
13
|
+
}
|
|
14
|
+
const status = await service.getCoreStatus();
|
|
15
|
+
const lines = [];
|
|
16
|
+
if (status.ejected) {
|
|
17
|
+
lines.push(`Core is EJECTED at ${status.ejectedPath}`);
|
|
18
|
+
lines.push(`Version: ${status.version}`);
|
|
19
|
+
lines.push(`Commit: ${status.commitHash || "unknown"}`);
|
|
20
|
+
lines.push(`Local changes: ${status.localChanges ? "yes" : "no"}`);
|
|
21
|
+
if (status.upstream) {
|
|
22
|
+
lines.push(`Upstream: ${status.upstream.gitUrl}#${status.upstream.branch}`);
|
|
23
|
+
lines.push(`Last sync: ${status.upstream.lastSyncAt || "never"}`);
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
else {
|
|
27
|
+
lines.push(`Core is using NPM package (v${status.npmVersion}). Not ejected.`);
|
|
28
|
+
}
|
|
29
|
+
const text = lines.join("\n");
|
|
30
|
+
await callback?.({ text });
|
|
31
|
+
return {
|
|
32
|
+
success: true,
|
|
33
|
+
text,
|
|
34
|
+
values: { mode: "core_status", ejected: status.ejected },
|
|
35
|
+
data: {
|
|
36
|
+
ejected: status.ejected,
|
|
37
|
+
ejectedPath: status.ejectedPath,
|
|
38
|
+
monorepoPath: status.monorepoPath,
|
|
39
|
+
corePackagePath: status.corePackagePath,
|
|
40
|
+
coreDistPath: status.coreDistPath,
|
|
41
|
+
version: status.version,
|
|
42
|
+
npmVersion: status.npmVersion,
|
|
43
|
+
commitHash: status.commitHash ?? undefined,
|
|
44
|
+
localChanges: status.localChanges,
|
|
45
|
+
upstream: status.upstream ?? undefined,
|
|
46
|
+
},
|
|
47
|
+
};
|
|
48
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import type { ActionResult, HandlerCallback } from "../../../../types/components.ts";
|
|
2
|
+
import type { Memory } from "../../../../types/memory.ts";
|
|
3
|
+
import type { IAgentRuntime } from "../../../../types/runtime.ts";
|
|
4
|
+
export declare const PLUGIN_CREATE_INTENT_TAG = "plugin-create-intent";
|
|
5
|
+
export interface PluginCreateInput {
|
|
6
|
+
runtime: IAgentRuntime;
|
|
7
|
+
message: Memory;
|
|
8
|
+
options?: Record<string, unknown>;
|
|
9
|
+
callback?: HandlerCallback;
|
|
10
|
+
intent?: string;
|
|
11
|
+
choice?: string;
|
|
12
|
+
editTarget?: string;
|
|
13
|
+
repoRoot: string;
|
|
14
|
+
}
|
|
15
|
+
interface PluginChoice {
|
|
16
|
+
key: string;
|
|
17
|
+
label: string;
|
|
18
|
+
pluginName?: string;
|
|
19
|
+
pluginPath?: string;
|
|
20
|
+
}
|
|
21
|
+
export interface PluginCreateIntentMetadata {
|
|
22
|
+
roomId: string;
|
|
23
|
+
intent: string;
|
|
24
|
+
choices: PluginChoice[];
|
|
25
|
+
intentCreatedAt: string;
|
|
26
|
+
[key: string]: object | string | number | boolean | null | undefined;
|
|
27
|
+
}
|
|
28
|
+
export declare function isPluginCreateChoiceReply(text: string): boolean;
|
|
29
|
+
export declare function runCreate({ runtime, message, options, callback, intent: explicitIntent, choice: explicitChoice, editTarget, repoRoot, }: PluginCreateInput): Promise<ActionResult>;
|
|
30
|
+
export declare function hasPendingPluginCreateIntent(runtime: IAgentRuntime, roomId: string): Promise<boolean>;
|
|
31
|
+
export {};
|
|
32
|
+
//# sourceMappingURL=create.d.ts.map
|
package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/create.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create.d.ts","sourceRoot":"","sources":["../../../../../../../../../typescript/src/features/plugin-manager/actions/plugin-handlers/create.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EACX,YAAY,EACZ,eAAe,EAEf,MAAM,iCAAiC,CAAC;AACzC,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,6BAA6B,CAAC;AAC1D,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,8BAA8B,CAAC;AAIlE,eAAO,MAAM,wBAAwB,yBAAyB,CAAC;AAmC/D,MAAM,WAAW,iBAAiB;IACjC,OAAO,EAAE,aAAa,CAAC;IACvB,OAAO,EAAE,MAAM,CAAC;IAChB,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IAClC,QAAQ,CAAC,EAAE,eAAe,CAAC;IAC3B,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,QAAQ,EAAE,MAAM,CAAC;CACjB;AAED,UAAU,YAAY;IACrB,GAAG,EAAE,MAAM,CAAC;IACZ,KAAK,EAAE,MAAM,CAAC;IACd,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,UAAU,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,WAAW,0BAA0B;IAC1C,MAAM,EAAE,MAAM,CAAC;IACf,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,EAAE,YAAY,EAAE,CAAC;IACxB,eAAe,EAAE,MAAM,CAAC;IACxB,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,GAAG,MAAM,GAAG,MAAM,GAAG,OAAO,GAAG,IAAI,GAAG,SAAS,CAAC;CACrE;AAkgBD,wBAAgB,yBAAyB,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAE/D;AAED,wBAAsB,SAAS,CAAC,EAC/B,OAAO,EACP,OAAO,EACP,OAAO,EACP,QAAQ,EACR,MAAM,EAAE,cAAc,EACtB,MAAM,EAAE,cAAc,EACtB,UAAU,EACV,QAAQ,GACR,EAAE,iBAAiB,GAAG,OAAO,CAAC,YAAY,CAAC,CAqG3C;AAED,wBAAsB,4BAA4B,CACjD,OAAO,EAAE,aAAa,EACtB,MAAM,EAAE,MAAM,GACZ,OAAO,CAAC,OAAO,CAAC,CAElB"}
|