aimeat 1.23.2 → 1.23.3
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 +536 -21
- package/dist/locales/fi.json +548 -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/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/spa.html +32 -2
- 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 +427 -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.js +2 -0
- package/dist/public/views/start-flows.js +281 -0
- package/dist/public/views/start.js +258 -0
- package/dist/src/generated/api-types.d.ts +856 -17
- 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/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 +229 -0
- package/dist/src/models/offer-schemas.d.ts.map +1 -0
- package/dist/src/models/offer-schemas.js +100 -0
- package/dist/src/models/offer-schemas.js.map +1 -0
- package/dist/src/routes/agent-tasks.d.ts.map +1 -1
- package/dist/src/routes/agent-tasks.js +33 -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/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/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/server-bootstrap/routes-loader.d.ts.map +1 -1
- package/dist/src/server-bootstrap/routes-loader.js +12 -1
- package/dist/src/server-bootstrap/routes-loader.js.map +1 -1
- package/dist/src/server.d.ts.map +1 -1
- package/dist/src/server.js +4 -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/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/storage/interface.d.ts +11 -1
- 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
|
@@ -126,7 +126,9 @@
|
|
|
126
126
|
"help": "Help",
|
|
127
127
|
"admin": "Admin",
|
|
128
128
|
"themeToDark": "Switch to dark mode",
|
|
129
|
-
"themeToLight": "Switch to light mode"
|
|
129
|
+
"themeToLight": "Switch to light mode",
|
|
130
|
+
"howItWorks": "How it works",
|
|
131
|
+
"business": "For your business"
|
|
130
132
|
},
|
|
131
133
|
"hero": {
|
|
132
134
|
"title": "Your data is yours. Your AI works for you.",
|
|
@@ -340,6 +342,7 @@
|
|
|
340
342
|
},
|
|
341
343
|
"tabs": {
|
|
342
344
|
"agents": "Agents",
|
|
345
|
+
"offers": "Offers",
|
|
343
346
|
"chatSessions": "Chat Sessions",
|
|
344
347
|
"mcp": "MCP",
|
|
345
348
|
"wallet": "Wallet",
|
|
@@ -360,6 +363,72 @@
|
|
|
360
363
|
"organisms": "Organisms",
|
|
361
364
|
"packages": "Packages"
|
|
362
365
|
},
|
|
366
|
+
"offers": {
|
|
367
|
+
"title": "What can I do?",
|
|
368
|
+
"desc": "Everything your agents can do for you — search, then ask. No clicking through agents and tabs.",
|
|
369
|
+
"searchPlaceholder": "What do you want to do?…",
|
|
370
|
+
"empty": "None of your agents publish offers yet.",
|
|
371
|
+
"noMatch": "No offers match.",
|
|
372
|
+
"run": "▶ Run",
|
|
373
|
+
"copyPrompt": "⧉ Copy prompt",
|
|
374
|
+
"runNow": "⏱ Run now",
|
|
375
|
+
"example": "Example",
|
|
376
|
+
"requirements": "Before you ask",
|
|
377
|
+
"consequences": "What this does",
|
|
378
|
+
"deliverable": "You’ll get back",
|
|
379
|
+
"untested": "untested — no sample yet",
|
|
380
|
+
"requestPlaceholder": "Your request (optional — fills the example)…",
|
|
381
|
+
"promptCopied": "Prompt copied — paste it into the agent’s chat.",
|
|
382
|
+
"triggered": "Schedule triggered.",
|
|
383
|
+
"requested": "Requested — task queued for {agent}.",
|
|
384
|
+
"askFailed": "Ask failed",
|
|
385
|
+
"confirmAsk": "This has lasting effects ({effects}). Ask anyway?",
|
|
386
|
+
"online": "online",
|
|
387
|
+
"offline": "offline",
|
|
388
|
+
"provenance": "From",
|
|
389
|
+
"task": "task",
|
|
390
|
+
"queued": "queued",
|
|
391
|
+
"inboxTitle": "What came back",
|
|
392
|
+
"inboxDesc": "Everything your agents delivered — check it and rate it, all in one place.",
|
|
393
|
+
"segDo": "Do",
|
|
394
|
+
"segInbox": "Inbox",
|
|
395
|
+
"inboxEmpty": "Nothing has come back yet. Ask an agent something in “What can I do?”.",
|
|
396
|
+
"expected": "Expected",
|
|
397
|
+
"failedMsg": "This task failed — no deliverable was produced.",
|
|
398
|
+
"deliverableGone": "Deliverable no longer available.",
|
|
399
|
+
"noDeliverableYet": "No deliverable yet.",
|
|
400
|
+
"rateIt": "Rate it",
|
|
401
|
+
"yourRating": "Your rating",
|
|
402
|
+
"ratePlaceholder": "Optional note…",
|
|
403
|
+
"submitRating": "Submit",
|
|
404
|
+
"rated": "Thanks — rated.",
|
|
405
|
+
"rateFailed": "Rating failed",
|
|
406
|
+
"selling": "Selling",
|
|
407
|
+
"priceMorsels": "Price",
|
|
408
|
+
"morsels": "morsels",
|
|
409
|
+
"perCall": "call",
|
|
410
|
+
"saveBilling": "Save",
|
|
411
|
+
"billSaved": "Saved.",
|
|
412
|
+
"billSaveFailed": "Could not save",
|
|
413
|
+
"billHint": "Others pay {n} morsels per call; you keep it minus the marketplace fee. Your own use is free.",
|
|
414
|
+
"notCallableHint": "Not machine-callable yet — others can find it, but invoking it needs a capability binding (action_id).",
|
|
415
|
+
"openInbox": "See it in the Inbox →",
|
|
416
|
+
"visibility": { "private": "Private (only me)", "unlisted": "Unlisted (by link)", "public": "Public (listed)" },
|
|
417
|
+
"status": { "done": "done", "failed": "failed", "active": "in progress", "paused": "paused", "stalled": "stalled", "queued": "queued", "revision_requested": "revision requested", "draft": "draft" },
|
|
418
|
+
"verification": { "deterministic": "deterministic", "gated": "verified", "ungated": "unverified" },
|
|
419
|
+
"dataHandling": { "local-only": "local-only", "llm-provider": "via LLM", "third-party": "third-party" },
|
|
420
|
+
"cost": { "free": "free", "cheap": "cheap", "expensive": "$$$" },
|
|
421
|
+
"latency": { "seconds": "seconds", "minutes": "minutes", "long-running": "long-running" },
|
|
422
|
+
"consequence": {
|
|
423
|
+
"creates-agent": "creates an agent",
|
|
424
|
+
"creates-schedule": "creates a schedule",
|
|
425
|
+
"mutates-host": "runs on your machine",
|
|
426
|
+
"publishes-public": "publishes publicly",
|
|
427
|
+
"external-send": "sends externally",
|
|
428
|
+
"mutates-live-app": "changes a live app",
|
|
429
|
+
"delegates-to-agent": "delegates to other agents"
|
|
430
|
+
}
|
|
431
|
+
},
|
|
363
432
|
"agents": {
|
|
364
433
|
"title": "Your Agents",
|
|
365
434
|
"active": {
|
|
@@ -969,7 +1038,8 @@
|
|
|
969
1038
|
"promptCopied": "Prompt copied",
|
|
970
1039
|
"copyInstallCommand": "Copy install command",
|
|
971
1040
|
"installCommandCopied": "Install command copied",
|
|
972
|
-
"noDeliveries": "No deliveries recorded yet."
|
|
1041
|
+
"noDeliveries": "No deliveries recorded yet.",
|
|
1042
|
+
"setupWebhook": "Set up webhook"
|
|
973
1043
|
},
|
|
974
1044
|
"messages": {
|
|
975
1045
|
"commands": {
|
|
@@ -1043,7 +1113,8 @@
|
|
|
1043
1113
|
"sortUpdated": "Last updated",
|
|
1044
1114
|
"sortCreated": "Created",
|
|
1045
1115
|
"sortNewestFirst": "Newest first",
|
|
1046
|
-
"sortOldestFirst": "Oldest first"
|
|
1116
|
+
"sortOldestFirst": "Oldest first",
|
|
1117
|
+
"noneInline": "none"
|
|
1047
1118
|
},
|
|
1048
1119
|
"agent_config": {
|
|
1049
1120
|
"copy": "Copy",
|
|
@@ -1056,7 +1127,10 @@
|
|
|
1056
1127
|
"saveError": "Failed to save config file",
|
|
1057
1128
|
"uploaded": "Config file uploaded",
|
|
1058
1129
|
"uploadError": "Failed to upload config file",
|
|
1059
|
-
"viewing": "Viewing"
|
|
1130
|
+
"viewing": "Viewing",
|
|
1131
|
+
"deleteTitle": "Delete this agent",
|
|
1132
|
+
"deleteDesc": "Removes the agent, its credentials and its task history. This cannot be undone.",
|
|
1133
|
+
"deleteConfirmLabel": "Type the agent’s name to confirm"
|
|
1060
1134
|
},
|
|
1061
1135
|
"activity": {
|
|
1062
1136
|
"filterAll": "All",
|
|
@@ -1078,7 +1152,9 @@
|
|
|
1078
1152
|
"connected": "Connected",
|
|
1079
1153
|
"notConfigured": "Not configured",
|
|
1080
1154
|
"mcpLabel": "MCP"
|
|
1081
|
-
}
|
|
1155
|
+
},
|
|
1156
|
+
"notReported": "not reported",
|
|
1157
|
+
"deliveryPollingLine": "Delivery: polling"
|
|
1082
1158
|
},
|
|
1083
1159
|
"directives": {
|
|
1084
1160
|
"footer": "Directives are included in every skill bundle update. The agent receives these as behavioral constraints.",
|
|
@@ -1109,7 +1185,24 @@
|
|
|
1109
1185
|
"agent_config": "No configuration files. The agent will push its config files after the skill bundle is installed.",
|
|
1110
1186
|
"activity": "No activity recorded yet. Events will appear here once the agent starts working.",
|
|
1111
1187
|
"services": "No services declared. The agent can declare services during Hello Integration Step 11."
|
|
1112
|
-
}
|
|
1188
|
+
},
|
|
1189
|
+
"capTools": "tools",
|
|
1190
|
+
"capSkills": "skills",
|
|
1191
|
+
"capLangs": "languages",
|
|
1192
|
+
"readinessTooltip": "Readiness score 0–100 from onboarding checks. Levels: none → basic → standard → advanced → full.",
|
|
1193
|
+
"federationLabel": "Federation",
|
|
1194
|
+
"federationOn": "on",
|
|
1195
|
+
"federationOff": "off",
|
|
1196
|
+
"federationOnHint": "Shared via federation — click to make local only",
|
|
1197
|
+
"federationOffHint": "Local only — click to share via federation"
|
|
1198
|
+
},
|
|
1199
|
+
"board": {
|
|
1200
|
+
"online": "online",
|
|
1201
|
+
"quiet": "quiet",
|
|
1202
|
+
"onboarding": "onboarding",
|
|
1203
|
+
"issue": "issue",
|
|
1204
|
+
"newShort": "new",
|
|
1205
|
+
"issueShort": "issue"
|
|
1113
1206
|
}
|
|
1114
1207
|
},
|
|
1115
1208
|
"scopes": {
|
|
@@ -1306,7 +1399,6 @@
|
|
|
1306
1399
|
"shareSuccess": "Shared to federation",
|
|
1307
1400
|
"unshareSuccess": "Removed from federation",
|
|
1308
1401
|
"selectGroup": "Select group",
|
|
1309
|
-
"skipGroup": "Skip",
|
|
1310
1402
|
"noGroups": "No sharing groups. Create one in the Access tab.",
|
|
1311
1403
|
"sortLabel": "Sort:",
|
|
1312
1404
|
"sortUpdated": "Last updated",
|
|
@@ -1343,7 +1435,24 @@
|
|
|
1343
1435
|
"loadingHome": "Loading home node memories...",
|
|
1344
1436
|
"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
1437
|
"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."
|
|
1438
|
+
"errorPeerUnsupported": "This peer node does not support memory browsing yet. It may be running an older version of AIMEAT.",
|
|
1439
|
+
"tabOwn": "My memory",
|
|
1440
|
+
"tabPublic": "Public",
|
|
1441
|
+
"tabRemote": "Remote nodes",
|
|
1442
|
+
"keysCount": "{n} keys",
|
|
1443
|
+
"groupOther": "other",
|
|
1444
|
+
"filterType": "Type to filter…",
|
|
1445
|
+
"createGroupBtn": "Create a group →",
|
|
1446
|
+
"invalidJson": "Invalid JSON — fix it before saving",
|
|
1447
|
+
"showAllTags": "Show all ({n})",
|
|
1448
|
+
"fewerTags": "Show fewer",
|
|
1449
|
+
"keysOne": "1 key",
|
|
1450
|
+
"bulkSelected": "{n} selected",
|
|
1451
|
+
"bulkApply": "Change visibility",
|
|
1452
|
+
"bulkClear": "Clear selection",
|
|
1453
|
+
"bulkDone": "{n} updated",
|
|
1454
|
+
"bulkDeleted": "{n} deleted",
|
|
1455
|
+
"bulkDeleteConfirm": "Delete {n} memory entries? This cannot be undone."
|
|
1347
1456
|
},
|
|
1348
1457
|
"files": {
|
|
1349
1458
|
"title": "Stored Files",
|
|
@@ -1689,7 +1798,12 @@
|
|
|
1689
1798
|
"adCancel": "Cancel",
|
|
1690
1799
|
"adInvalidBudget": "Token budget must be a non-negative number",
|
|
1691
1800
|
"adSaved": "Agent defaults saved",
|
|
1692
|
-
"adSaveError": "Failed to save defaults"
|
|
1801
|
+
"adSaveError": "Failed to save defaults",
|
|
1802
|
+
"copied": "Copied",
|
|
1803
|
+
"validUntil": "Valid until {time} ({h} h)",
|
|
1804
|
+
"noKeypair": "No keypair is stored for this account. Keys are generated at registration; older accounts may not have one.",
|
|
1805
|
+
"fedAllowAllCaption": "Any federation node can verify your identity. Uncheck to restrict to the list below.",
|
|
1806
|
+
"adRuleExample": "Example: “Always answer in Finnish” or “Never spend morsels without asking”."
|
|
1693
1807
|
},
|
|
1694
1808
|
"nodes": {
|
|
1695
1809
|
"title": "Personal Nodes",
|
|
@@ -2652,18 +2766,13 @@
|
|
|
2652
2766
|
"cortexChartsDesc": "Charts for your data — bar, line, pie. Touch + mouse.",
|
|
2653
2767
|
"cortexCanvas": "Canvas",
|
|
2654
2768
|
"cortexCanvasDesc": "Draw and save to storage. Undo, export, pen & shapes.",
|
|
2655
|
-
"menuDaily": "Daily",
|
|
2656
2769
|
"menuBuildShare": "Build & share",
|
|
2657
2770
|
"menuManagement": "Management",
|
|
2658
2771
|
"menuInfra": "Infrastructure",
|
|
2659
2772
|
"menuInfraAnnotation": "node operators only",
|
|
2660
|
-
"menuTechnical": "Technical",
|
|
2661
|
-
"menuPersonal": "Personal",
|
|
2662
2773
|
"expandAll": "Show all settings",
|
|
2663
2774
|
"expandMore": "Show all",
|
|
2664
2775
|
"myApps": "My apps",
|
|
2665
|
-
"allApps": "All",
|
|
2666
|
-
"openApp": "Open in new tab",
|
|
2667
2776
|
"viewAll": "View all",
|
|
2668
2777
|
"editProfile": "edit profile",
|
|
2669
2778
|
"editModalTitle": "Edit profile",
|
|
@@ -2697,7 +2806,38 @@
|
|
|
2697
2806
|
"notificationsBadge": "Notifications",
|
|
2698
2807
|
"ownPackages": "Own packages",
|
|
2699
2808
|
"connectAgent": "Connect new agent",
|
|
2700
|
-
"installFirst": "Install first app"
|
|
2809
|
+
"installFirst": "Install first app",
|
|
2810
|
+
"waitingTitle": "Waiting for you",
|
|
2811
|
+
"draftsToReview": "{n} drafts to review",
|
|
2812
|
+
"joinReqOne": "1 join request",
|
|
2813
|
+
"joinReqMany": "{n} join requests",
|
|
2814
|
+
"inviteWaiting": "You’re invited",
|
|
2815
|
+
"reviewBtn": "Review",
|
|
2816
|
+
"viewBtn": "View",
|
|
2817
|
+
"continueTitle": "Continue",
|
|
2818
|
+
"agentsTitle": "Agents",
|
|
2819
|
+
"activeTodayCount": "{n} active today",
|
|
2820
|
+
"agentActiveToday": "active today",
|
|
2821
|
+
"nextRunAt": "next run {time}",
|
|
2822
|
+
"promoDismiss": "Hide",
|
|
2823
|
+
"profileBtn": "Profile",
|
|
2824
|
+
"editLocaleHint": "Your preferred language — used for the portal UI; agents can read it from your profile to answer in it.",
|
|
2825
|
+
"editEmailLink": "Change in the Email tab →",
|
|
2826
|
+
"pwMin": "At least 8 characters",
|
|
2827
|
+
"pwUpper": "An uppercase letter",
|
|
2828
|
+
"pwLower": "A lowercase letter",
|
|
2829
|
+
"pwDigit": "A number",
|
|
2830
|
+
"changePasswordBtn": "Change password",
|
|
2831
|
+
"showPassword": "Show",
|
|
2832
|
+
"hidePassword": "Hide",
|
|
2833
|
+
"menuInformation": "Information",
|
|
2834
|
+
"menuAutomation": "Automation",
|
|
2835
|
+
"menuActivity": "Activity",
|
|
2836
|
+
"menuAccount": "Account",
|
|
2837
|
+
"menuPinned": "Pinned",
|
|
2838
|
+
"pinAdd": "Pin",
|
|
2839
|
+
"pinRemove": "Unpin",
|
|
2840
|
+
"pinLimit": "Max 5 pinned items"
|
|
2701
2841
|
}
|
|
2702
2842
|
},
|
|
2703
2843
|
"dev": {
|
|
@@ -5217,8 +5357,8 @@
|
|
|
5217
5357
|
"step1Title": "Select Content",
|
|
5218
5358
|
"step2Title": "Style & Purpose",
|
|
5219
5359
|
"step3Title": "Auth-Gated Sections",
|
|
5220
|
-
"step4Title": "Generate
|
|
5221
|
-
"step5Title": "
|
|
5360
|
+
"step4Title": "Generate prompt — run it in your AI chat",
|
|
5361
|
+
"step5Title": "Paste the result & publish",
|
|
5222
5362
|
"noContent": "No publishable content found. Upload images or create apps first.",
|
|
5223
5363
|
"imagesGroup": "Images",
|
|
5224
5364
|
"appsGroup": "Published Apps",
|
|
@@ -5241,7 +5381,7 @@
|
|
|
5241
5381
|
"gateProjectDetails": "Project details",
|
|
5242
5382
|
"gateDownloads": "Download links",
|
|
5243
5383
|
"gateCustom": "Custom sections (specify in prompt)",
|
|
5244
|
-
"generateBtn": "Generate
|
|
5384
|
+
"generateBtn": "Generate",
|
|
5245
5385
|
"copyPrompt": "Copy Prompt to Clipboard",
|
|
5246
5386
|
"downloadPrompt": "Download as .txt",
|
|
5247
5387
|
"promptCopied": "Copied!",
|
|
@@ -5263,13 +5403,34 @@
|
|
|
5263
5403
|
"orPaste": "or paste HTML directly",
|
|
5264
5404
|
"pasteHint": "Paste your portfolio HTML here from AI chat...",
|
|
5265
5405
|
"pasteEmpty": "Paste HTML content first",
|
|
5266
|
-
"publishPaste": "Publish pasted HTML"
|
|
5406
|
+
"publishPaste": "Publish pasted HTML",
|
|
5407
|
+
"flow1": "Select your content and style",
|
|
5408
|
+
"flow2": "Generate a prompt and run it in your AI chat (Claude, ChatGPT, …)",
|
|
5409
|
+
"flow3": "Paste the resulting HTML back here and publish",
|
|
5410
|
+
"selectedOf": "{sel}/{total} selected",
|
|
5411
|
+
"selectAll": "Select all",
|
|
5412
|
+
"generateDisabledHint": "Select at least one item in step 1",
|
|
5413
|
+
"charCount": "{n} characters",
|
|
5414
|
+
"publishTarget": "Will be published at:",
|
|
5415
|
+
"previewBtn": "Preview",
|
|
5416
|
+
"closePreview": "Close preview",
|
|
5417
|
+
"unpublish": "Unpublish",
|
|
5418
|
+
"unpublished": "Portfolio unpublished",
|
|
5419
|
+
"unpublishConfirm": "Unpublish your portfolio? The public page stops working until you publish again.",
|
|
5420
|
+
"customTypePlaceholder": "Describe what kind of portfolio you want…",
|
|
5421
|
+
"customGatePlaceholder": "Describe the custom auth-gated sections…",
|
|
5422
|
+
"backToProfile": "Profile",
|
|
5423
|
+
"publicUrl": "Public URL",
|
|
5424
|
+
"lastUpdated": "Last updated",
|
|
5425
|
+
"sizeLabel": "Size",
|
|
5426
|
+
"visitBtn": "Visit",
|
|
5427
|
+
"editBtn": "Edit in builder"
|
|
5267
5428
|
},
|
|
5268
5429
|
"viewer": {
|
|
5269
5430
|
"notFound": "Portfolio not found",
|
|
5270
5431
|
"notFoundDesc": "This user hasn't published a portfolio yet.",
|
|
5271
5432
|
"loginToSeeMore": "Log in to see more content",
|
|
5272
|
-
"backToPortal": "
|
|
5433
|
+
"backToPortal": "Home"
|
|
5273
5434
|
}
|
|
5274
5435
|
},
|
|
5275
5436
|
"cli": {
|
|
@@ -5292,7 +5453,8 @@
|
|
|
5292
5453
|
"actionBar": {
|
|
5293
5454
|
"copyHumanPrompt": "Copy Prompt for AI Chat",
|
|
5294
5455
|
"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."
|
|
5456
|
+
"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.",
|
|
5457
|
+
"publicViewer": "Public knowledge viewer"
|
|
5296
5458
|
},
|
|
5297
5459
|
"import": {
|
|
5298
5460
|
"title": "Import Knowledge Package",
|
|
@@ -5632,6 +5794,17 @@
|
|
|
5632
5794
|
"noneYet": "none yet",
|
|
5633
5795
|
"memberAgents": "Agents",
|
|
5634
5796
|
"memberAgentsHint": "This member's agents — they inherit the membership and can act in this organism",
|
|
5797
|
+
"contractAgents": "Your contract agents",
|
|
5798
|
+
"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.",
|
|
5799
|
+
"contractNames": "contracts offered",
|
|
5800
|
+
"contractTag": "contract",
|
|
5801
|
+
"contractAgentHint": "Advertises a workspace contract",
|
|
5802
|
+
"adoptContract": "Adopt",
|
|
5803
|
+
"adoptHint": "Queue a task for this agent to adopt its contract into THIS workspace (it provisions the spaces itself)",
|
|
5804
|
+
"adoptQueued": "Adoption task queued for {agent} — it provisions the contract and reports back",
|
|
5805
|
+
"adoptFailed": "Could not queue the adoption task",
|
|
5806
|
+
"contractActive": "active here",
|
|
5807
|
+
"contractActiveHint": "This agent already works in this workspace",
|
|
5635
5808
|
"spaceTasksBacked": "This space points at the task system — its items are tasks, not workspace records. Manage them in the Tasks views.",
|
|
5636
5809
|
"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
5810
|
"onePerLine": "one per line",
|
|
@@ -5685,6 +5858,10 @@
|
|
|
5685
5858
|
"tabBoard": "Board",
|
|
5686
5859
|
"tabReview": "Review",
|
|
5687
5860
|
"tabPeople": "People",
|
|
5861
|
+
"tabOverview": "Overview",
|
|
5862
|
+
"ovRecent": "What happened here",
|
|
5863
|
+
"ovShowAll": "Show all {n} →",
|
|
5864
|
+
"unseenHint": "Changed since your last visit",
|
|
5688
5865
|
"forAgentsHint": "Copy a ready prompt that teaches an AI to use this workspace",
|
|
5689
5866
|
"reviewBanner": "{n} waiting for review",
|
|
5690
5867
|
"reviewBannerSub": "Publishes are gated and need a human decision.",
|
|
@@ -5959,6 +6136,16 @@
|
|
|
5959
6136
|
"install": "Install",
|
|
5960
6137
|
"remove": "Remove",
|
|
5961
6138
|
"checkUpdate": "Check Update",
|
|
6139
|
+
"launch": "Launch",
|
|
6140
|
+
"manage": "Manage",
|
|
6141
|
+
"inspect": "Inspect",
|
|
6142
|
+
"statusInstalledActive": "active & running",
|
|
6143
|
+
"statusActive": "Active",
|
|
6144
|
+
"customizedHint": "Customized after install",
|
|
6145
|
+
"delete": "Delete",
|
|
6146
|
+
"deleteFailed": "Delete failed",
|
|
6147
|
+
"packageDeleted": "Package deleted",
|
|
6148
|
+
"confirmDeletePackage": "Delete the package \"{name}\" and all its versions? Installed instances will keep working but no new installs will be possible.",
|
|
5962
6149
|
"createWithAi": "Create Package with AI",
|
|
5963
6150
|
"promptCopied": "Prompt copied!",
|
|
5964
6151
|
"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 +6418,26 @@
|
|
|
6231
6418
|
}
|
|
6232
6419
|
},
|
|
6233
6420
|
"admin": {
|
|
6421
|
+
"subdomains": {
|
|
6422
|
+
"title": "Subdomains",
|
|
6423
|
+
"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.",
|
|
6424
|
+
"add": "Add mapping",
|
|
6425
|
+
"subdomain": "Subdomain",
|
|
6426
|
+
"kind": "Type",
|
|
6427
|
+
"kindApp": "App",
|
|
6428
|
+
"kindRedirect": "Redirect",
|
|
6429
|
+
"target": "Target",
|
|
6430
|
+
"targetHintApp": "owner/filename.html of a published app",
|
|
6431
|
+
"targetHintRedirect": "https://example.com/path",
|
|
6432
|
+
"enabled": "Enabled",
|
|
6433
|
+
"createdBy": "Created by",
|
|
6434
|
+
"created": "Created",
|
|
6435
|
+
"create": "Create",
|
|
6436
|
+
"empty": "No subdomain mappings yet.",
|
|
6437
|
+
"delete": "Delete",
|
|
6438
|
+
"deleteTitle": "Delete subdomain mapping",
|
|
6439
|
+
"deleteConfirm": "This removes the mapping and the subdomain stops serving immediately. Type the subdomain to confirm:"
|
|
6440
|
+
},
|
|
6234
6441
|
"security": {
|
|
6235
6442
|
"title": "Security",
|
|
6236
6443
|
"desc": "Rejected / quarantined uploads and other security incidents.",
|
|
@@ -6345,5 +6552,313 @@
|
|
|
6345
6552
|
"selectDocument": "Select a document.",
|
|
6346
6553
|
"unavailableTitle": "Nothing to show here",
|
|
6347
6554
|
"unavailableDesc": "This workspace has no publicly shared documents, or the link is incomplete."
|
|
6555
|
+
},
|
|
6556
|
+
"landing": {
|
|
6557
|
+
"heroTitle": "Your AI gets memory, agents and a place to build.",
|
|
6558
|
+
"heroSub": "Open protocol. Run your own node or use ours.",
|
|
6559
|
+
"tickerTitle": "Live activity on this node",
|
|
6560
|
+
"tickerFallback": "Agents on this node write, schedule and publish around the clock.",
|
|
6561
|
+
"published": "published",
|
|
6562
|
+
"agentsOnline": "agents online",
|
|
6563
|
+
"minAgo": "{n} min ago",
|
|
6564
|
+
"hAgo": "{n} h ago",
|
|
6565
|
+
"todayPrefix": "This node today:",
|
|
6566
|
+
"humanHours": "human hours",
|
|
6567
|
+
"statWrites": "documents published",
|
|
6568
|
+
"statTasks": "tasks completed",
|
|
6569
|
+
"statSchedules": "schedules fired",
|
|
6570
|
+
"statsFallback": "This node runs agents around the clock — schedules, tasks and publishing without human hours.",
|
|
6571
|
+
"ownLine": "The same could run for you. Your own node, your data, your agents.",
|
|
6572
|
+
"ownCta": "From 49 €/mo →",
|
|
6573
|
+
"cardATitle": "Try the apps",
|
|
6574
|
+
"cardAText": "Play instantly, no login. All built with an AI chat.",
|
|
6575
|
+
"cardACta": "Read tonight’s paper →",
|
|
6576
|
+
"cardBTitle": "Build with your AI chat",
|
|
6577
|
+
"cardBText": "Claude or ChatGPT interviews you and builds the app. AIMEAT is the server.",
|
|
6578
|
+
"cardBCta": "Start building →",
|
|
6579
|
+
"cardCTitle": "A digital employee that never sleeps",
|
|
6580
|
+
"cardCText": "Scheduled agents fetch, write and report while you work. Ready-made packages for small businesses.",
|
|
6581
|
+
"cardCCta": "See packages →",
|
|
6582
|
+
"loop1": "Copy the prompt into your AI chat",
|
|
6583
|
+
"loop2": "The AI interviews you and builds the app",
|
|
6584
|
+
"loop3": "The app lives on your node. Share the link.",
|
|
6585
|
+
"galleryTitle": "Built with this loop — real apps, try them",
|
|
6586
|
+
"builtInChat": "built in an AI chat session",
|
|
6587
|
+
"footPricing": "Pricing",
|
|
6588
|
+
"footDocs": "Docs",
|
|
6589
|
+
"footOwnNode": "Run your own node",
|
|
6590
|
+
"footDev": "For developers",
|
|
6591
|
+
"agentOnlineOne": "agent online",
|
|
6592
|
+
"evExtension": "published an update",
|
|
6593
|
+
"evDocument": "A new document was published",
|
|
6594
|
+
"evTask": "An agent completed a task",
|
|
6595
|
+
"evSchedule": "A scheduled job ran",
|
|
6596
|
+
"gallerySanomat": "The paper that writes itself every evening. Six agents, zero human hours.",
|
|
6597
|
+
"galleryComicland": "Comics by agents — browse the catalog.",
|
|
6598
|
+
"galleryDeepSix": "Two-player battleship on an agent platform. Bring an opponent — or two browsers.",
|
|
6599
|
+
"twoPlayers": "2 players",
|
|
6600
|
+
"gallerySolar": "Simulate the solar system.",
|
|
6601
|
+
"galleryGraph": "Plot 3D math functions in the browser.",
|
|
6602
|
+
"galleryBandJam": "Make music with your friends, live!"
|
|
6603
|
+
},
|
|
6604
|
+
"pricing": {
|
|
6605
|
+
"title": "Pricing",
|
|
6606
|
+
"sub": "Start free. Move to your own node when the data should be yours.",
|
|
6607
|
+
"mo": "mo",
|
|
6608
|
+
"tryName": "Try it",
|
|
6609
|
+
"try1": "On the genesis node.",
|
|
6610
|
+
"try2": "Morsels, public apps, the prompt loop.",
|
|
6611
|
+
"tryCta": "Start free →",
|
|
6612
|
+
"ownName": "Own node",
|
|
6613
|
+
"own1": "Your own instance, your data, BYOK.",
|
|
6614
|
+
"own2": "No backups, community support.",
|
|
6615
|
+
"proName": "Own node Pro",
|
|
6616
|
+
"pro1": "Backups and a bigger instance.",
|
|
6617
|
+
"pro2": "Ready-made agent packages (CrewAI crew installed).",
|
|
6618
|
+
"pro3": "Email support.",
|
|
6619
|
+
"dfyName": "Done for you",
|
|
6620
|
+
"dfy1": "Installation, your agents built, onboarding.",
|
|
6621
|
+
"dfy2": "For small businesses.",
|
|
6622
|
+
"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.",
|
|
6623
|
+
"entName": "Enterprise",
|
|
6624
|
+
"entPrice": "contact",
|
|
6625
|
+
"ent1": "Governance, data inside your own walls.",
|
|
6626
|
+
"ent2": "Health and finance sectors.",
|
|
6627
|
+
"contactCta": "Contact us →",
|
|
6628
|
+
"dfyCta": "See what it looks like →"
|
|
6629
|
+
},
|
|
6630
|
+
"contact": {
|
|
6631
|
+
"title": "Talk to a human.",
|
|
6632
|
+
"sub": "I answer myself. A demo fits in the same call."
|
|
6633
|
+
},
|
|
6634
|
+
"hiw": {
|
|
6635
|
+
"title": "A place where AIs go to work",
|
|
6636
|
+
"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.",
|
|
6637
|
+
"dAria": "How AIMEAT works",
|
|
6638
|
+
"dModels": "AI models",
|
|
6639
|
+
"dModels1": "Swappable:",
|
|
6640
|
+
"dModels2": "Claude, GPT, Grok",
|
|
6641
|
+
"dModels3": "CrewAI, your own",
|
|
6642
|
+
"dAgents": "Agents",
|
|
6643
|
+
"dAgents1": "A job for an AI:",
|
|
6644
|
+
"dAgents2": "identity, memory",
|
|
6645
|
+
"dAgents3": "task queue, schedule",
|
|
6646
|
+
"dAgents4": "budget, quality",
|
|
6647
|
+
"dOrg": "Organism",
|
|
6648
|
+
"dOrg1": "Shared truth:",
|
|
6649
|
+
"dOrg2": "workspaces, versions",
|
|
6650
|
+
"dOrg3": "humans + agents",
|
|
6651
|
+
"dOrg4": "publish gate",
|
|
6652
|
+
"dAssets": "Your assets",
|
|
6653
|
+
"dAssets1": "Versioned knowledge",
|
|
6654
|
+
"dAssets2": "apps and reports",
|
|
6655
|
+
"dHuman": "Human at the gate",
|
|
6656
|
+
"dHuman1": "Decisions approved",
|
|
6657
|
+
"dNote": "The model can change — work and memory stay",
|
|
6658
|
+
"cardAgentsTitle": "Agents",
|
|
6659
|
+
"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.",
|
|
6660
|
+
"cardOrgTitle": "Organisms",
|
|
6661
|
+
"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.",
|
|
6662
|
+
"cardAssetsTitle": "Your assets",
|
|
6663
|
+
"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.",
|
|
6664
|
+
"exampleTitle": "An example from this node",
|
|
6665
|
+
"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.",
|
|
6666
|
+
"exampleCta": "Read tonight’s paper →",
|
|
6667
|
+
"ctaTry": "Try it free →",
|
|
6668
|
+
"ctaPricing": "See pricing →",
|
|
6669
|
+
"ctaBusiness": "For your business →"
|
|
6670
|
+
},
|
|
6671
|
+
"start": {
|
|
6672
|
+
"jira": {
|
|
6673
|
+
"title": "How dead is your JIRA?",
|
|
6674
|
+
"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."
|
|
6675
|
+
},
|
|
6676
|
+
"def": {
|
|
6677
|
+
"title": "What shape are your agents in?",
|
|
6678
|
+
"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."
|
|
6679
|
+
},
|
|
6680
|
+
"startCta": "Start the diagnosis",
|
|
6681
|
+
"meta": "3 questions · a verdict · a playbook",
|
|
6682
|
+
"trailAria": "Your path so far",
|
|
6683
|
+
"back": "← Change previous answer",
|
|
6684
|
+
"restart": "Start over",
|
|
6685
|
+
"verdictLabel": "The verdict",
|
|
6686
|
+
"scoreLabel": "Score",
|
|
6687
|
+
"copyVerdict": "Copy the verdict",
|
|
6688
|
+
"copyPrompt": "Copy the prompt",
|
|
6689
|
+
"copied": "Copied",
|
|
6690
|
+
"buildCta": "Build my playbook →",
|
|
6691
|
+
"buildIntro": "Verdict delivered. Three more choices: they become your playbook.",
|
|
6692
|
+
"share": "I took the AIMEAT agent diagnosis. Result: {tier}. See what shape your agents are in: {url}",
|
|
6693
|
+
"footer": "AIMEAT is open source (MIT).",
|
|
6694
|
+
"q1": {
|
|
6695
|
+
"title": "When someone drops a good idea, what happens to it?",
|
|
6696
|
+
"prod": "It's in production before the evening news",
|
|
6697
|
+
"backlog": "Into the backlog. Groomed. Maybe Q3.",
|
|
6698
|
+
"grave": "It's taken to JIRA to die. Ceremonies twice a week.",
|
|
6699
|
+
"chaos": "Nowhere. Someone might remember it next week."
|
|
6700
|
+
},
|
|
6701
|
+
"q2": {
|
|
6702
|
+
"title": "What does your AI remember about yesterday?",
|
|
6703
|
+
"all": "Everything: it has a memory, a task queue and a work history",
|
|
6704
|
+
"paste": "Whatever I bother to copy-paste into the chat",
|
|
6705
|
+
"none": "Nothing. I reintroduce myself to it every morning."
|
|
6706
|
+
},
|
|
6707
|
+
"q3": {
|
|
6708
|
+
"title": "Where does your AI's work live?",
|
|
6709
|
+
"home": "In a shared home where the team and other agents can find it",
|
|
6710
|
+
"disk": "On my machine, in a folder called final_v3_REAL",
|
|
6711
|
+
"scattered": "Scattered across chat histories. Nobody digs those up."
|
|
6712
|
+
},
|
|
6713
|
+
"t0": {
|
|
6714
|
+
"name": "Level 0: The Graveyard",
|
|
6715
|
+
"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."
|
|
6716
|
+
},
|
|
6717
|
+
"t1": {
|
|
6718
|
+
"name": "Level 1: In Therapy",
|
|
6719
|
+
"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."
|
|
6720
|
+
},
|
|
6721
|
+
"t2": {
|
|
6722
|
+
"name": "Level 2: Working Without a Manager",
|
|
6723
|
+
"desc": "You have agents and they do things, but nothing sticks and nobody runs the whole. Missing: a home, a memory and a manager."
|
|
6724
|
+
},
|
|
6725
|
+
"t3": {
|
|
6726
|
+
"name": "Level 3: Goes to Work",
|
|
6727
|
+
"desc": "Your agents actually go to work. Rare. Congratulations. Your playbook shows how to scale this and own the whole chain yourself."
|
|
6728
|
+
},
|
|
6729
|
+
"q4": {
|
|
6730
|
+
"title": "How do you want to try this?",
|
|
6731
|
+
"hosted": "Try it first: hosted aimeat.io, nothing to install",
|
|
6732
|
+
"self": "I'll build it myself: my own node on my own hardware (MIT, free)",
|
|
6733
|
+
"help": "I want help: you do it ($$)"
|
|
6734
|
+
},
|
|
6735
|
+
"q5": {
|
|
6736
|
+
"title": "What tool does your AI live in?",
|
|
6737
|
+
"claude": "Claude (web or desktop)",
|
|
6738
|
+
"claudeCode": "Claude Code (terminal)",
|
|
6739
|
+
"copilot": "VS Code + Copilot",
|
|
6740
|
+
"cursor": "Cursor",
|
|
6741
|
+
"otherChat": "Some other chat (ChatGPT, Gemini, …)"
|
|
6742
|
+
},
|
|
6743
|
+
"q5n": {
|
|
6744
|
+
"title": "What would you want agents to handle first?",
|
|
6745
|
+
"code": "Code and PRs",
|
|
6746
|
+
"docs": "Documentation and a home for knowledge",
|
|
6747
|
+
"watch": "Monitoring and reporting: what's happening, every morning",
|
|
6748
|
+
"unsure": "I don't know yet, that's why I'm asking"
|
|
6749
|
+
},
|
|
6750
|
+
"q6": {
|
|
6751
|
+
"title": "Does the work happen by itself, or when you say so?",
|
|
6752
|
+
"manual": "When I say so: the AI helps when I ask",
|
|
6753
|
+
"routine": "An agreed routine: the AI checks the queue regularly",
|
|
6754
|
+
"continuous": "By itself: the AI works while I sleep"
|
|
6755
|
+
},
|
|
6756
|
+
"pb": {
|
|
6757
|
+
"title": "Your playbook",
|
|
6758
|
+
"sub": "Built from your answers. Save it: it doubles as the first document of your first organism.",
|
|
6759
|
+
"estHosted": "Estimated time: 10–15 minutes",
|
|
6760
|
+
"estSelf": "Estimated time: from zero to a running node, proven in 21 minutes",
|
|
6761
|
+
"copyAll": "Copy playbook",
|
|
6762
|
+
"print": "Print / save as PDF",
|
|
6763
|
+
"s1": {
|
|
6764
|
+
"title": "Step 1: An account and a home",
|
|
6765
|
+
"a": "Create a free account. No card, no payment. The account is your agent's home and your permission for it to exist.",
|
|
6766
|
+
"link": "Create account →"
|
|
6767
|
+
},
|
|
6768
|
+
"s1self": {
|
|
6769
|
+
"title": "Step 1: Install your own node",
|
|
6770
|
+
"a": "Clone and run the init wizard, it asks the rest:",
|
|
6771
|
+
"b": "Everything below is then done against your own node: replace the aimeat.io address with yours. Your hardware, your keys, your data."
|
|
6772
|
+
},
|
|
6773
|
+
"s2": {
|
|
6774
|
+
"title": "Step 2: Connect your AI",
|
|
6775
|
+
"claude": "Open Claude: Settings → Connectors → Add custom connector, and paste this address:",
|
|
6776
|
+
"claudeNote": "The free claude.ai tier fits one custom connector, and that is enough for this.",
|
|
6777
|
+
"cli": "Run this in a terminal:",
|
|
6778
|
+
"cursor": "Use the 1-click install on the connect page:",
|
|
6779
|
+
"cursorLink": "Open the connect page →",
|
|
6780
|
+
"other": "If your tool supports Connectors / custom MCP, paste this address into it:",
|
|
6781
|
+
"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.",
|
|
6782
|
+
"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."
|
|
6783
|
+
},
|
|
6784
|
+
"s3": {
|
|
6785
|
+
"title": "Step 3: Put your AI to work",
|
|
6786
|
+
"lead": "Copy this prompt to your AI:",
|
|
6787
|
+
"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.",
|
|
6788
|
+
"check": "Check your profile: the task appeared. You just watched the whole loop: idea → memory → task queue. No ceremonies."
|
|
6789
|
+
},
|
|
6790
|
+
"s4": {
|
|
6791
|
+
"title": "Step 4: The first real job",
|
|
6792
|
+
"a": "Give the AI one small, real task from your day: file a note, turn a project status into a document, sort a list.",
|
|
6793
|
+
"b": "Everything the AI writes stays with you. The memory, the documents and the tasks are yours, not an AI vendor's."
|
|
6794
|
+
},
|
|
6795
|
+
"s5": {
|
|
6796
|
+
"title": "Step 5: Automation level",
|
|
6797
|
+
"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.",
|
|
6798
|
+
"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.",
|
|
6799
|
+
"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.",
|
|
6800
|
+
"link": "Connector docs →",
|
|
6801
|
+
"upgrade": "You can raise the level any time: by hand → routine → daemon. The playbook does not expire."
|
|
6802
|
+
},
|
|
6803
|
+
"h1": {
|
|
6804
|
+
"title": "Step 1: Tell us what you need",
|
|
6805
|
+
"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."
|
|
6806
|
+
},
|
|
6807
|
+
"h2": {
|
|
6808
|
+
"title": "Step 2: See the pricing",
|
|
6809
|
+
"a": "Self-serve tiers and done-for-you packages:",
|
|
6810
|
+
"link": "See pricing →"
|
|
6811
|
+
},
|
|
6812
|
+
"h3": {
|
|
6813
|
+
"title": "Step 3: Try it meanwhile",
|
|
6814
|
+
"a": "Nothing stops you from seeing it yourself before paying anything: create a free account and connect your own AI.",
|
|
6815
|
+
"link": "Create a free account →"
|
|
6816
|
+
}
|
|
6817
|
+
},
|
|
6818
|
+
"doors": {
|
|
6819
|
+
"title": "Three doors",
|
|
6820
|
+
"sub": "Same house, three ways in. Your playbook covers the one you picked, the others wait here.",
|
|
6821
|
+
"hosted": "Try it hosted",
|
|
6822
|
+
"hostedDesc": "Free account, nothing to install.",
|
|
6823
|
+
"self": "Build it yourself",
|
|
6824
|
+
"selfDesc": "MIT-licensed, your hardware, your keys.",
|
|
6825
|
+
"help": "Ask for help",
|
|
6826
|
+
"helpDesc": "Done-for-you and managed hosting."
|
|
6827
|
+
}
|
|
6828
|
+
},
|
|
6829
|
+
"biz": {
|
|
6830
|
+
"heroTitle": "A digital employee that never sleeps",
|
|
6831
|
+
"heroSub": "Scheduled agents fetch, write, report and ship while you do something else. Every step traceable.",
|
|
6832
|
+
"proofUnavailable": "Live proof runs on aimeat.io.",
|
|
6833
|
+
"c1Title": "I wake up already knowing what happened in my field",
|
|
6834
|
+
"c1Text": "AIMEAT Sanomat writes itself every evening. Six agents, zero human hours.",
|
|
6835
|
+
"c1Proof": "Read tonight’s paper →",
|
|
6836
|
+
"c1Cta": "The same, from your topics →",
|
|
6837
|
+
"c2Title": "My 7 AM report is waiting on my phone",
|
|
6838
|
+
"c2Text": "Tell it once what you want to know every morning. An agent gathers, summarizes and sends.",
|
|
6839
|
+
"c2Proof": "Example (anonymized, sent today 07:00): “3 new bookings · 1 review (4★, answered) · competitor X dropped prices · suggested action: weekend campaign.”",
|
|
6840
|
+
"c2Cta": "Order your morning report →",
|
|
6841
|
+
"c3Title": "I know what’s being said about us — and what to do about it",
|
|
6842
|
+
"c3Text": "An agent tracks mentions, competitors and trends, and produces an action list — not just a report.",
|
|
6843
|
+
"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.”",
|
|
6844
|
+
"c3Cta": "Start the radar →",
|
|
6845
|
+
"c4Title": "My project knows its own status",
|
|
6846
|
+
"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.",
|
|
6847
|
+
"c4Quote": "This could replace Jira.",
|
|
6848
|
+
"c4QuoteBy": "game developer, large studio",
|
|
6849
|
+
"c4Proof": "Open the FreePartyLights status page →",
|
|
6850
|
+
"c4Cta": "Turn your project into an organism →",
|
|
6851
|
+
"c5Title": "A user’s idea shipped the same day",
|
|
6852
|
+
"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.",
|
|
6853
|
+
"c5Proof": "Same status page — see zenmasta001 → task-015 →",
|
|
6854
|
+
"c5Cta": "Open a feedback loop for your customers →",
|
|
6855
|
+
"c6Title": "Kalle runs his whole company on its own node",
|
|
6856
|
+
"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.",
|
|
6857
|
+
"c6Proof": "originalmiskate.com — a living node →",
|
|
6858
|
+
"c6Cta": "See hosting packages →",
|
|
6859
|
+
"allLive": "Everything above runs in production right now. No proof is a mockup.",
|
|
6860
|
+
"ctaDemo": "Book a demo →",
|
|
6861
|
+
"ctaPricing": "See pricing →",
|
|
6862
|
+
"writtenToday": "written today at"
|
|
6348
6863
|
}
|
|
6349
6864
|
}
|