@elizaos/agent 2.0.0-alpha.169 → 2.0.0-alpha.171
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/apps/app-lifeops/src/lifeops/app-state.d.ts.map +1 -1
- package/apps/app-lifeops/src/lifeops/app-state.js +5 -2
- package/apps/app-lifeops/src/selfcontrol/roles.d.ts +15 -9
- package/apps/app-lifeops/src/selfcontrol/roles.d.ts.map +1 -1
- package/apps/app-lifeops/src/selfcontrol/roles.js +33 -220
- package/package.json +4 -4
- package/packages/agent/src/runtime/core-plugins.d.ts.map +1 -1
- package/packages/agent/src/runtime/core-plugins.js +2 -1
- package/packages/typescript/src/generated/action-docs.d.ts +0 -15
- package/packages/typescript/src/generated/action-docs.d.ts.map +1 -1
- package/packages/typescript/src/generated/action-docs.js +0 -42
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"app-state.d.ts","sourceRoot":"","sources":["../../../../../../../apps/app-lifeops/src/lifeops/app-state.ts"],"names":[],"mappings":"AAIA,MAAM,WAAW,eAAe;IAC9B,OAAO,EAAE,OAAO,CAAC;CAClB;AAED,KAAK,gBAAgB,GAAG;IACtB,QAAQ,CAAC,CAAC,EAAE,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,CAAC,GAAG,IAAI,GAAG,SAAS,CAAC,CAAC;IACxD,QAAQ,CAAC,CAAC,EAAE,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE,CAAC,GAAG,OAAO,CAAC,OAAO,GAAG,IAAI,CAAC,CAAC;CAC7D,CAAC;AAMF,wBAAsB,mBAAmB,CACvC,OAAO,EAAE,gBAAgB,GAAG,IAAI,GAC/B,OAAO,CAAC,eAAe,CAAC,
|
|
1
|
+
{"version":3,"file":"app-state.d.ts","sourceRoot":"","sources":["../../../../../../../apps/app-lifeops/src/lifeops/app-state.ts"],"names":[],"mappings":"AAIA,MAAM,WAAW,eAAe;IAC9B,OAAO,EAAE,OAAO,CAAC;CAClB;AAED,KAAK,gBAAgB,GAAG;IACtB,QAAQ,CAAC,CAAC,EAAE,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,CAAC,GAAG,IAAI,GAAG,SAAS,CAAC,CAAC;IACxD,QAAQ,CAAC,CAAC,EAAE,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE,CAAC,GAAG,OAAO,CAAC,OAAO,GAAG,IAAI,CAAC,CAAC;CAC7D,CAAC;AAMF,wBAAsB,mBAAmB,CACvC,OAAO,EAAE,gBAAgB,GAAG,IAAI,GAC/B,OAAO,CAAC,eAAe,CAAC,CAqB1B;AAED,wBAAsB,mBAAmB,CACvC,OAAO,EAAE,gBAAgB,EACzB,KAAK,EAAE,eAAe,GACrB,OAAO,CAAC,eAAe,CAAC,CAc1B"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { logger } from "@elizaos/core";
|
|
2
2
|
const LIFEOPS_APP_STATE_CACHE_KEY = "eliza:lifeops-app-state";
|
|
3
3
|
const DEFAULT_LIFEOPS_APP_STATE = {
|
|
4
|
-
enabled:
|
|
4
|
+
enabled: true,
|
|
5
5
|
};
|
|
6
6
|
export async function loadLifeOpsAppState(runtime) {
|
|
7
7
|
if (!runtime) {
|
|
@@ -9,8 +9,11 @@ export async function loadLifeOpsAppState(runtime) {
|
|
|
9
9
|
}
|
|
10
10
|
try {
|
|
11
11
|
const cached = await runtime.getCache(LIFEOPS_APP_STATE_CACHE_KEY);
|
|
12
|
+
if (cached == null) {
|
|
13
|
+
return DEFAULT_LIFEOPS_APP_STATE;
|
|
14
|
+
}
|
|
12
15
|
return {
|
|
13
|
-
enabled: cached
|
|
16
|
+
enabled: cached.enabled !== false,
|
|
14
17
|
};
|
|
15
18
|
}
|
|
16
19
|
catch (error) {
|
|
@@ -1,13 +1,19 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
1
|
+
/**
|
|
2
|
+
* Selfcontrol role checking — delegates to the core @elizaos/core roles module.
|
|
3
|
+
*
|
|
4
|
+
* Previously this was a full reimplementation that diverged from core,
|
|
5
|
+
* missing world-resolution fallbacks and silently swallowing errors.
|
|
6
|
+
* Now it's a thin adapter that re-exports the core checkSenderRole
|
|
7
|
+
* with the extra `hasPrivateAccess` field for backward compatibility.
|
|
8
|
+
*
|
|
9
|
+
* When the core module returns null (no world found for the message),
|
|
10
|
+
* we fall back to checking whether the sender matches the configured
|
|
11
|
+
* admin entity ID. This covers dashboard/terminal sessions where the
|
|
12
|
+
* world may not exist yet or the room has no worldId.
|
|
13
|
+
*/
|
|
14
|
+
import { type IAgentRuntime, type Memory, type RoleCheckResult as CoreRoleCheckResult } from "@elizaos/core";
|
|
15
|
+
export type RoleCheckResult = CoreRoleCheckResult & {
|
|
9
16
|
hasPrivateAccess: boolean;
|
|
10
17
|
};
|
|
11
18
|
export declare function checkSenderRole(runtime: IAgentRuntime, message: Memory): Promise<RoleCheckResult | null>;
|
|
12
|
-
export {};
|
|
13
19
|
//# sourceMappingURL=roles.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"roles.d.ts","sourceRoot":"","sources":["../../../../../../../apps/app-lifeops/src/selfcontrol/roles.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"roles.d.ts","sourceRoot":"","sources":["../../../../../../../apps/app-lifeops/src/selfcontrol/roles.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;GAYG;AAEH,OAAO,EAIL,KAAK,aAAa,EAClB,KAAK,MAAM,EACX,KAAK,eAAe,IAAI,mBAAmB,EAE5C,MAAM,eAAe,CAAC;AAEvB,MAAM,MAAM,eAAe,GAAG,mBAAmB,GAAG;IAClD,gBAAgB,EAAE,OAAO,CAAC;CAC3B,CAAC;AAEF,wBAAsB,eAAe,CACnC,OAAO,EAAE,aAAa,EACtB,OAAO,EAAE,MAAM,GACd,OAAO,CAAC,eAAe,GAAG,IAAI,CAAC,CAiCjC"}
|
|
@@ -1,228 +1,41 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
if (typeof configured === "string" && configured.trim().length > 0) {
|
|
22
|
-
return configured.trim();
|
|
23
|
-
}
|
|
24
|
-
}
|
|
25
|
-
return metadata?.ownership?.ownerId ?? null;
|
|
26
|
-
}
|
|
27
|
-
async function resolveWorldForMessage(runtime, message) {
|
|
28
|
-
const room = await runtime.getRoom(message.roomId);
|
|
29
|
-
if (!room?.worldId) {
|
|
30
|
-
return null;
|
|
31
|
-
}
|
|
32
|
-
const world = await runtime.getWorld(room.worldId);
|
|
33
|
-
if (!world) {
|
|
34
|
-
return null;
|
|
35
|
-
}
|
|
36
|
-
return (world.metadata ?? {});
|
|
37
|
-
}
|
|
38
|
-
function normalizeIdentityValue(value) {
|
|
39
|
-
if (typeof value === "number" || typeof value === "bigint") {
|
|
40
|
-
return String(value);
|
|
41
|
-
}
|
|
42
|
-
if (typeof value !== "string") {
|
|
43
|
-
return null;
|
|
44
|
-
}
|
|
45
|
-
const normalized = value.trim();
|
|
46
|
-
if (normalized.length === 0) {
|
|
47
|
-
return null;
|
|
48
|
-
}
|
|
49
|
-
return normalized.toLowerCase();
|
|
50
|
-
}
|
|
51
|
-
function collectConnectorIdentities(metadata) {
|
|
52
|
-
if (!metadata) {
|
|
53
|
-
return [];
|
|
54
|
-
}
|
|
55
|
-
const identities = [];
|
|
56
|
-
for (const [connector, rawConnectorData] of Object.entries(metadata)) {
|
|
57
|
-
if (!rawConnectorData || typeof rawConnectorData !== "object") {
|
|
58
|
-
continue;
|
|
59
|
-
}
|
|
60
|
-
const connectorData = rawConnectorData;
|
|
61
|
-
const values = new Set();
|
|
62
|
-
for (const field of ["id", "userId", "user_id", "fromId", "username"]) {
|
|
63
|
-
const normalized = normalizeIdentityValue(connectorData[field]);
|
|
64
|
-
if (normalized) {
|
|
65
|
-
values.add(normalized);
|
|
66
|
-
}
|
|
67
|
-
}
|
|
68
|
-
if (values.size > 0) {
|
|
69
|
-
identities.push({ connector, values });
|
|
70
|
-
}
|
|
71
|
-
}
|
|
72
|
-
return identities;
|
|
73
|
-
}
|
|
74
|
-
function extractLiveMessageMetadata(message) {
|
|
75
|
-
const metadata = message.content?.metadata;
|
|
76
|
-
if (metadata && typeof metadata === "object" && !Array.isArray(metadata)) {
|
|
77
|
-
return metadata;
|
|
78
|
-
}
|
|
79
|
-
return undefined;
|
|
80
|
-
}
|
|
81
|
-
function extractMessageConnectorMetadata(message) {
|
|
82
|
-
const metadata = message
|
|
83
|
-
.metadata;
|
|
84
|
-
if (!metadata || typeof metadata !== "object" || Array.isArray(metadata)) {
|
|
85
|
-
return undefined;
|
|
86
|
-
}
|
|
87
|
-
const source = typeof message.content?.source === "string"
|
|
88
|
-
? message.content.source
|
|
89
|
-
: undefined;
|
|
90
|
-
const result = {};
|
|
91
|
-
const fromId = metadata.fromId ??
|
|
92
|
-
metadata.discordUserId ??
|
|
93
|
-
metadata.telegramUserId ??
|
|
94
|
-
metadata.userId ??
|
|
95
|
-
metadata.id;
|
|
96
|
-
const username = metadata.username ?? metadata.telegramUsername;
|
|
97
|
-
if (source === "discord" ||
|
|
98
|
-
typeof metadata.discordServerId === "string" ||
|
|
99
|
-
typeof metadata.discordChannelId === "string") {
|
|
100
|
-
result.discord = {
|
|
101
|
-
userId: fromId,
|
|
102
|
-
username,
|
|
103
|
-
};
|
|
104
|
-
}
|
|
105
|
-
if (source === "telegram" ||
|
|
106
|
-
typeof metadata.telegramChatId === "string" ||
|
|
107
|
-
typeof metadata.telegramUserId === "string") {
|
|
108
|
-
result.telegram = {
|
|
109
|
-
id: fromId,
|
|
110
|
-
username,
|
|
1
|
+
/**
|
|
2
|
+
* Selfcontrol role checking — delegates to the core @elizaos/core roles module.
|
|
3
|
+
*
|
|
4
|
+
* Previously this was a full reimplementation that diverged from core,
|
|
5
|
+
* missing world-resolution fallbacks and silently swallowing errors.
|
|
6
|
+
* Now it's a thin adapter that re-exports the core checkSenderRole
|
|
7
|
+
* with the extra `hasPrivateAccess` field for backward compatibility.
|
|
8
|
+
*
|
|
9
|
+
* When the core module returns null (no world found for the message),
|
|
10
|
+
* we fall back to checking whether the sender matches the configured
|
|
11
|
+
* admin entity ID. This covers dashboard/terminal sessions where the
|
|
12
|
+
* world may not exist yet or the room has no worldId.
|
|
13
|
+
*/
|
|
14
|
+
import { checkSenderRole as coreCheckSenderRole, logger, resolveCanonicalOwnerId, } from "@elizaos/core";
|
|
15
|
+
export async function checkSenderRole(runtime, message) {
|
|
16
|
+
const result = await coreCheckSenderRole(runtime, message);
|
|
17
|
+
if (result) {
|
|
18
|
+
return {
|
|
19
|
+
...result,
|
|
20
|
+
hasPrivateAccess: result.isAdmin,
|
|
111
21
|
};
|
|
112
22
|
}
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
return false;
|
|
118
|
-
}
|
|
119
|
-
const leftIdentities = collectConnectorIdentities(left);
|
|
120
|
-
const rightByConnector = new Map(collectConnectorIdentities(right).map((identity) => [
|
|
121
|
-
identity.connector,
|
|
122
|
-
identity.values,
|
|
123
|
-
]));
|
|
124
|
-
for (const identity of leftIdentities) {
|
|
125
|
-
const otherValues = rightByConnector.get(identity.connector);
|
|
126
|
-
if (!otherValues) {
|
|
127
|
-
continue;
|
|
128
|
-
}
|
|
129
|
-
for (const value of identity.values) {
|
|
130
|
-
if (otherValues.has(value)) {
|
|
131
|
-
return true;
|
|
132
|
-
}
|
|
133
|
-
}
|
|
134
|
-
}
|
|
135
|
-
return false;
|
|
136
|
-
}
|
|
137
|
-
async function getEntity(runtime, entityId) {
|
|
138
|
-
if (typeof runtime.getEntityById !== "function") {
|
|
139
|
-
return null;
|
|
140
|
-
}
|
|
141
|
-
const entity = await runtime.getEntityById(entityId);
|
|
142
|
-
return entity ? entity : null;
|
|
143
|
-
}
|
|
144
|
-
function isConfirmedIdentityLink(relationship, senderEntityId, canonicalOwnerId) {
|
|
145
|
-
if (!Array.isArray(relationship.tags)) {
|
|
146
|
-
return false;
|
|
147
|
-
}
|
|
148
|
-
if (!relationship.tags.includes(IDENTITY_LINK_TAG)) {
|
|
149
|
-
return false;
|
|
150
|
-
}
|
|
151
|
-
const status = normalizeIdentityValue(relationship.metadata?.status);
|
|
152
|
-
if (status !== "confirmed") {
|
|
153
|
-
return false;
|
|
154
|
-
}
|
|
155
|
-
return ((relationship.sourceEntityId === senderEntityId &&
|
|
156
|
-
relationship.targetEntityId === canonicalOwnerId) ||
|
|
157
|
-
(relationship.sourceEntityId === canonicalOwnerId &&
|
|
158
|
-
relationship.targetEntityId === senderEntityId));
|
|
159
|
-
}
|
|
160
|
-
async function senderMatchesCanonicalOwner(runtime, message, canonicalOwnerId) {
|
|
23
|
+
// Fallback: no world found for this message's room. This happens for
|
|
24
|
+
// dashboard/terminal sessions where the world may not be set up yet.
|
|
25
|
+
// If the sender matches the configured canonical owner, grant OWNER.
|
|
26
|
+
const canonicalOwnerId = resolveCanonicalOwnerId(runtime);
|
|
161
27
|
const senderEntityId = String(message.entityId);
|
|
162
|
-
if (senderEntityId === canonicalOwnerId) {
|
|
163
|
-
|
|
164
|
-
}
|
|
165
|
-
const ownerEntity = await getEntity(runtime, canonicalOwnerId);
|
|
166
|
-
const ownerMetadata = ownerEntity?.metadata && typeof ownerEntity.metadata === "object"
|
|
167
|
-
? ownerEntity.metadata
|
|
168
|
-
: undefined;
|
|
169
|
-
if (ownerMetadata) {
|
|
170
|
-
const senderEntity = await getEntity(runtime, senderEntityId);
|
|
171
|
-
const senderMetadataCandidates = [
|
|
172
|
-
extractMessageConnectorMetadata(message),
|
|
173
|
-
extractLiveMessageMetadata(message),
|
|
174
|
-
senderEntity?.metadata && typeof senderEntity.metadata === "object"
|
|
175
|
-
? senderEntity.metadata
|
|
176
|
-
: undefined,
|
|
177
|
-
];
|
|
178
|
-
for (const senderMetadata of senderMetadataCandidates) {
|
|
179
|
-
if (sharesConnectorIdentity(senderMetadata, ownerMetadata)) {
|
|
180
|
-
return true;
|
|
181
|
-
}
|
|
182
|
-
}
|
|
183
|
-
}
|
|
184
|
-
if (typeof runtime.getRelationships !== "function") {
|
|
185
|
-
return false;
|
|
186
|
-
}
|
|
187
|
-
const relationships = (await runtime.getRelationships({
|
|
188
|
-
entityIds: [senderEntityId],
|
|
189
|
-
tags: [IDENTITY_LINK_TAG],
|
|
190
|
-
}));
|
|
191
|
-
return relationships.some((relationship) => isConfirmedIdentityLink(relationship, senderEntityId, canonicalOwnerId));
|
|
192
|
-
}
|
|
193
|
-
export async function checkSenderRole(runtime, message) {
|
|
194
|
-
try {
|
|
195
|
-
const metadata = await resolveWorldForMessage(runtime, message);
|
|
196
|
-
if (!metadata) {
|
|
197
|
-
return null;
|
|
198
|
-
}
|
|
199
|
-
const senderEntityId = String(message.entityId);
|
|
200
|
-
const canonicalOwnerId = resolveCanonicalOwnerId(runtime, metadata);
|
|
201
|
-
let role;
|
|
202
|
-
if (canonicalOwnerId &&
|
|
203
|
-
(await senderMatchesCanonicalOwner(runtime, message, canonicalOwnerId))) {
|
|
204
|
-
role = "OWNER";
|
|
205
|
-
}
|
|
206
|
-
else {
|
|
207
|
-
const storedRole = normalizeRole(metadata.roles?.[senderEntityId]);
|
|
208
|
-
role =
|
|
209
|
-
canonicalOwnerId &&
|
|
210
|
-
storedRole === "OWNER" &&
|
|
211
|
-
senderEntityId !== canonicalOwnerId
|
|
212
|
-
? "GUEST"
|
|
213
|
-
: storedRole;
|
|
214
|
-
}
|
|
215
|
-
const isAdmin = role === "OWNER" || role === "ADMIN";
|
|
28
|
+
if (canonicalOwnerId && senderEntityId === canonicalOwnerId) {
|
|
29
|
+
logger.debug("[selfcontrol] No world for message room, but sender matches configured admin entity — granting OWNER");
|
|
216
30
|
return {
|
|
217
31
|
entityId: senderEntityId,
|
|
218
|
-
role,
|
|
219
|
-
isOwner:
|
|
220
|
-
isAdmin,
|
|
221
|
-
canManageRoles:
|
|
222
|
-
hasPrivateAccess:
|
|
32
|
+
role: "OWNER",
|
|
33
|
+
isOwner: true,
|
|
34
|
+
isAdmin: true,
|
|
35
|
+
canManageRoles: true,
|
|
36
|
+
hasPrivateAccess: true,
|
|
223
37
|
};
|
|
224
38
|
}
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
}
|
|
39
|
+
logger.debug("[selfcontrol] checkSenderRole returned null — no world found and sender does not match configured admin entity");
|
|
40
|
+
return null;
|
|
228
41
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elizaos/agent",
|
|
3
|
-
"version": "2.0.0-alpha.
|
|
3
|
+
"version": "2.0.0-alpha.171",
|
|
4
4
|
"description": "Standalone elizaOS-based agent and backend server package.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -451,15 +451,15 @@
|
|
|
451
451
|
"@elizaos/app-steward": "^0.0.0",
|
|
452
452
|
"@elizaos/app-task-coordinator": "^0.0.0",
|
|
453
453
|
"@elizaos/app-training": "^0.0.1",
|
|
454
|
-
"@elizaos/core": "^2.0.0-alpha.
|
|
454
|
+
"@elizaos/core": "^2.0.0-alpha.171",
|
|
455
455
|
"@elizaos/plugin-agent-orchestrator": "^0.6.2-alpha.0",
|
|
456
456
|
"@elizaos/plugin-ollama": "^2.0.0-alpha.14",
|
|
457
457
|
"@elizaos/plugin-pdf": "^2.0.0-alpha.18",
|
|
458
458
|
"@elizaos/plugin-solana": "1.2.6",
|
|
459
459
|
"@elizaos/plugin-sql": "^2.0.0-alpha.19",
|
|
460
460
|
"@elizaos/plugin-wechat": "^0.1.0",
|
|
461
|
-
"@elizaos/shared": "^2.0.0-alpha.
|
|
462
|
-
"@elizaos/skills": "^2.0.0-alpha.
|
|
461
|
+
"@elizaos/shared": "^2.0.0-alpha.171",
|
|
462
|
+
"@elizaos/skills": "^2.0.0-alpha.171",
|
|
463
463
|
"@hapi/boom": "^10.0.1",
|
|
464
464
|
"@noble/curves": "^2.0.1",
|
|
465
465
|
"@whiskeysockets/baileys": "7.0.0-rc.9",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"core-plugins.d.ts","sourceRoot":"","sources":["../../../../../src/runtime/core-plugins.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH;;;GAGG;AACH,eAAO,MAAM,oBAAoB,EAAE,SAAS,MAAM,EAA2B,CAAC;AAE9E,iGAAiG;AACjG,eAAO,MAAM,YAAY,EAAE,SAAS,MAAM,
|
|
1
|
+
{"version":3,"file":"core-plugins.d.ts","sourceRoot":"","sources":["../../../../../src/runtime/core-plugins.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH;;;GAGG;AACH,eAAO,MAAM,oBAAoB,EAAE,SAAS,MAAM,EAA2B,CAAC;AAE9E,iGAAiG;AACjG,eAAO,MAAM,YAAY,EAAE,SAAS,MAAM,EAiBzC,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,qBAAqB,EAAE,SAAS,MAAM,EA4BlD,CAAC"}
|
|
@@ -20,6 +20,7 @@ export const CORE_PLUGINS = [
|
|
|
20
20
|
"@elizaos/plugin-shell", // shell command execution
|
|
21
21
|
"@elizaos/plugin-agent-skills", // skill execution and marketplace runtime
|
|
22
22
|
"@elizaos/plugin-commands", // slash command handling (skills auto-register as /commands)
|
|
23
|
+
"@elizaos/app-lifeops", // LifeOps: personal ops — tasks, goals, calendar, inbox, browser companions, website blocking
|
|
23
24
|
// Built-in runtime capabilities (no longer external plugins):
|
|
24
25
|
// - experience, form, clipboard, personality: advanced capabilities (advancedCapabilities: true)
|
|
25
26
|
// - trust: core capability (enableTrust: true)
|
|
@@ -34,7 +35,7 @@ export const CORE_PLUGINS = [
|
|
|
34
35
|
export const OPTIONAL_CORE_PLUGINS = [
|
|
35
36
|
// plugin-manager, secrets-manager, trust: now built-in core capabilities
|
|
36
37
|
// Enable via character settings: ENABLE_PLUGIN_MANAGER, ENABLE_SECRETS_MANAGER, ENABLE_TRUST
|
|
37
|
-
"@elizaos/app-lifeops"
|
|
38
|
+
// "@elizaos/app-lifeops" — moved to CORE_PLUGINS above
|
|
38
39
|
"@elizaos/plugin-pdf", // PDF processing (published bundle broken in alpha.15)
|
|
39
40
|
"@elizaos/plugin-cua", // CUA computer-use agent (cloud sandbox automation)
|
|
40
41
|
"@elizaos/plugin-obsidian", // Obsidian vault CLI integration
|
|
@@ -1668,11 +1668,6 @@ export declare const allActionsSpec: {
|
|
|
1668
1668
|
readonly description: "Check ElizaCloud credit balance, container costs, and estimated remaining runtime.";
|
|
1669
1669
|
readonly parameters: readonly [];
|
|
1670
1670
|
readonly similes: readonly ["check credits", "check balance", "how much credit", "cloud billing"];
|
|
1671
|
-
}, {
|
|
1672
|
-
readonly name: "CLEAR_SHELL_HISTORY";
|
|
1673
|
-
readonly description: "Clears the recorded history of shell commands for the current conversation";
|
|
1674
|
-
readonly parameters: readonly [];
|
|
1675
|
-
readonly similes: readonly ["RESET_SHELL", "CLEAR_TERMINAL", "CLEAR_HISTORY", "RESET_HISTORY"];
|
|
1676
1671
|
}, {
|
|
1677
1672
|
readonly name: "COMMANDS_LIST";
|
|
1678
1673
|
readonly description: "List all available commands with their aliases. Only activates for /commands or /cmds slash commands.";
|
|
@@ -1715,16 +1710,6 @@ export declare const allActionsSpec: {
|
|
|
1715
1710
|
readonly description: "Edit an existing message in a Discord channel";
|
|
1716
1711
|
readonly parameters: readonly [];
|
|
1717
1712
|
readonly similes: readonly ["UPDATE_MESSAGE", "MODIFY_MESSAGE", "CHANGE_MESSAGE", "EDIT_DISCORD_MESSAGE"];
|
|
1718
|
-
}, {
|
|
1719
|
-
readonly name: "EVM_TRANSFER_TOKENS";
|
|
1720
|
-
readonly description: "Transfer tokens between addresses on the same chain";
|
|
1721
|
-
readonly parameters: readonly [];
|
|
1722
|
-
readonly similes: readonly ["EVM_TRANSFER", "EVM_SEND_TOKENS", "EVM_TOKEN_TRANSFER", "EVM_MOVE_TOKENS"];
|
|
1723
|
-
}, {
|
|
1724
|
-
readonly name: "EXECUTE_COMMAND";
|
|
1725
|
-
readonly description: "Execute ANY shell command in the terminal. Use this to run ANY command including: brew install, npm install, apt-get, system commands, file operations (create, write, delete), navigate directories, execute scripts, or perform any other shell operation. I CAN and SHOULD execute commands when asked. This includes brew, npm, git, ls, cd, echo, touch, cat, mkdir, system_profiler, and literally ANY other terminal command.";
|
|
1726
|
-
readonly parameters: readonly [];
|
|
1727
|
-
readonly similes: readonly ["RUN_COMMAND", "SHELL_COMMAND", "TERMINAL_COMMAND", "EXEC", "RUN", "EXECUTE", "CREATE_FILE", "WRITE_FILE", "MAKE_FILE", "INSTALL", "BREW_INSTALL", "NPM_INSTALL", "APT_INSTALL"];
|
|
1728
1713
|
}, {
|
|
1729
1714
|
readonly name: "FINALIZE_WORKSPACE";
|
|
1730
1715
|
readonly description: "Finalize workspace changes by committing, pushing, and optionally creating a pull request. ";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"action-docs.d.ts","sourceRoot":"","sources":["../../../../../../typescript/src/generated/action-docs.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgrC2C,CAAC;AACxE,eAAO,MAAM,cAAc
|
|
1
|
+
{"version":3,"file":"action-docs.d.ts","sourceRoot":"","sources":["../../../../../../typescript/src/generated/action-docs.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgrC2C,CAAC;AACxE,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA4iE4C,CAAC;AACxE,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoJ6C,CAAC;AAC5E,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoJ8C,CAAC;AAC5E,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoK9B,CAAC;AACF,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoK7B,CAAC;AAEF,eAAO,MAAM,cAAc,EAAE,SAAS,SAAS,EAA4B,CAAC;AAC5E,eAAO,MAAM,aAAa,EAAE,SAAS,SAAS,EAA2B,CAAC;AAC1E,eAAO,MAAM,gBAAgB,EAAE,SAAS,WAAW,EACvB,CAAC;AAC7B,eAAO,MAAM,eAAe,EAAE,SAAS,WAAW,EACvB,CAAC;AAC5B,eAAO,MAAM,iBAAiB,EAAE,SAAS,YAAY,EACvB,CAAC;AAC/B,eAAO,MAAM,gBAAgB,EAAE,SAAS,YAAY,EACvB,CAAC"}
|
|
@@ -2392,17 +2392,6 @@ export const allActionsSpec = {
|
|
|
2392
2392
|
"cloud billing",
|
|
2393
2393
|
],
|
|
2394
2394
|
},
|
|
2395
|
-
{
|
|
2396
|
-
name: "CLEAR_SHELL_HISTORY",
|
|
2397
|
-
description: "Clears the recorded history of shell commands for the current conversation",
|
|
2398
|
-
parameters: [],
|
|
2399
|
-
similes: [
|
|
2400
|
-
"RESET_SHELL",
|
|
2401
|
-
"CLEAR_TERMINAL",
|
|
2402
|
-
"CLEAR_HISTORY",
|
|
2403
|
-
"RESET_HISTORY",
|
|
2404
|
-
],
|
|
2405
|
-
},
|
|
2406
2395
|
{
|
|
2407
2396
|
name: "COMMANDS_LIST",
|
|
2408
2397
|
description: "List all available commands with their aliases. Only activates for /commands or /cmds slash commands.",
|
|
@@ -2469,37 +2458,6 @@ export const allActionsSpec = {
|
|
|
2469
2458
|
"EDIT_DISCORD_MESSAGE",
|
|
2470
2459
|
],
|
|
2471
2460
|
},
|
|
2472
|
-
{
|
|
2473
|
-
name: "EVM_TRANSFER_TOKENS",
|
|
2474
|
-
description: "Transfer tokens between addresses on the same chain",
|
|
2475
|
-
parameters: [],
|
|
2476
|
-
similes: [
|
|
2477
|
-
"EVM_TRANSFER",
|
|
2478
|
-
"EVM_SEND_TOKENS",
|
|
2479
|
-
"EVM_TOKEN_TRANSFER",
|
|
2480
|
-
"EVM_MOVE_TOKENS",
|
|
2481
|
-
],
|
|
2482
|
-
},
|
|
2483
|
-
{
|
|
2484
|
-
name: "EXECUTE_COMMAND",
|
|
2485
|
-
description: "Execute ANY shell command in the terminal. Use this to run ANY command including: brew install, npm install, apt-get, system commands, file operations (create, write, delete), navigate directories, execute scripts, or perform any other shell operation. I CAN and SHOULD execute commands when asked. This includes brew, npm, git, ls, cd, echo, touch, cat, mkdir, system_profiler, and literally ANY other terminal command.",
|
|
2486
|
-
parameters: [],
|
|
2487
|
-
similes: [
|
|
2488
|
-
"RUN_COMMAND",
|
|
2489
|
-
"SHELL_COMMAND",
|
|
2490
|
-
"TERMINAL_COMMAND",
|
|
2491
|
-
"EXEC",
|
|
2492
|
-
"RUN",
|
|
2493
|
-
"EXECUTE",
|
|
2494
|
-
"CREATE_FILE",
|
|
2495
|
-
"WRITE_FILE",
|
|
2496
|
-
"MAKE_FILE",
|
|
2497
|
-
"INSTALL",
|
|
2498
|
-
"BREW_INSTALL",
|
|
2499
|
-
"NPM_INSTALL",
|
|
2500
|
-
"APT_INSTALL",
|
|
2501
|
-
],
|
|
2502
|
-
},
|
|
2503
2461
|
{
|
|
2504
2462
|
name: "FINALIZE_WORKSPACE",
|
|
2505
2463
|
description: "Finalize workspace changes by committing, pushing, and optionally creating a pull request. ",
|