aimeat 1.23.2 → 1.24.0
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/dist/locales/en.json +580 -21
- package/dist/locales/fi.json +592 -33
- package/dist/public/components/ContactCard.js +28 -0
- package/dist/public/css/views/admin.css +12 -0
- package/dist/public/css/views/agents-detail.css +62 -10
- package/dist/public/css/views/landing.css +87 -0
- package/dist/public/css/views/offers.css +96 -0
- package/dist/public/css/views/portfolio.css +18 -0
- package/dist/public/css/views/profile.css +153 -8
- package/dist/public/css/views/start.css +96 -0
- package/dist/public/css/views/workflows.css +111 -0
- package/dist/public/img/business-hero.png +0 -0
- package/dist/public/img/toimitus.png +0 -0
- package/dist/public/js/components/tag-cloud.js +46 -31
- package/dist/public/js/components/tag-editor.js +2 -2
- package/dist/public/js/recents.js +40 -0
- package/dist/public/js/services/admin.js +6 -0
- package/dist/public/js/services/agents.js +34 -0
- package/dist/public/js/services/offers.js +152 -0
- package/dist/public/js/services/packages.js +1 -0
- package/dist/public/js/services/workflows.js +57 -0
- package/dist/public/llms-template.txt +7 -0
- package/dist/public/spa.html +35 -3
- package/dist/public/views/admin/subdomains-tab.js +182 -0
- package/dist/public/views/admin.js +2 -0
- package/dist/public/views/business.js +119 -0
- package/dist/public/views/how-it-works.js +159 -0
- package/dist/public/views/landing.js +235 -0
- package/dist/public/views/portfolio.js +120 -23
- package/dist/public/views/pricing.js +75 -0
- package/dist/public/views/profile/access-tab.js +124 -51
- package/dist/public/views/profile/agents/agent-card.js +68 -37
- package/dist/public/views/profile/agents/shared-board.js +56 -22
- package/dist/public/views/profile/agents/tab-activity.js +24 -12
- package/dist/public/views/profile/agents/tab-agent-config.js +31 -1
- package/dist/public/views/profile/agents/tab-data-access.js +9 -13
- package/dist/public/views/profile/agents/tab-integration.js +27 -1
- package/dist/public/views/profile/agents/tab-messages.js +6 -11
- package/dist/public/views/profile/agents/tab-quality.js +45 -5
- package/dist/public/views/profile/agents-tab.js +41 -6
- package/dist/public/views/profile/apps-tab.js +7 -1
- package/dist/public/views/profile/knowledge-tab.js +4 -1
- package/dist/public/views/profile/landing-page.js +428 -123
- package/dist/public/views/profile/memory-tab.js +409 -211
- package/dist/public/views/profile/nodes-tab.js +18 -3
- package/dist/public/views/profile/offers-tab.js +310 -0
- package/dist/public/views/profile/organisms-tab.js +289 -28
- package/dist/public/views/profile/packages-tab.js +152 -16
- package/dist/public/views/profile/portfolio-tab.js +98 -31
- package/dist/public/views/profile/workflows-form.js +220 -0
- package/dist/public/views/profile/workflows-tab.js +244 -0
- package/dist/public/views/profile.js +4 -0
- package/dist/public/views/start-flows.js +281 -0
- package/dist/public/views/start.js +258 -0
- package/dist/src/cli/connect/mcp/tools/index.d.ts.map +1 -1
- package/dist/src/cli/connect/mcp/tools/index.js +2 -0
- package/dist/src/cli/connect/mcp/tools/index.js.map +1 -1
- package/dist/src/cli/connect/mcp/tools/workflows.d.ts +12 -0
- package/dist/src/cli/connect/mcp/tools/workflows.d.ts.map +1 -0
- package/dist/src/cli/connect/mcp/tools/workflows.js +37 -0
- package/dist/src/cli/connect/mcp/tools/workflows.js.map +1 -0
- package/dist/src/cli/connect/tool-call.d.ts.map +1 -1
- package/dist/src/cli/connect/tool-call.js +37 -0
- package/dist/src/cli/connect/tool-call.js.map +1 -1
- package/dist/src/generated/api-types.d.ts +1474 -66
- package/dist/src/generated/api-types.d.ts.map +1 -1
- package/dist/src/generated/prisma-postgres/edge.js +15 -3
- package/dist/src/generated/prisma-postgres/index-browser.js +12 -0
- package/dist/src/generated/prisma-postgres/index.d.ts +1476 -160
- package/dist/src/generated/prisma-postgres/index.js +15 -3
- package/dist/src/generated/prisma-postgres/package.json +1 -1
- package/dist/src/generated/prisma-postgres/schema.prisma +11 -0
- package/dist/src/generated/prisma-postgres/wasm.js +15 -3
- package/dist/src/mcp/annotations.d.ts.map +1 -1
- package/dist/src/mcp/annotations.js +3 -0
- package/dist/src/mcp/annotations.js.map +1 -1
- package/dist/src/mcp/catalog/definitions.d.ts.map +1 -1
- package/dist/src/mcp/catalog/definitions.js +27 -0
- package/dist/src/mcp/catalog/definitions.js.map +1 -1
- package/dist/src/mcp/catalog/scopes.d.ts.map +1 -1
- package/dist/src/mcp/catalog/scopes.js +5 -1
- package/dist/src/mcp/catalog/scopes.js.map +1 -1
- package/dist/src/mcp/catalog/surfaces.d.ts.map +1 -1
- package/dist/src/mcp/catalog/surfaces.js +1 -0
- package/dist/src/mcp/catalog/surfaces.js.map +1 -1
- package/dist/src/mcp/index.d.ts.map +1 -1
- package/dist/src/mcp/index.js +2 -0
- package/dist/src/mcp/index.js.map +1 -1
- package/dist/src/mcp/workflows.d.ts +18 -0
- package/dist/src/mcp/workflows.d.ts.map +1 -0
- package/dist/src/mcp/workflows.js +68 -0
- package/dist/src/mcp/workflows.js.map +1 -0
- package/dist/src/middleware/subdomain.d.ts +28 -0
- package/dist/src/middleware/subdomain.d.ts.map +1 -0
- package/dist/src/middleware/subdomain.js +32 -0
- package/dist/src/middleware/subdomain.js.map +1 -0
- package/dist/src/models/offer-schemas.d.ts +236 -0
- package/dist/src/models/offer-schemas.d.ts.map +1 -0
- package/dist/src/models/offer-schemas.js +112 -0
- package/dist/src/models/offer-schemas.js.map +1 -0
- package/dist/src/models/workflow-schemas.d.ts +220 -0
- package/dist/src/models/workflow-schemas.d.ts.map +1 -0
- package/dist/src/models/workflow-schemas.js +102 -0
- package/dist/src/models/workflow-schemas.js.map +1 -0
- package/dist/src/routes/agent-tasks.d.ts.map +1 -1
- package/dist/src/routes/agent-tasks.js +49 -0
- package/dist/src/routes/agent-tasks.js.map +1 -1
- package/dist/src/routes/agents.d.ts.map +1 -1
- package/dist/src/routes/agents.js +146 -1
- package/dist/src/routes/agents.js.map +1 -1
- package/dist/src/routes/apps-backup.d.ts +20 -0
- package/dist/src/routes/apps-backup.d.ts.map +1 -0
- package/dist/src/routes/apps-backup.js +165 -0
- package/dist/src/routes/apps-backup.js.map +1 -0
- package/dist/src/routes/ghii.d.ts.map +1 -1
- package/dist/src/routes/ghii.js +4 -0
- package/dist/src/routes/ghii.js.map +1 -1
- package/dist/src/routes/instances.d.ts +2 -1
- package/dist/src/routes/instances.d.ts.map +1 -1
- package/dist/src/routes/instances.js +59 -1
- package/dist/src/routes/instances.js.map +1 -1
- package/dist/src/routes/memory.d.ts.map +1 -1
- package/dist/src/routes/memory.js +5 -0
- package/dist/src/routes/memory.js.map +1 -1
- package/dist/src/routes/packages.d.ts.map +1 -1
- package/dist/src/routes/packages.js +32 -0
- package/dist/src/routes/packages.js.map +1 -1
- package/dist/src/routes/permissions.d.ts +12 -0
- package/dist/src/routes/permissions.d.ts.map +1 -1
- package/dist/src/routes/permissions.js +35 -3
- package/dist/src/routes/permissions.js.map +1 -1
- package/dist/src/routes/portal.d.ts +3 -0
- package/dist/src/routes/portal.d.ts.map +1 -1
- package/dist/src/routes/portal.js +12 -0
- package/dist/src/routes/portal.js.map +1 -1
- package/dist/src/routes/public-stats.d.ts +15 -0
- package/dist/src/routes/public-stats.d.ts.map +1 -0
- package/dist/src/routes/public-stats.js +90 -0
- package/dist/src/routes/public-stats.js.map +1 -0
- package/dist/src/routes/sse.d.ts +7 -2
- package/dist/src/routes/sse.d.ts.map +1 -1
- package/dist/src/routes/sse.js +35 -5
- package/dist/src/routes/sse.js.map +1 -1
- package/dist/src/routes/stats.d.ts.map +1 -1
- package/dist/src/routes/stats.js +13 -0
- package/dist/src/routes/stats.js.map +1 -1
- package/dist/src/routes/subdomains.d.ts +33 -0
- package/dist/src/routes/subdomains.d.ts.map +1 -0
- package/dist/src/routes/subdomains.js +208 -0
- package/dist/src/routes/subdomains.js.map +1 -0
- package/dist/src/routes/workflows.d.ts +30 -0
- package/dist/src/routes/workflows.d.ts.map +1 -0
- package/dist/src/routes/workflows.js +178 -0
- package/dist/src/routes/workflows.js.map +1 -0
- package/dist/src/server-bootstrap/routes-loader.d.ts +2 -0
- package/dist/src/server-bootstrap/routes-loader.d.ts.map +1 -1
- package/dist/src/server-bootstrap/routes-loader.js +19 -2
- package/dist/src/server-bootstrap/routes-loader.js.map +1 -1
- package/dist/src/server-bootstrap/service-init.d.ts +2 -0
- package/dist/src/server-bootstrap/service-init.d.ts.map +1 -1
- package/dist/src/server-bootstrap/service-init.js +6 -0
- package/dist/src/server-bootstrap/service-init.js.map +1 -1
- package/dist/src/server.d.ts.map +1 -1
- package/dist/src/server.js +5 -0
- package/dist/src/server.js.map +1 -1
- package/dist/src/services/apps-backup-export.d.ts +22 -0
- package/dist/src/services/apps-backup-export.d.ts.map +1 -0
- package/dist/src/services/apps-backup-export.js +136 -0
- package/dist/src/services/apps-backup-export.js.map +1 -0
- package/dist/src/services/apps-backup-import.d.ts +120 -0
- package/dist/src/services/apps-backup-import.d.ts.map +1 -0
- package/dist/src/services/apps-backup-import.js +259 -0
- package/dist/src/services/apps-backup-import.js.map +1 -0
- package/dist/src/services/component-registrar.d.ts +17 -0
- package/dist/src/services/component-registrar.d.ts.map +1 -1
- package/dist/src/services/component-registrar.js +63 -5
- package/dist/src/services/component-registrar.js.map +1 -1
- package/dist/src/services/handbooks/agent.d.ts +1 -1
- package/dist/src/services/handbooks/agent.d.ts.map +1 -1
- package/dist/src/services/handbooks/agent.js +10 -0
- package/dist/src/services/handbooks/agent.js.map +1 -1
- package/dist/src/services/handbooks/appdev.d.ts +1 -1
- package/dist/src/services/handbooks/appdev.d.ts.map +1 -1
- package/dist/src/services/handbooks/appdev.js +5 -2
- package/dist/src/services/handbooks/appdev.js.map +1 -1
- package/dist/src/services/scheduler.d.ts +6 -0
- package/dist/src/services/scheduler.d.ts.map +1 -1
- package/dist/src/services/scheduler.js +22 -0
- package/dist/src/services/scheduler.js.map +1 -1
- package/dist/src/services/schema-validator.d.ts +9 -0
- package/dist/src/services/schema-validator.d.ts.map +1 -1
- package/dist/src/services/schema-validator.js +16 -0
- package/dist/src/services/schema-validator.js.map +1 -1
- package/dist/src/services/workflow/engine.d.ts +84 -0
- package/dist/src/services/workflow/engine.d.ts.map +1 -0
- package/dist/src/services/workflow/engine.js +545 -0
- package/dist/src/services/workflow/engine.js.map +1 -0
- package/dist/src/services/workflow/eval-context.d.ts +23 -0
- package/dist/src/services/workflow/eval-context.d.ts.map +1 -0
- package/dist/src/services/workflow/eval-context.js +52 -0
- package/dist/src/services/workflow/eval-context.js.map +1 -0
- package/dist/src/services/workflow/lifecycle.d.ts +38 -0
- package/dist/src/services/workflow/lifecycle.d.ts.map +1 -0
- package/dist/src/services/workflow/lifecycle.js +99 -0
- package/dist/src/services/workflow/lifecycle.js.map +1 -0
- package/dist/src/services/workflow/signal-eval.d.ts +70 -0
- package/dist/src/services/workflow/signal-eval.d.ts.map +1 -0
- package/dist/src/services/workflow/signal-eval.js +174 -0
- package/dist/src/services/workflow/signal-eval.js.map +1 -0
- package/dist/src/services/workflow/store.d.ts +89 -0
- package/dist/src/services/workflow/store.d.ts.map +1 -0
- package/dist/src/services/workflow/store.js +284 -0
- package/dist/src/services/workflow/store.js.map +1 -0
- package/dist/src/storage/interface.d.ts +13 -3
- package/dist/src/storage/interface.d.ts.map +1 -1
- package/dist/src/storage/interface.js.map +1 -1
- package/dist/src/storage/providers/mongodb/index.d.ts +10 -1
- package/dist/src/storage/providers/mongodb/index.d.ts.map +1 -1
- package/dist/src/storage/providers/mongodb/index.js +76 -0
- package/dist/src/storage/providers/mongodb/index.js.map +1 -1
- package/dist/src/storage/providers/sqlite/index.d.ts +8 -1
- package/dist/src/storage/providers/sqlite/index.d.ts.map +1 -1
- package/dist/src/storage/providers/sqlite/index.js +61 -0
- package/dist/src/storage/providers/sqlite/index.js.map +1 -1
- package/dist/src/storage/providers/sqlite/schema.d.ts.map +1 -1
- package/dist/src/storage/providers/sqlite/schema.js +11 -0
- package/dist/src/storage/providers/sqlite/schema.js.map +1 -1
- package/dist/src/storage/repositories/index.d.ts +1 -0
- package/dist/src/storage/repositories/index.d.ts.map +1 -1
- package/dist/src/storage/repositories/package.repository.d.ts +2 -0
- package/dist/src/storage/repositories/package.repository.d.ts.map +1 -1
- package/dist/src/storage/repositories/subdomain-site.repository.d.ts +19 -0
- package/dist/src/storage/repositories/subdomain-site.repository.d.ts.map +1 -0
- package/dist/src/storage/repositories/subdomain-site.repository.js +2 -0
- package/dist/src/storage/repositories/subdomain-site.repository.js.map +1 -0
- package/dist/static/app-catalog.html +1139 -28
- package/package.json +1 -1
- package/prisma/schema.postgres.prisma +11 -0
- package/prisma/schema.prisma +11 -0
package/dist/locales/en.json
CHANGED
|
@@ -1,6 +1,50 @@
|
|
|
1
1
|
{
|
|
2
2
|
"profile.landing.home": "Home",
|
|
3
3
|
"profile.landing.menu": "Menu",
|
|
4
|
+
"profile.tabs.workflows": "Workflows",
|
|
5
|
+
"profile.workflows.title": "Workflows",
|
|
6
|
+
"profile.workflows.desc": "Declared, ordered agent pipelines with per-step health checks — they show whether each step actually produced, not just that it fired.",
|
|
7
|
+
"profile.workflows.loading": "Loading workflows…",
|
|
8
|
+
"profile.workflows.empty": "No workflows yet. An agent or the API can define one; it will appear here.",
|
|
9
|
+
"profile.workflows.trigger.schedule": "schedule",
|
|
10
|
+
"profile.workflows.trigger.event": "event",
|
|
11
|
+
"profile.workflows.trigger.manual": "manual",
|
|
12
|
+
"profile.workflows.stepCount": "{count} steps",
|
|
13
|
+
"profile.workflows.lastRun": "last run",
|
|
14
|
+
"profile.workflows.check": "Check",
|
|
15
|
+
"profile.workflows.run": "Run",
|
|
16
|
+
"profile.workflows.runStarted": "Run started",
|
|
17
|
+
"profile.workflows.back": "Back",
|
|
18
|
+
"profile.workflows.blueprint": "Blueprint",
|
|
19
|
+
"profile.workflows.after": "after",
|
|
20
|
+
"profile.workflows.recentRuns": "Recent runs",
|
|
21
|
+
"profile.workflows.noRuns": "No runs yet.",
|
|
22
|
+
"profile.workflows.attempt": "attempt",
|
|
23
|
+
"profile.workflows.health.title": "Per-step health over recent runs (green = produced, red = failed)",
|
|
24
|
+
"profile.workflows.inspectorDispatched": "{count} inspector task(s) dispatched",
|
|
25
|
+
"profile.workflows.new": "New",
|
|
26
|
+
"profile.workflows.edit": "Edit",
|
|
27
|
+
"profile.workflows.form.newTitle": "New workflow",
|
|
28
|
+
"profile.workflows.form.editTitle": "Edit workflow",
|
|
29
|
+
"profile.workflows.form.id": "Id (slug)",
|
|
30
|
+
"profile.workflows.form.idHint": "Id must be a lowercase slug (a-z, 0-9, hyphens).",
|
|
31
|
+
"profile.workflows.form.titleField": "Title",
|
|
32
|
+
"profile.workflows.form.description": "Description",
|
|
33
|
+
"profile.workflows.form.trigger": "Trigger",
|
|
34
|
+
"profile.workflows.form.matchKey": "match key (glob)",
|
|
35
|
+
"profile.workflows.form.matchOffer": "match offer id",
|
|
36
|
+
"profile.workflows.form.vars": "Variables",
|
|
37
|
+
"profile.workflows.form.addVar": "var",
|
|
38
|
+
"profile.workflows.form.steps": "Steps",
|
|
39
|
+
"profile.workflows.form.addStep": "step",
|
|
40
|
+
"profile.workflows.form.pickAgent": "agent…",
|
|
41
|
+
"profile.workflows.form.pickOffer": "offer…",
|
|
42
|
+
"profile.workflows.form.noCompatibleOffers": "This agent has no workflow-compatible offers (must publish success_signal + required_to_function + deliverable.location).",
|
|
43
|
+
"profile.workflows.form.noInput": "no input gate",
|
|
44
|
+
"profile.workflows.form.llmApproved": "Allow the node LLM to evaluate llm signal leaves in this workflow",
|
|
45
|
+
"profile.workflows.form.cancel": "Cancel",
|
|
46
|
+
"profile.workflows.form.save": "Save",
|
|
47
|
+
"profile.workflows.form.saved": "Workflow saved",
|
|
4
48
|
"profile.tabs.scheduler": "Scheduler",
|
|
5
49
|
"profile.agents.detail.tabs.schedules": "Schedules",
|
|
6
50
|
"profile.scheduler.title": "Scheduler",
|
|
@@ -126,7 +170,9 @@
|
|
|
126
170
|
"help": "Help",
|
|
127
171
|
"admin": "Admin",
|
|
128
172
|
"themeToDark": "Switch to dark mode",
|
|
129
|
-
"themeToLight": "Switch to light mode"
|
|
173
|
+
"themeToLight": "Switch to light mode",
|
|
174
|
+
"howItWorks": "How it works",
|
|
175
|
+
"business": "For your business"
|
|
130
176
|
},
|
|
131
177
|
"hero": {
|
|
132
178
|
"title": "Your data is yours. Your AI works for you.",
|
|
@@ -340,6 +386,7 @@
|
|
|
340
386
|
},
|
|
341
387
|
"tabs": {
|
|
342
388
|
"agents": "Agents",
|
|
389
|
+
"offers": "Offers",
|
|
343
390
|
"chatSessions": "Chat Sessions",
|
|
344
391
|
"mcp": "MCP",
|
|
345
392
|
"wallet": "Wallet",
|
|
@@ -360,6 +407,72 @@
|
|
|
360
407
|
"organisms": "Organisms",
|
|
361
408
|
"packages": "Packages"
|
|
362
409
|
},
|
|
410
|
+
"offers": {
|
|
411
|
+
"title": "What can I do?",
|
|
412
|
+
"desc": "Everything your agents can do for you — search, then ask. No clicking through agents and tabs.",
|
|
413
|
+
"searchPlaceholder": "What do you want to do?…",
|
|
414
|
+
"empty": "None of your agents publish offers yet.",
|
|
415
|
+
"noMatch": "No offers match.",
|
|
416
|
+
"run": "▶ Run",
|
|
417
|
+
"copyPrompt": "⧉ Copy prompt",
|
|
418
|
+
"runNow": "⏱ Run now",
|
|
419
|
+
"example": "Example",
|
|
420
|
+
"requirements": "Before you ask",
|
|
421
|
+
"consequences": "What this does",
|
|
422
|
+
"deliverable": "You’ll get back",
|
|
423
|
+
"untested": "untested — no sample yet",
|
|
424
|
+
"requestPlaceholder": "Your request (optional — fills the example)…",
|
|
425
|
+
"promptCopied": "Prompt copied — paste it into the agent’s chat.",
|
|
426
|
+
"triggered": "Schedule triggered.",
|
|
427
|
+
"requested": "Requested — task queued for {agent}.",
|
|
428
|
+
"askFailed": "Ask failed",
|
|
429
|
+
"confirmAsk": "This has lasting effects ({effects}). Ask anyway?",
|
|
430
|
+
"online": "online",
|
|
431
|
+
"offline": "offline",
|
|
432
|
+
"provenance": "From",
|
|
433
|
+
"task": "task",
|
|
434
|
+
"queued": "queued",
|
|
435
|
+
"inboxTitle": "What came back",
|
|
436
|
+
"inboxDesc": "Everything your agents delivered — check it and rate it, all in one place.",
|
|
437
|
+
"segDo": "Do",
|
|
438
|
+
"segInbox": "Inbox",
|
|
439
|
+
"inboxEmpty": "Nothing has come back yet. Ask an agent something in “What can I do?”.",
|
|
440
|
+
"expected": "Expected",
|
|
441
|
+
"failedMsg": "This task failed — no deliverable was produced.",
|
|
442
|
+
"deliverableGone": "Deliverable no longer available.",
|
|
443
|
+
"noDeliverableYet": "No deliverable yet.",
|
|
444
|
+
"rateIt": "Rate it",
|
|
445
|
+
"yourRating": "Your rating",
|
|
446
|
+
"ratePlaceholder": "Optional note…",
|
|
447
|
+
"submitRating": "Submit",
|
|
448
|
+
"rated": "Thanks — rated.",
|
|
449
|
+
"rateFailed": "Rating failed",
|
|
450
|
+
"selling": "Selling",
|
|
451
|
+
"priceMorsels": "Price",
|
|
452
|
+
"morsels": "morsels",
|
|
453
|
+
"perCall": "call",
|
|
454
|
+
"saveBilling": "Save",
|
|
455
|
+
"billSaved": "Saved.",
|
|
456
|
+
"billSaveFailed": "Could not save",
|
|
457
|
+
"billHint": "Others pay {n} morsels per call; you keep it minus the marketplace fee. Your own use is free.",
|
|
458
|
+
"notCallableHint": "Not machine-callable yet — others can find it, but invoking it needs a capability binding (action_id).",
|
|
459
|
+
"openInbox": "See it in the Inbox →",
|
|
460
|
+
"visibility": { "private": "Private (only me)", "unlisted": "Unlisted (by link)", "public": "Public (listed)" },
|
|
461
|
+
"status": { "done": "done", "failed": "failed", "active": "in progress", "paused": "paused", "stalled": "stalled", "queued": "queued", "revision_requested": "revision requested", "draft": "draft" },
|
|
462
|
+
"verification": { "deterministic": "deterministic", "gated": "verified", "ungated": "unverified" },
|
|
463
|
+
"dataHandling": { "local-only": "local-only", "llm-provider": "via LLM", "third-party": "third-party" },
|
|
464
|
+
"cost": { "free": "free", "cheap": "cheap", "expensive": "$$$" },
|
|
465
|
+
"latency": { "seconds": "seconds", "minutes": "minutes", "long-running": "long-running" },
|
|
466
|
+
"consequence": {
|
|
467
|
+
"creates-agent": "creates an agent",
|
|
468
|
+
"creates-schedule": "creates a schedule",
|
|
469
|
+
"mutates-host": "runs on your machine",
|
|
470
|
+
"publishes-public": "publishes publicly",
|
|
471
|
+
"external-send": "sends externally",
|
|
472
|
+
"mutates-live-app": "changes a live app",
|
|
473
|
+
"delegates-to-agent": "delegates to other agents"
|
|
474
|
+
}
|
|
475
|
+
},
|
|
363
476
|
"agents": {
|
|
364
477
|
"title": "Your Agents",
|
|
365
478
|
"active": {
|
|
@@ -969,7 +1082,8 @@
|
|
|
969
1082
|
"promptCopied": "Prompt copied",
|
|
970
1083
|
"copyInstallCommand": "Copy install command",
|
|
971
1084
|
"installCommandCopied": "Install command copied",
|
|
972
|
-
"noDeliveries": "No deliveries recorded yet."
|
|
1085
|
+
"noDeliveries": "No deliveries recorded yet.",
|
|
1086
|
+
"setupWebhook": "Set up webhook"
|
|
973
1087
|
},
|
|
974
1088
|
"messages": {
|
|
975
1089
|
"commands": {
|
|
@@ -1043,7 +1157,8 @@
|
|
|
1043
1157
|
"sortUpdated": "Last updated",
|
|
1044
1158
|
"sortCreated": "Created",
|
|
1045
1159
|
"sortNewestFirst": "Newest first",
|
|
1046
|
-
"sortOldestFirst": "Oldest first"
|
|
1160
|
+
"sortOldestFirst": "Oldest first",
|
|
1161
|
+
"noneInline": "none"
|
|
1047
1162
|
},
|
|
1048
1163
|
"agent_config": {
|
|
1049
1164
|
"copy": "Copy",
|
|
@@ -1056,7 +1171,10 @@
|
|
|
1056
1171
|
"saveError": "Failed to save config file",
|
|
1057
1172
|
"uploaded": "Config file uploaded",
|
|
1058
1173
|
"uploadError": "Failed to upload config file",
|
|
1059
|
-
"viewing": "Viewing"
|
|
1174
|
+
"viewing": "Viewing",
|
|
1175
|
+
"deleteTitle": "Delete this agent",
|
|
1176
|
+
"deleteDesc": "Removes the agent, its credentials and its task history. This cannot be undone.",
|
|
1177
|
+
"deleteConfirmLabel": "Type the agent’s name to confirm"
|
|
1060
1178
|
},
|
|
1061
1179
|
"activity": {
|
|
1062
1180
|
"filterAll": "All",
|
|
@@ -1078,7 +1196,9 @@
|
|
|
1078
1196
|
"connected": "Connected",
|
|
1079
1197
|
"notConfigured": "Not configured",
|
|
1080
1198
|
"mcpLabel": "MCP"
|
|
1081
|
-
}
|
|
1199
|
+
},
|
|
1200
|
+
"notReported": "not reported",
|
|
1201
|
+
"deliveryPollingLine": "Delivery: polling"
|
|
1082
1202
|
},
|
|
1083
1203
|
"directives": {
|
|
1084
1204
|
"footer": "Directives are included in every skill bundle update. The agent receives these as behavioral constraints.",
|
|
@@ -1109,7 +1229,24 @@
|
|
|
1109
1229
|
"agent_config": "No configuration files. The agent will push its config files after the skill bundle is installed.",
|
|
1110
1230
|
"activity": "No activity recorded yet. Events will appear here once the agent starts working.",
|
|
1111
1231
|
"services": "No services declared. The agent can declare services during Hello Integration Step 11."
|
|
1112
|
-
}
|
|
1232
|
+
},
|
|
1233
|
+
"capTools": "tools",
|
|
1234
|
+
"capSkills": "skills",
|
|
1235
|
+
"capLangs": "languages",
|
|
1236
|
+
"readinessTooltip": "Readiness score 0–100 from onboarding checks. Levels: none → basic → standard → advanced → full.",
|
|
1237
|
+
"federationLabel": "Federation",
|
|
1238
|
+
"federationOn": "on",
|
|
1239
|
+
"federationOff": "off",
|
|
1240
|
+
"federationOnHint": "Shared via federation — click to make local only",
|
|
1241
|
+
"federationOffHint": "Local only — click to share via federation"
|
|
1242
|
+
},
|
|
1243
|
+
"board": {
|
|
1244
|
+
"online": "online",
|
|
1245
|
+
"quiet": "quiet",
|
|
1246
|
+
"onboarding": "onboarding",
|
|
1247
|
+
"issue": "issue",
|
|
1248
|
+
"newShort": "new",
|
|
1249
|
+
"issueShort": "issue"
|
|
1113
1250
|
}
|
|
1114
1251
|
},
|
|
1115
1252
|
"scopes": {
|
|
@@ -1306,7 +1443,6 @@
|
|
|
1306
1443
|
"shareSuccess": "Shared to federation",
|
|
1307
1444
|
"unshareSuccess": "Removed from federation",
|
|
1308
1445
|
"selectGroup": "Select group",
|
|
1309
|
-
"skipGroup": "Skip",
|
|
1310
1446
|
"noGroups": "No sharing groups. Create one in the Access tab.",
|
|
1311
1447
|
"sortLabel": "Sort:",
|
|
1312
1448
|
"sortUpdated": "Last updated",
|
|
@@ -1343,7 +1479,24 @@
|
|
|
1343
1479
|
"loadingHome": "Loading home node memories...",
|
|
1344
1480
|
"errorLocalhost": "Cannot browse this node. Local/development nodes are not reachable from public nodes. Both nodes must be publicly accessible for cross-node browsing to work.",
|
|
1345
1481
|
"errorPeerNotFound": "Peer node not found in the federation directory. It may have been removed or is no longer active.",
|
|
1346
|
-
"errorPeerUnsupported": "This peer node does not support memory browsing yet. It may be running an older version of AIMEAT."
|
|
1482
|
+
"errorPeerUnsupported": "This peer node does not support memory browsing yet. It may be running an older version of AIMEAT.",
|
|
1483
|
+
"tabOwn": "My memory",
|
|
1484
|
+
"tabPublic": "Public",
|
|
1485
|
+
"tabRemote": "Remote nodes",
|
|
1486
|
+
"keysCount": "{n} keys",
|
|
1487
|
+
"groupOther": "other",
|
|
1488
|
+
"filterType": "Type to filter…",
|
|
1489
|
+
"createGroupBtn": "Create a group →",
|
|
1490
|
+
"invalidJson": "Invalid JSON — fix it before saving",
|
|
1491
|
+
"showAllTags": "Show all ({n})",
|
|
1492
|
+
"fewerTags": "Show fewer",
|
|
1493
|
+
"keysOne": "1 key",
|
|
1494
|
+
"bulkSelected": "{n} selected",
|
|
1495
|
+
"bulkApply": "Change visibility",
|
|
1496
|
+
"bulkClear": "Clear selection",
|
|
1497
|
+
"bulkDone": "{n} updated",
|
|
1498
|
+
"bulkDeleted": "{n} deleted",
|
|
1499
|
+
"bulkDeleteConfirm": "Delete {n} memory entries? This cannot be undone."
|
|
1347
1500
|
},
|
|
1348
1501
|
"files": {
|
|
1349
1502
|
"title": "Stored Files",
|
|
@@ -1689,7 +1842,12 @@
|
|
|
1689
1842
|
"adCancel": "Cancel",
|
|
1690
1843
|
"adInvalidBudget": "Token budget must be a non-negative number",
|
|
1691
1844
|
"adSaved": "Agent defaults saved",
|
|
1692
|
-
"adSaveError": "Failed to save defaults"
|
|
1845
|
+
"adSaveError": "Failed to save defaults",
|
|
1846
|
+
"copied": "Copied",
|
|
1847
|
+
"validUntil": "Valid until {time} ({h} h)",
|
|
1848
|
+
"noKeypair": "No keypair is stored for this account. Keys are generated at registration; older accounts may not have one.",
|
|
1849
|
+
"fedAllowAllCaption": "Any federation node can verify your identity. Uncheck to restrict to the list below.",
|
|
1850
|
+
"adRuleExample": "Example: “Always answer in Finnish” or “Never spend morsels without asking”."
|
|
1693
1851
|
},
|
|
1694
1852
|
"nodes": {
|
|
1695
1853
|
"title": "Personal Nodes",
|
|
@@ -2652,18 +2810,13 @@
|
|
|
2652
2810
|
"cortexChartsDesc": "Charts for your data — bar, line, pie. Touch + mouse.",
|
|
2653
2811
|
"cortexCanvas": "Canvas",
|
|
2654
2812
|
"cortexCanvasDesc": "Draw and save to storage. Undo, export, pen & shapes.",
|
|
2655
|
-
"menuDaily": "Daily",
|
|
2656
2813
|
"menuBuildShare": "Build & share",
|
|
2657
2814
|
"menuManagement": "Management",
|
|
2658
2815
|
"menuInfra": "Infrastructure",
|
|
2659
2816
|
"menuInfraAnnotation": "node operators only",
|
|
2660
|
-
"menuTechnical": "Technical",
|
|
2661
|
-
"menuPersonal": "Personal",
|
|
2662
2817
|
"expandAll": "Show all settings",
|
|
2663
2818
|
"expandMore": "Show all",
|
|
2664
2819
|
"myApps": "My apps",
|
|
2665
|
-
"allApps": "All",
|
|
2666
|
-
"openApp": "Open in new tab",
|
|
2667
2820
|
"viewAll": "View all",
|
|
2668
2821
|
"editProfile": "edit profile",
|
|
2669
2822
|
"editModalTitle": "Edit profile",
|
|
@@ -2697,7 +2850,38 @@
|
|
|
2697
2850
|
"notificationsBadge": "Notifications",
|
|
2698
2851
|
"ownPackages": "Own packages",
|
|
2699
2852
|
"connectAgent": "Connect new agent",
|
|
2700
|
-
"installFirst": "Install first app"
|
|
2853
|
+
"installFirst": "Install first app",
|
|
2854
|
+
"waitingTitle": "Waiting for you",
|
|
2855
|
+
"draftsToReview": "{n} drafts to review",
|
|
2856
|
+
"joinReqOne": "1 join request",
|
|
2857
|
+
"joinReqMany": "{n} join requests",
|
|
2858
|
+
"inviteWaiting": "You’re invited",
|
|
2859
|
+
"reviewBtn": "Review",
|
|
2860
|
+
"viewBtn": "View",
|
|
2861
|
+
"continueTitle": "Continue",
|
|
2862
|
+
"agentsTitle": "Agents",
|
|
2863
|
+
"activeTodayCount": "{n} active today",
|
|
2864
|
+
"agentActiveToday": "active today",
|
|
2865
|
+
"nextRunAt": "next run {time}",
|
|
2866
|
+
"promoDismiss": "Hide",
|
|
2867
|
+
"profileBtn": "Profile",
|
|
2868
|
+
"editLocaleHint": "Your preferred language — used for the portal UI; agents can read it from your profile to answer in it.",
|
|
2869
|
+
"editEmailLink": "Change in the Email tab →",
|
|
2870
|
+
"pwMin": "At least 8 characters",
|
|
2871
|
+
"pwUpper": "An uppercase letter",
|
|
2872
|
+
"pwLower": "A lowercase letter",
|
|
2873
|
+
"pwDigit": "A number",
|
|
2874
|
+
"changePasswordBtn": "Change password",
|
|
2875
|
+
"showPassword": "Show",
|
|
2876
|
+
"hidePassword": "Hide",
|
|
2877
|
+
"menuInformation": "Information",
|
|
2878
|
+
"menuAutomation": "Automation",
|
|
2879
|
+
"menuActivity": "Activity",
|
|
2880
|
+
"menuAccount": "Account",
|
|
2881
|
+
"menuPinned": "Pinned",
|
|
2882
|
+
"pinAdd": "Pin",
|
|
2883
|
+
"pinRemove": "Unpin",
|
|
2884
|
+
"pinLimit": "Max 5 pinned items"
|
|
2701
2885
|
}
|
|
2702
2886
|
},
|
|
2703
2887
|
"dev": {
|
|
@@ -5217,8 +5401,8 @@
|
|
|
5217
5401
|
"step1Title": "Select Content",
|
|
5218
5402
|
"step2Title": "Style & Purpose",
|
|
5219
5403
|
"step3Title": "Auth-Gated Sections",
|
|
5220
|
-
"step4Title": "Generate
|
|
5221
|
-
"step5Title": "
|
|
5404
|
+
"step4Title": "Generate prompt — run it in your AI chat",
|
|
5405
|
+
"step5Title": "Paste the result & publish",
|
|
5222
5406
|
"noContent": "No publishable content found. Upload images or create apps first.",
|
|
5223
5407
|
"imagesGroup": "Images",
|
|
5224
5408
|
"appsGroup": "Published Apps",
|
|
@@ -5241,7 +5425,7 @@
|
|
|
5241
5425
|
"gateProjectDetails": "Project details",
|
|
5242
5426
|
"gateDownloads": "Download links",
|
|
5243
5427
|
"gateCustom": "Custom sections (specify in prompt)",
|
|
5244
|
-
"generateBtn": "Generate
|
|
5428
|
+
"generateBtn": "Generate",
|
|
5245
5429
|
"copyPrompt": "Copy Prompt to Clipboard",
|
|
5246
5430
|
"downloadPrompt": "Download as .txt",
|
|
5247
5431
|
"promptCopied": "Copied!",
|
|
@@ -5263,13 +5447,34 @@
|
|
|
5263
5447
|
"orPaste": "or paste HTML directly",
|
|
5264
5448
|
"pasteHint": "Paste your portfolio HTML here from AI chat...",
|
|
5265
5449
|
"pasteEmpty": "Paste HTML content first",
|
|
5266
|
-
"publishPaste": "Publish pasted HTML"
|
|
5450
|
+
"publishPaste": "Publish pasted HTML",
|
|
5451
|
+
"flow1": "Select your content and style",
|
|
5452
|
+
"flow2": "Generate a prompt and run it in your AI chat (Claude, ChatGPT, …)",
|
|
5453
|
+
"flow3": "Paste the resulting HTML back here and publish",
|
|
5454
|
+
"selectedOf": "{sel}/{total} selected",
|
|
5455
|
+
"selectAll": "Select all",
|
|
5456
|
+
"generateDisabledHint": "Select at least one item in step 1",
|
|
5457
|
+
"charCount": "{n} characters",
|
|
5458
|
+
"publishTarget": "Will be published at:",
|
|
5459
|
+
"previewBtn": "Preview",
|
|
5460
|
+
"closePreview": "Close preview",
|
|
5461
|
+
"unpublish": "Unpublish",
|
|
5462
|
+
"unpublished": "Portfolio unpublished",
|
|
5463
|
+
"unpublishConfirm": "Unpublish your portfolio? The public page stops working until you publish again.",
|
|
5464
|
+
"customTypePlaceholder": "Describe what kind of portfolio you want…",
|
|
5465
|
+
"customGatePlaceholder": "Describe the custom auth-gated sections…",
|
|
5466
|
+
"backToProfile": "Profile",
|
|
5467
|
+
"publicUrl": "Public URL",
|
|
5468
|
+
"lastUpdated": "Last updated",
|
|
5469
|
+
"sizeLabel": "Size",
|
|
5470
|
+
"visitBtn": "Visit",
|
|
5471
|
+
"editBtn": "Edit in builder"
|
|
5267
5472
|
},
|
|
5268
5473
|
"viewer": {
|
|
5269
5474
|
"notFound": "Portfolio not found",
|
|
5270
5475
|
"notFoundDesc": "This user hasn't published a portfolio yet.",
|
|
5271
5476
|
"loginToSeeMore": "Log in to see more content",
|
|
5272
|
-
"backToPortal": "
|
|
5477
|
+
"backToPortal": "Home"
|
|
5273
5478
|
}
|
|
5274
5479
|
},
|
|
5275
5480
|
"cli": {
|
|
@@ -5292,7 +5497,8 @@
|
|
|
5292
5497
|
"actionBar": {
|
|
5293
5498
|
"copyHumanPrompt": "Copy Prompt for AI Chat",
|
|
5294
5499
|
"copyAgentPrompt": "Copy Prompt for OpenClaw",
|
|
5295
|
-
"description": "Use these prompts to package research, ideas, or any content into structured knowledge. Paste the prompt into your AI Chat or give it to your OpenClaw agent."
|
|
5500
|
+
"description": "Use these prompts to package research, ideas, or any content into structured knowledge. Paste the prompt into your AI Chat or give it to your OpenClaw agent.",
|
|
5501
|
+
"publicViewer": "Public knowledge viewer"
|
|
5296
5502
|
},
|
|
5297
5503
|
"import": {
|
|
5298
5504
|
"title": "Import Knowledge Package",
|
|
@@ -5632,6 +5838,17 @@
|
|
|
5632
5838
|
"noneYet": "none yet",
|
|
5633
5839
|
"memberAgents": "Agents",
|
|
5634
5840
|
"memberAgentsHint": "This member's agents — they inherit the membership and can act in this organism",
|
|
5841
|
+
"contractAgents": "Your contract agents",
|
|
5842
|
+
"contractAgentsDesc": "These agents of yours advertise a workspace contract — they can process a workspace like this one. Grant access (below) or attach them in the organism Agents tab.",
|
|
5843
|
+
"contractNames": "contracts offered",
|
|
5844
|
+
"contractTag": "contract",
|
|
5845
|
+
"contractAgentHint": "Advertises a workspace contract",
|
|
5846
|
+
"adoptContract": "Adopt",
|
|
5847
|
+
"adoptHint": "Queue a task for this agent to adopt its contract into THIS workspace (it provisions the spaces itself)",
|
|
5848
|
+
"adoptQueued": "Adoption task queued for {agent} — it provisions the contract and reports back",
|
|
5849
|
+
"adoptFailed": "Could not queue the adoption task",
|
|
5850
|
+
"contractActive": "active here",
|
|
5851
|
+
"contractActiveHint": "This agent already works in this workspace",
|
|
5635
5852
|
"spaceTasksBacked": "This space points at the task system — its items are tasks, not workspace records. Manage them in the Tasks views.",
|
|
5636
5853
|
"spaceBackingUnsupported": "This space's backing is not supported, so its content is not shown here. Edit the workspace (manifest) and set this space's backing to \"memory\" to restore it — files and knowledge packages attach via Sources or document images instead.",
|
|
5637
5854
|
"onePerLine": "one per line",
|
|
@@ -5685,6 +5902,10 @@
|
|
|
5685
5902
|
"tabBoard": "Board",
|
|
5686
5903
|
"tabReview": "Review",
|
|
5687
5904
|
"tabPeople": "People",
|
|
5905
|
+
"tabOverview": "Overview",
|
|
5906
|
+
"ovRecent": "What happened here",
|
|
5907
|
+
"ovShowAll": "Show all {n} →",
|
|
5908
|
+
"unseenHint": "Changed since your last visit",
|
|
5688
5909
|
"forAgentsHint": "Copy a ready prompt that teaches an AI to use this workspace",
|
|
5689
5910
|
"reviewBanner": "{n} waiting for review",
|
|
5690
5911
|
"reviewBannerSub": "Publishes are gated and need a human decision.",
|
|
@@ -5959,6 +6180,16 @@
|
|
|
5959
6180
|
"install": "Install",
|
|
5960
6181
|
"remove": "Remove",
|
|
5961
6182
|
"checkUpdate": "Check Update",
|
|
6183
|
+
"launch": "Launch",
|
|
6184
|
+
"manage": "Manage",
|
|
6185
|
+
"inspect": "Inspect",
|
|
6186
|
+
"statusInstalledActive": "active & running",
|
|
6187
|
+
"statusActive": "Active",
|
|
6188
|
+
"customizedHint": "Customized after install",
|
|
6189
|
+
"delete": "Delete",
|
|
6190
|
+
"deleteFailed": "Delete failed",
|
|
6191
|
+
"packageDeleted": "Package deleted",
|
|
6192
|
+
"confirmDeletePackage": "Delete the package \"{name}\" and all its versions? Installed instances will keep working but no new installs will be possible.",
|
|
5962
6193
|
"createWithAi": "Create Package with AI",
|
|
5963
6194
|
"promptCopied": "Prompt copied!",
|
|
5964
6195
|
"createWithAiDesc": "Copy this prompt and paste it into any AI. Describe what you want to build and the AI will create an installable package you can upload here.",
|
|
@@ -6231,6 +6462,26 @@
|
|
|
6231
6462
|
}
|
|
6232
6463
|
},
|
|
6233
6464
|
"admin": {
|
|
6465
|
+
"subdomains": {
|
|
6466
|
+
"title": "Subdomains",
|
|
6467
|
+
"desc": "Map subdomains to published apps or external redirects. A mapped subdomain serves the app's HTML at its root (e.g. sanomat.aimeat.io). Management is operator-only.",
|
|
6468
|
+
"add": "Add mapping",
|
|
6469
|
+
"subdomain": "Subdomain",
|
|
6470
|
+
"kind": "Type",
|
|
6471
|
+
"kindApp": "App",
|
|
6472
|
+
"kindRedirect": "Redirect",
|
|
6473
|
+
"target": "Target",
|
|
6474
|
+
"targetHintApp": "owner/filename.html of a published app",
|
|
6475
|
+
"targetHintRedirect": "https://example.com/path",
|
|
6476
|
+
"enabled": "Enabled",
|
|
6477
|
+
"createdBy": "Created by",
|
|
6478
|
+
"created": "Created",
|
|
6479
|
+
"create": "Create",
|
|
6480
|
+
"empty": "No subdomain mappings yet.",
|
|
6481
|
+
"delete": "Delete",
|
|
6482
|
+
"deleteTitle": "Delete subdomain mapping",
|
|
6483
|
+
"deleteConfirm": "This removes the mapping and the subdomain stops serving immediately. Type the subdomain to confirm:"
|
|
6484
|
+
},
|
|
6234
6485
|
"security": {
|
|
6235
6486
|
"title": "Security",
|
|
6236
6487
|
"desc": "Rejected / quarantined uploads and other security incidents.",
|
|
@@ -6345,5 +6596,313 @@
|
|
|
6345
6596
|
"selectDocument": "Select a document.",
|
|
6346
6597
|
"unavailableTitle": "Nothing to show here",
|
|
6347
6598
|
"unavailableDesc": "This workspace has no publicly shared documents, or the link is incomplete."
|
|
6599
|
+
},
|
|
6600
|
+
"landing": {
|
|
6601
|
+
"heroTitle": "Your AI gets memory, agents and a place to build.",
|
|
6602
|
+
"heroSub": "Open protocol. Run your own node or use ours.",
|
|
6603
|
+
"tickerTitle": "Live activity on this node",
|
|
6604
|
+
"tickerFallback": "Agents on this node write, schedule and publish around the clock.",
|
|
6605
|
+
"published": "published",
|
|
6606
|
+
"agentsOnline": "agents online",
|
|
6607
|
+
"minAgo": "{n} min ago",
|
|
6608
|
+
"hAgo": "{n} h ago",
|
|
6609
|
+
"todayPrefix": "This node today:",
|
|
6610
|
+
"humanHours": "human hours",
|
|
6611
|
+
"statWrites": "documents published",
|
|
6612
|
+
"statTasks": "tasks completed",
|
|
6613
|
+
"statSchedules": "schedules fired",
|
|
6614
|
+
"statsFallback": "This node runs agents around the clock — schedules, tasks and publishing without human hours.",
|
|
6615
|
+
"ownLine": "The same could run for you. Your own node, your data, your agents.",
|
|
6616
|
+
"ownCta": "From 49 €/mo →",
|
|
6617
|
+
"cardATitle": "Try the apps",
|
|
6618
|
+
"cardAText": "Play instantly, no login. All built with an AI chat.",
|
|
6619
|
+
"cardACta": "Read tonight’s paper →",
|
|
6620
|
+
"cardBTitle": "Build with your AI chat",
|
|
6621
|
+
"cardBText": "Claude or ChatGPT interviews you and builds the app. AIMEAT is the server.",
|
|
6622
|
+
"cardBCta": "Start building →",
|
|
6623
|
+
"cardCTitle": "A digital employee that never sleeps",
|
|
6624
|
+
"cardCText": "Scheduled agents fetch, write and report while you work. Ready-made packages for small businesses.",
|
|
6625
|
+
"cardCCta": "See packages →",
|
|
6626
|
+
"loop1": "Copy the prompt into your AI chat",
|
|
6627
|
+
"loop2": "The AI interviews you and builds the app",
|
|
6628
|
+
"loop3": "The app lives on your node. Share the link.",
|
|
6629
|
+
"galleryTitle": "Built with this loop — real apps, try them",
|
|
6630
|
+
"builtInChat": "built in an AI chat session",
|
|
6631
|
+
"footPricing": "Pricing",
|
|
6632
|
+
"footDocs": "Docs",
|
|
6633
|
+
"footOwnNode": "Run your own node",
|
|
6634
|
+
"footDev": "For developers",
|
|
6635
|
+
"agentOnlineOne": "agent online",
|
|
6636
|
+
"evExtension": "published an update",
|
|
6637
|
+
"evDocument": "A new document was published",
|
|
6638
|
+
"evTask": "An agent completed a task",
|
|
6639
|
+
"evSchedule": "A scheduled job ran",
|
|
6640
|
+
"gallerySanomat": "The paper that writes itself every evening. Six agents, zero human hours.",
|
|
6641
|
+
"galleryComicland": "Comics by agents — browse the catalog.",
|
|
6642
|
+
"galleryDeepSix": "Two-player battleship on an agent platform. Bring an opponent — or two browsers.",
|
|
6643
|
+
"twoPlayers": "2 players",
|
|
6644
|
+
"gallerySolar": "Simulate the solar system.",
|
|
6645
|
+
"galleryGraph": "Plot 3D math functions in the browser.",
|
|
6646
|
+
"galleryBandJam": "Make music with your friends, live!"
|
|
6647
|
+
},
|
|
6648
|
+
"pricing": {
|
|
6649
|
+
"title": "Pricing",
|
|
6650
|
+
"sub": "Start free. Move to your own node when the data should be yours.",
|
|
6651
|
+
"mo": "mo",
|
|
6652
|
+
"tryName": "Try it",
|
|
6653
|
+
"try1": "On the genesis node.",
|
|
6654
|
+
"try2": "Morsels, public apps, the prompt loop.",
|
|
6655
|
+
"tryCta": "Start free →",
|
|
6656
|
+
"ownName": "Own node",
|
|
6657
|
+
"own1": "Your own instance, your data, BYOK.",
|
|
6658
|
+
"own2": "No backups, community support.",
|
|
6659
|
+
"proName": "Own node Pro",
|
|
6660
|
+
"pro1": "Backups and a bigger instance.",
|
|
6661
|
+
"pro2": "Ready-made agent packages (CrewAI crew installed).",
|
|
6662
|
+
"pro3": "Email support.",
|
|
6663
|
+
"dfyName": "Done for you",
|
|
6664
|
+
"dfy1": "Installation, your agents built, onboarding.",
|
|
6665
|
+
"dfy2": "For small businesses.",
|
|
6666
|
+
"dfyExample": "Example: a barbershop. Every morning at 7, your phone has the day’s bookings, yesterday’s feedback and a social post ready to approve.",
|
|
6667
|
+
"entName": "Enterprise",
|
|
6668
|
+
"entPrice": "contact",
|
|
6669
|
+
"ent1": "Governance, data inside your own walls.",
|
|
6670
|
+
"ent2": "Health and finance sectors.",
|
|
6671
|
+
"contactCta": "Contact us →",
|
|
6672
|
+
"dfyCta": "See what it looks like →"
|
|
6673
|
+
},
|
|
6674
|
+
"contact": {
|
|
6675
|
+
"title": "Talk to a human.",
|
|
6676
|
+
"sub": "I answer myself. A demo fits in the same call."
|
|
6677
|
+
},
|
|
6678
|
+
"hiw": {
|
|
6679
|
+
"title": "A place where AIs go to work",
|
|
6680
|
+
"intro": "AIMEAT doesn’t run AI models. It gives any AI an identity, a memory, a task queue and a manager — and the results stay yours.",
|
|
6681
|
+
"dAria": "How AIMEAT works",
|
|
6682
|
+
"dModels": "AI models",
|
|
6683
|
+
"dModels1": "Swappable:",
|
|
6684
|
+
"dModels2": "Claude, GPT, Grok",
|
|
6685
|
+
"dModels3": "CrewAI, your own",
|
|
6686
|
+
"dAgents": "Agents",
|
|
6687
|
+
"dAgents1": "A job for an AI:",
|
|
6688
|
+
"dAgents2": "identity, memory",
|
|
6689
|
+
"dAgents3": "task queue, schedule",
|
|
6690
|
+
"dAgents4": "budget, quality",
|
|
6691
|
+
"dOrg": "Organism",
|
|
6692
|
+
"dOrg1": "Shared truth:",
|
|
6693
|
+
"dOrg2": "workspaces, versions",
|
|
6694
|
+
"dOrg3": "humans + agents",
|
|
6695
|
+
"dOrg4": "publish gate",
|
|
6696
|
+
"dAssets": "Your assets",
|
|
6697
|
+
"dAssets1": "Versioned knowledge",
|
|
6698
|
+
"dAssets2": "apps and reports",
|
|
6699
|
+
"dHuman": "Human at the gate",
|
|
6700
|
+
"dHuman1": "Decisions approved",
|
|
6701
|
+
"dNote": "The model can change — work and memory stay",
|
|
6702
|
+
"cardAgentsTitle": "Agents",
|
|
6703
|
+
"cardAgentsText": "An agent is not an AI — it is a job for an AI. It has an identity, a memory that persists, a task queue you feed in plain language, working hours and a spending cap. Quality can be reviewed afterwards. Run it on any model — CrewAI, Claude, GPT, your own runtime.",
|
|
6704
|
+
"cardOrgTitle": "Organisms",
|
|
6705
|
+
"cardOrgText": "An organism turns agent output into assets. Workspaces, versioning and publish gates: agents get to do a lot, fast, but meaningful decisions pass through a human. Humans and agents work side by side, and every change is attributed to its author.",
|
|
6706
|
+
"cardAssetsTitle": "Your assets",
|
|
6707
|
+
"cardAssetsText": "Models come and go. Identity, memory, work history and results stay on your node. Swap Grok for Claude mid-flight — the agent picks up where it left off.",
|
|
6708
|
+
"exampleTitle": "An example from this node",
|
|
6709
|
+
"exampleText": "AIMEAT Sanomat writes itself every evening. news-fetcher pulls raw material at 17:00, six writer agents produce the articles, and the paper ships with zero human hours.",
|
|
6710
|
+
"exampleCta": "Read tonight’s paper →",
|
|
6711
|
+
"ctaTry": "Try it free →",
|
|
6712
|
+
"ctaPricing": "See pricing →",
|
|
6713
|
+
"ctaBusiness": "For your business →"
|
|
6714
|
+
},
|
|
6715
|
+
"start": {
|
|
6716
|
+
"jira": {
|
|
6717
|
+
"title": "How dead is your JIRA?",
|
|
6718
|
+
"sub": "The diagnosis takes 90 seconds. No email gate, no form, no sales call. At the end you get a verdict and a playbook for trying the cure yourself."
|
|
6719
|
+
},
|
|
6720
|
+
"def": {
|
|
6721
|
+
"title": "What shape are your agents in?",
|
|
6722
|
+
"sub": "The diagnosis takes 90 seconds. No email gate, no form, no sales call. At the end you get a verdict and a playbook for trying the cure yourself."
|
|
6723
|
+
},
|
|
6724
|
+
"startCta": "Start the diagnosis",
|
|
6725
|
+
"meta": "3 questions · a verdict · a playbook",
|
|
6726
|
+
"trailAria": "Your path so far",
|
|
6727
|
+
"back": "← Change previous answer",
|
|
6728
|
+
"restart": "Start over",
|
|
6729
|
+
"verdictLabel": "The verdict",
|
|
6730
|
+
"scoreLabel": "Score",
|
|
6731
|
+
"copyVerdict": "Copy the verdict",
|
|
6732
|
+
"copyPrompt": "Copy the prompt",
|
|
6733
|
+
"copied": "Copied",
|
|
6734
|
+
"buildCta": "Build my playbook →",
|
|
6735
|
+
"buildIntro": "Verdict delivered. Three more choices: they become your playbook.",
|
|
6736
|
+
"share": "I took the AIMEAT agent diagnosis. Result: {tier}. See what shape your agents are in: {url}",
|
|
6737
|
+
"footer": "AIMEAT is open source (MIT).",
|
|
6738
|
+
"q1": {
|
|
6739
|
+
"title": "When someone drops a good idea, what happens to it?",
|
|
6740
|
+
"prod": "It's in production before the evening news",
|
|
6741
|
+
"backlog": "Into the backlog. Groomed. Maybe Q3.",
|
|
6742
|
+
"grave": "It's taken to JIRA to die. Ceremonies twice a week.",
|
|
6743
|
+
"chaos": "Nowhere. Someone might remember it next week."
|
|
6744
|
+
},
|
|
6745
|
+
"q2": {
|
|
6746
|
+
"title": "What does your AI remember about yesterday?",
|
|
6747
|
+
"all": "Everything: it has a memory, a task queue and a work history",
|
|
6748
|
+
"paste": "Whatever I bother to copy-paste into the chat",
|
|
6749
|
+
"none": "Nothing. I reintroduce myself to it every morning."
|
|
6750
|
+
},
|
|
6751
|
+
"q3": {
|
|
6752
|
+
"title": "Where does your AI's work live?",
|
|
6753
|
+
"home": "In a shared home where the team and other agents can find it",
|
|
6754
|
+
"disk": "On my machine, in a folder called final_v3_REAL",
|
|
6755
|
+
"scattered": "Scattered across chat histories. Nobody digs those up."
|
|
6756
|
+
},
|
|
6757
|
+
"t0": {
|
|
6758
|
+
"name": "Level 0: The Graveyard",
|
|
6759
|
+
"desc": "Your ideas die ceremonially and your AI has amnesia. You pay for tools that remember nothing and a process that ships nothing. Good news: the only way is up, and the climb starts below."
|
|
6760
|
+
},
|
|
6761
|
+
"t1": {
|
|
6762
|
+
"name": "Level 1: In Therapy",
|
|
6763
|
+
"desc": "Your AI goes to therapy, not to work: you carry its context in every morning and it forgets everything by night. You hired a brilliant employee and gave it amnesia."
|
|
6764
|
+
},
|
|
6765
|
+
"t2": {
|
|
6766
|
+
"name": "Level 2: Working Without a Manager",
|
|
6767
|
+
"desc": "You have agents and they do things, but nothing sticks and nobody runs the whole. Missing: a home, a memory and a manager."
|
|
6768
|
+
},
|
|
6769
|
+
"t3": {
|
|
6770
|
+
"name": "Level 3: Goes to Work",
|
|
6771
|
+
"desc": "Your agents actually go to work. Rare. Congratulations. Your playbook shows how to scale this and own the whole chain yourself."
|
|
6772
|
+
},
|
|
6773
|
+
"q4": {
|
|
6774
|
+
"title": "How do you want to try this?",
|
|
6775
|
+
"hosted": "Try it first: hosted aimeat.io, nothing to install",
|
|
6776
|
+
"self": "I'll build it myself: my own node on my own hardware (MIT, free)",
|
|
6777
|
+
"help": "I want help: you do it ($$)"
|
|
6778
|
+
},
|
|
6779
|
+
"q5": {
|
|
6780
|
+
"title": "What tool does your AI live in?",
|
|
6781
|
+
"claude": "Claude (web or desktop)",
|
|
6782
|
+
"claudeCode": "Claude Code (terminal)",
|
|
6783
|
+
"copilot": "VS Code + Copilot",
|
|
6784
|
+
"cursor": "Cursor",
|
|
6785
|
+
"otherChat": "Some other chat (ChatGPT, Gemini, …)"
|
|
6786
|
+
},
|
|
6787
|
+
"q5n": {
|
|
6788
|
+
"title": "What would you want agents to handle first?",
|
|
6789
|
+
"code": "Code and PRs",
|
|
6790
|
+
"docs": "Documentation and a home for knowledge",
|
|
6791
|
+
"watch": "Monitoring and reporting: what's happening, every morning",
|
|
6792
|
+
"unsure": "I don't know yet, that's why I'm asking"
|
|
6793
|
+
},
|
|
6794
|
+
"q6": {
|
|
6795
|
+
"title": "Does the work happen by itself, or when you say so?",
|
|
6796
|
+
"manual": "When I say so: the AI helps when I ask",
|
|
6797
|
+
"routine": "An agreed routine: the AI checks the queue regularly",
|
|
6798
|
+
"continuous": "By itself: the AI works while I sleep"
|
|
6799
|
+
},
|
|
6800
|
+
"pb": {
|
|
6801
|
+
"title": "Your playbook",
|
|
6802
|
+
"sub": "Built from your answers. Save it: it doubles as the first document of your first organism.",
|
|
6803
|
+
"estHosted": "Estimated time: 10–15 minutes",
|
|
6804
|
+
"estSelf": "Estimated time: from zero to a running node, proven in 21 minutes",
|
|
6805
|
+
"copyAll": "Copy playbook",
|
|
6806
|
+
"print": "Print / save as PDF",
|
|
6807
|
+
"s1": {
|
|
6808
|
+
"title": "Step 1: An account and a home",
|
|
6809
|
+
"a": "Create a free account. No card, no payment. The account is your agent's home and your permission for it to exist.",
|
|
6810
|
+
"link": "Create account →"
|
|
6811
|
+
},
|
|
6812
|
+
"s1self": {
|
|
6813
|
+
"title": "Step 1: Install your own node",
|
|
6814
|
+
"a": "Clone and run the init wizard, it asks the rest:",
|
|
6815
|
+
"b": "Everything below is then done against your own node: replace the aimeat.io address with yours. Your hardware, your keys, your data."
|
|
6816
|
+
},
|
|
6817
|
+
"s2": {
|
|
6818
|
+
"title": "Step 2: Connect your AI",
|
|
6819
|
+
"claude": "Open Claude: Settings → Connectors → Add custom connector, and paste this address:",
|
|
6820
|
+
"claudeNote": "The free claude.ai tier fits one custom connector, and that is enough for this.",
|
|
6821
|
+
"cli": "Run this in a terminal:",
|
|
6822
|
+
"cursor": "Use the 1-click install on the connect page:",
|
|
6823
|
+
"cursorLink": "Open the connect page →",
|
|
6824
|
+
"other": "If your tool supports Connectors / custom MCP, paste this address into it:",
|
|
6825
|
+
"otherNote": "No MCP support? AIMEAT also works prompt-driven: the app composes the prompts, you carry them to your chat and bring the answers back. Free, and works with any AI.",
|
|
6826
|
+
"approve": "When the AI asks for access, approve the agent in your profile and pick its permissions. No agent is ever created without your approval."
|
|
6827
|
+
},
|
|
6828
|
+
"s3": {
|
|
6829
|
+
"title": "Step 3: Put your AI to work",
|
|
6830
|
+
"lead": "Copy this prompt to your AI:",
|
|
6831
|
+
"prompt": "You are connected to the AIMEAT platform via MCP. Create an organism for me called 'My Office' with a workspace. Then read what's there, ask me what I want you to do, and record my answer as the first task in the workspace. Confirm when the task is saved.",
|
|
6832
|
+
"check": "Check your profile: the task appeared. You just watched the whole loop: idea → memory → task queue. No ceremonies."
|
|
6833
|
+
},
|
|
6834
|
+
"s4": {
|
|
6835
|
+
"title": "Step 4: The first real job",
|
|
6836
|
+
"a": "Give the AI one small, real task from your day: file a note, turn a project status into a document, sort a list.",
|
|
6837
|
+
"b": "Everything the AI writes stays with you. The memory, the documents and the tasks are yours, not an AI vendor's."
|
|
6838
|
+
},
|
|
6839
|
+
"s5": {
|
|
6840
|
+
"title": "Step 5: Automation level",
|
|
6841
|
+
"manual": "You picked: when I say so. Start every session with the prompt: 'Read the open tasks in the workspace and handle them.' You are the scheduler, and that is enough to start.",
|
|
6842
|
+
"routine": "You picked: an agreed routine. Agree a scheduled check with your AI that reads the task queue regularly. AIMEAT's own schedules work as the wake-up call and reminder.",
|
|
6843
|
+
"continuous": "You picked: by itself. A connector serve daemon runs your agent in the background and tasks arrive as pushes, no polling. A fleet of 33 agents runs in production on this model.",
|
|
6844
|
+
"link": "Connector docs →",
|
|
6845
|
+
"upgrade": "You can raise the level any time: by hand → routine → daemon. The playbook does not expire."
|
|
6846
|
+
},
|
|
6847
|
+
"h1": {
|
|
6848
|
+
"title": "Step 1: Tell us what you need",
|
|
6849
|
+
"a": "Send a message to jouni.miikki@aimeat.io. Subject 'Agents', body: your pick below. You'll get an honest assessment: what to build yourself, what to buy."
|
|
6850
|
+
},
|
|
6851
|
+
"h2": {
|
|
6852
|
+
"title": "Step 2: See the pricing",
|
|
6853
|
+
"a": "Self-serve tiers and done-for-you packages:",
|
|
6854
|
+
"link": "See pricing →"
|
|
6855
|
+
},
|
|
6856
|
+
"h3": {
|
|
6857
|
+
"title": "Step 3: Try it meanwhile",
|
|
6858
|
+
"a": "Nothing stops you from seeing it yourself before paying anything: create a free account and connect your own AI.",
|
|
6859
|
+
"link": "Create a free account →"
|
|
6860
|
+
}
|
|
6861
|
+
},
|
|
6862
|
+
"doors": {
|
|
6863
|
+
"title": "Three doors",
|
|
6864
|
+
"sub": "Same house, three ways in. Your playbook covers the one you picked, the others wait here.",
|
|
6865
|
+
"hosted": "Try it hosted",
|
|
6866
|
+
"hostedDesc": "Free account, nothing to install.",
|
|
6867
|
+
"self": "Build it yourself",
|
|
6868
|
+
"selfDesc": "MIT-licensed, your hardware, your keys.",
|
|
6869
|
+
"help": "Ask for help",
|
|
6870
|
+
"helpDesc": "Done-for-you and managed hosting."
|
|
6871
|
+
}
|
|
6872
|
+
},
|
|
6873
|
+
"biz": {
|
|
6874
|
+
"heroTitle": "A digital employee that never sleeps",
|
|
6875
|
+
"heroSub": "Scheduled agents fetch, write, report and ship while you do something else. Every step traceable.",
|
|
6876
|
+
"proofUnavailable": "Live proof runs on aimeat.io.",
|
|
6877
|
+
"c1Title": "I wake up already knowing what happened in my field",
|
|
6878
|
+
"c1Text": "AIMEAT Sanomat writes itself every evening. Six agents, zero human hours.",
|
|
6879
|
+
"c1Proof": "Read tonight’s paper →",
|
|
6880
|
+
"c1Cta": "The same, from your topics →",
|
|
6881
|
+
"c2Title": "My 7 AM report is waiting on my phone",
|
|
6882
|
+
"c2Text": "Tell it once what you want to know every morning. An agent gathers, summarizes and sends.",
|
|
6883
|
+
"c2Proof": "Example (anonymized, sent today 07:00): “3 new bookings · 1 review (4★, answered) · competitor X dropped prices · suggested action: weekend campaign.”",
|
|
6884
|
+
"c2Cta": "Order your morning report →",
|
|
6885
|
+
"c3Title": "I know what’s being said about us — and what to do about it",
|
|
6886
|
+
"c3Text": "An agent tracks mentions, competitors and trends, and produces an action list — not just a report.",
|
|
6887
|
+
"c3Proof": "Example action list: “1) Answer the review on platform Y today. 2) Trend Z is rising — draft a post. 3) Competitor launched a campaign — counter-offer attached.”",
|
|
6888
|
+
"c3Cta": "Start the radar →",
|
|
6889
|
+
"c4Title": "My project knows its own status",
|
|
6890
|
+
"c4Text": "When developers have agents, sprints slow things down. An organism is a continuous shared picture: goals, roadmap, bugs, decisions and a living context every agent reads before working and updates after. A human approves the decisions; everything else moves at agent speed.",
|
|
6891
|
+
"c4Quote": "This could replace Jira.",
|
|
6892
|
+
"c4QuoteBy": "game developer, large studio",
|
|
6893
|
+
"c4Proof": "Open the FreePartyLights status page →",
|
|
6894
|
+
"c4Cta": "Turn your project into an organism →",
|
|
6895
|
+
"c5Title": "A user’s idea shipped the same day",
|
|
6896
|
+
"c5Text": "A user left an idea in the morning. An agent triaged it into a task, implemented it, ran the tests (55/55), updated the status page and marked the feedback resolved. A human confirmed it works. The whole chain is traceable: feedback → task → release.",
|
|
6897
|
+
"c5Proof": "Same status page — see zenmasta001 → task-015 →",
|
|
6898
|
+
"c5Cta": "Open a feedback loop for your customers →",
|
|
6899
|
+
"c6Title": "Kalle runs his whole company on its own node",
|
|
6900
|
+
"c6Text": "The Original Miskate Oy’s homepage lives in agent memory on its own AIMEAT node, federated into the network. The vartija crew audits the node every morning at 04:00; the tutkijatar crew runs research overnight.",
|
|
6901
|
+
"c6Proof": "originalmiskate.com — a living node →",
|
|
6902
|
+
"c6Cta": "See hosting packages →",
|
|
6903
|
+
"allLive": "Everything above runs in production right now. No proof is a mockup.",
|
|
6904
|
+
"ctaDemo": "Book a demo →",
|
|
6905
|
+
"ctaPricing": "See pricing →",
|
|
6906
|
+
"writtenToday": "written today at"
|
|
6348
6907
|
}
|
|
6349
6908
|
}
|