spora 0.7.6 → 0.7.7
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/{autonomy-E3DWYRJM.js → autonomy-NNFTM5NW.js} +3 -3
- package/dist/{chunk-E5PEY36J.js → chunk-JIMONWKO.js} +342 -2
- package/dist/chunk-JIMONWKO.js.map +1 -0
- package/dist/{chunk-FBHLDOMC.js → chunk-TTM54LQR.js} +382 -49
- package/dist/chunk-TTM54LQR.js.map +1 -0
- package/dist/cli.js +5 -5
- package/dist/{heartbeat-GVBLNAFM.js → heartbeat-WJJSGUAQ.js} +3 -3
- package/dist/{init-C4OZPGUC.js → init-6HY4ZPFJ.js} +3 -3
- package/dist/{prompt-builder-NTN4FCBD.js → prompt-builder-ZFUZNQY2.js} +2 -2
- package/dist/{web-chat-2N2RN6J7.js → web-chat-AKUEBSWS.js} +4 -4
- package/package.json +1 -1
- package/dist/chunk-E5PEY36J.js.map +0 -1
- package/dist/chunk-FBHLDOMC.js.map +0 -1
- /package/dist/{autonomy-E3DWYRJM.js.map → autonomy-NNFTM5NW.js.map} +0 -0
- /package/dist/{heartbeat-GVBLNAFM.js.map → heartbeat-WJJSGUAQ.js.map} +0 -0
- /package/dist/{init-C4OZPGUC.js.map → init-6HY4ZPFJ.js.map} +0 -0
- /package/dist/{prompt-builder-NTN4FCBD.js.map → prompt-builder-ZFUZNQY2.js.map} +0 -0
- /package/dist/{web-chat-2N2RN6J7.js.map → web-chat-AKUEBSWS.js.map} +0 -0
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
runAutonomyCycle
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-TTM54LQR.js";
|
|
4
4
|
import "./chunk-5R4AJZHN.js";
|
|
5
5
|
import "./chunk-ZLSDFYBR.js";
|
|
6
|
-
import "./chunk-
|
|
6
|
+
import "./chunk-JIMONWKO.js";
|
|
7
7
|
import "./chunk-OTZNHIXT.js";
|
|
8
8
|
import "./chunk-CAWWG3MD.js";
|
|
9
9
|
import "./chunk-CP6JWCLY.js";
|
|
@@ -17,4 +17,4 @@ import "./chunk-ZWKTKWS6.js";
|
|
|
17
17
|
export {
|
|
18
18
|
runAutonomyCycle
|
|
19
19
|
};
|
|
20
|
-
//# sourceMappingURL=autonomy-
|
|
20
|
+
//# sourceMappingURL=autonomy-NNFTM5NW.js.map
|
|
@@ -37,6 +37,62 @@ function extractHandles(text) {
|
|
|
37
37
|
[...fromMentions, ...fromUrls].map(normalizeHandle).filter((handle) => handle.length > 0)
|
|
38
38
|
);
|
|
39
39
|
}
|
|
40
|
+
var BARE_HANDLE_STOPWORDS = /* @__PURE__ */ new Set([
|
|
41
|
+
"him",
|
|
42
|
+
"her",
|
|
43
|
+
"them",
|
|
44
|
+
"someone",
|
|
45
|
+
"anyone",
|
|
46
|
+
"everyone",
|
|
47
|
+
"anybody",
|
|
48
|
+
"everybody",
|
|
49
|
+
"people",
|
|
50
|
+
"person",
|
|
51
|
+
"users",
|
|
52
|
+
"user",
|
|
53
|
+
"others",
|
|
54
|
+
"other",
|
|
55
|
+
"my",
|
|
56
|
+
"me",
|
|
57
|
+
"you",
|
|
58
|
+
"to",
|
|
59
|
+
"with",
|
|
60
|
+
"for",
|
|
61
|
+
"only",
|
|
62
|
+
"just",
|
|
63
|
+
"reply",
|
|
64
|
+
"respond",
|
|
65
|
+
"interact",
|
|
66
|
+
"engage"
|
|
67
|
+
]);
|
|
68
|
+
var NAME_TO_HANDLE = [
|
|
69
|
+
[/\bgrok\b/i, "grok"],
|
|
70
|
+
[/\belon musk\b/i, "elonmusk"],
|
|
71
|
+
[/\belon\b/i, "elonmusk"],
|
|
72
|
+
[/\bmark zuckerberg\b/i, "zuck"],
|
|
73
|
+
[/\bzuck\b/i, "zuck"],
|
|
74
|
+
[/\bspora\s*ai\b/i, "sporaai"],
|
|
75
|
+
[/\bsporaai\b/i, "sporaai"]
|
|
76
|
+
];
|
|
77
|
+
function extractBareConstraintTargets(text) {
|
|
78
|
+
const found = /* @__PURE__ */ new Set();
|
|
79
|
+
const candidates = [
|
|
80
|
+
...text.matchAll(/\bonly\s+(?:reply|respond|interact|engage|talk|speak)(?:\s+\w+){0,3}\s+(?:to|with)\s+@?([a-zA-Z0-9_]{2,15})\b/gi),
|
|
81
|
+
...text.matchAll(/\b(?:reply|respond|interact|engage|talk|speak)\s+only(?:\s+\w+){0,3}\s+(?:to|with)\s+@?([a-zA-Z0-9_]{2,15})\b/gi)
|
|
82
|
+
];
|
|
83
|
+
for (const match of candidates) {
|
|
84
|
+
const raw = String(match[1] ?? "").replace(/'s$/i, "");
|
|
85
|
+
const handle = normalizeHandle(raw);
|
|
86
|
+
if (!handle) continue;
|
|
87
|
+
if (!/^[a-z0-9_]{2,15}$/.test(handle)) continue;
|
|
88
|
+
if (BARE_HANDLE_STOPWORDS.has(handle)) continue;
|
|
89
|
+
found.add(handle);
|
|
90
|
+
}
|
|
91
|
+
for (const [pattern, handle] of NAME_TO_HANDLE) {
|
|
92
|
+
if (pattern.test(text)) found.add(handle);
|
|
93
|
+
}
|
|
94
|
+
return [...found];
|
|
95
|
+
}
|
|
40
96
|
function includesOnlyQualifier(text) {
|
|
41
97
|
return /\b(only|just|exclusively|strictly)\b/i.test(text);
|
|
42
98
|
}
|
|
@@ -70,7 +126,10 @@ function getPersonaConstraints(identityArg) {
|
|
|
70
126
|
let replyOnlyMode = false;
|
|
71
127
|
let noOriginalPosts = false;
|
|
72
128
|
for (const line of lines) {
|
|
73
|
-
const handles =
|
|
129
|
+
const handles = unique([
|
|
130
|
+
...extractHandles(line),
|
|
131
|
+
...extractBareConstraintTargets(line)
|
|
132
|
+
]);
|
|
74
133
|
const hasOnly = includesOnlyQualifier(line);
|
|
75
134
|
const hasReply = includesReplyIntent(line);
|
|
76
135
|
const hasInteract = includesInteractionIntent(line);
|
|
@@ -133,6 +192,277 @@ function buildPersonaConstraintLines(constraints) {
|
|
|
133
192
|
return lines;
|
|
134
193
|
}
|
|
135
194
|
|
|
195
|
+
// src/runtime/persona-action-profile.ts
|
|
196
|
+
function clamp(value, min, max) {
|
|
197
|
+
return Math.max(min, Math.min(max, value));
|
|
198
|
+
}
|
|
199
|
+
function unique2(values) {
|
|
200
|
+
return [...new Set(values)];
|
|
201
|
+
}
|
|
202
|
+
function normalizeText(text) {
|
|
203
|
+
return text.toLowerCase().trim();
|
|
204
|
+
}
|
|
205
|
+
function hasAny(text, terms) {
|
|
206
|
+
const lower = normalizeText(text);
|
|
207
|
+
return terms.some((term) => lower.includes(term));
|
|
208
|
+
}
|
|
209
|
+
function applyGoalBias(actionBias, sourceBias, goals, rationale) {
|
|
210
|
+
for (const goal of goals) {
|
|
211
|
+
if (hasAny(goal, ["grow followers", "go viral", "audience", "reach"])) {
|
|
212
|
+
actionBias.reply += 0.35;
|
|
213
|
+
actionBias.post += 0.45;
|
|
214
|
+
sourceBias.mention += 0.2;
|
|
215
|
+
rationale.push("growth goals favor reply+post mix");
|
|
216
|
+
}
|
|
217
|
+
if (hasAny(goal, ["build community", "community", "connect", "relationships"])) {
|
|
218
|
+
actionBias.reply += 0.4;
|
|
219
|
+
actionBias.like += 0.3;
|
|
220
|
+
actionBias.follow += 0.45;
|
|
221
|
+
sourceBias.people_watch += 0.35;
|
|
222
|
+
rationale.push("community goals favor social interaction actions");
|
|
223
|
+
}
|
|
224
|
+
if (hasAny(goal, ["debate", "challenge", "argue", "provoc"])) {
|
|
225
|
+
actionBias.reply += 0.5;
|
|
226
|
+
sourceBias.mention += 0.25;
|
|
227
|
+
rationale.push("debate goals bias toward replies in active conversations");
|
|
228
|
+
}
|
|
229
|
+
if (hasAny(goal, ["curate", "signal", "filter"])) {
|
|
230
|
+
actionBias.retweet += 0.8;
|
|
231
|
+
actionBias.like += 0.2;
|
|
232
|
+
sourceBias.topic_search += 0.35;
|
|
233
|
+
rationale.push("curation goals bias toward retweet/like actions");
|
|
234
|
+
}
|
|
235
|
+
if (hasAny(goal, ["seek truth", "research", "facts", "evidence"])) {
|
|
236
|
+
actionBias.reply += 0.25;
|
|
237
|
+
actionBias.post += 0.2;
|
|
238
|
+
sourceBias.topic_search += 0.45;
|
|
239
|
+
rationale.push("truth-seeking goals bias toward topic-search grounded actions");
|
|
240
|
+
}
|
|
241
|
+
}
|
|
242
|
+
}
|
|
243
|
+
function compilePersonaActionProfile(input) {
|
|
244
|
+
const { identity, strategy, constraints } = input;
|
|
245
|
+
const rationale = [];
|
|
246
|
+
const actionBias = {
|
|
247
|
+
reply: 0,
|
|
248
|
+
like: 0,
|
|
249
|
+
retweet: 0,
|
|
250
|
+
follow: 0,
|
|
251
|
+
post: 0
|
|
252
|
+
};
|
|
253
|
+
const sourceBias = {
|
|
254
|
+
mention: 0,
|
|
255
|
+
timeline: 0,
|
|
256
|
+
topic_search: 0,
|
|
257
|
+
people_watch: 0,
|
|
258
|
+
synthesis: 0
|
|
259
|
+
};
|
|
260
|
+
const mix = identity.engagementStrategy.contentMix;
|
|
261
|
+
actionBias.post += (mix.originalPosts - 25) / 25;
|
|
262
|
+
actionBias.reply += (mix.replies - 30) / 25;
|
|
263
|
+
actionBias.retweet += (mix.retweets - 15) / 20;
|
|
264
|
+
actionBias.like += (mix.likes - 15) / 20;
|
|
265
|
+
rationale.push("contentMix translated into action priors");
|
|
266
|
+
if (identity.engagementStrategy.replyStyle === "strategic") {
|
|
267
|
+
actionBias.reply += 0.3;
|
|
268
|
+
sourceBias.people_watch += 0.35;
|
|
269
|
+
sourceBias.topic_search += 0.25;
|
|
270
|
+
sourceBias.timeline -= 0.15;
|
|
271
|
+
rationale.push("strategic replyStyle favors selective people/topic opportunities");
|
|
272
|
+
} else if (identity.engagementStrategy.replyStyle === "reactive") {
|
|
273
|
+
actionBias.reply += 0.4;
|
|
274
|
+
sourceBias.mention += 0.45;
|
|
275
|
+
sourceBias.timeline += 0.2;
|
|
276
|
+
rationale.push("reactive replyStyle favors mentions/timeline");
|
|
277
|
+
} else if (identity.engagementStrategy.replyStyle === "generous") {
|
|
278
|
+
actionBias.reply += 0.25;
|
|
279
|
+
actionBias.like += 0.25;
|
|
280
|
+
sourceBias.mention += 0.25;
|
|
281
|
+
sourceBias.timeline += 0.2;
|
|
282
|
+
rationale.push("generous replyStyle favors broader conversation participation");
|
|
283
|
+
} else if (identity.engagementStrategy.replyStyle === "selective") {
|
|
284
|
+
sourceBias.people_watch += 0.25;
|
|
285
|
+
sourceBias.topic_search += 0.2;
|
|
286
|
+
sourceBias.timeline -= 0.2;
|
|
287
|
+
rationale.push("selective replyStyle favors quality-filtered contexts");
|
|
288
|
+
}
|
|
289
|
+
if (identity.engagementStrategy.followStrategy === "aggressive") {
|
|
290
|
+
actionBias.follow += 0.7;
|
|
291
|
+
rationale.push("aggressive followStrategy boosts follow actions");
|
|
292
|
+
} else if (identity.engagementStrategy.followStrategy === "none") {
|
|
293
|
+
actionBias.follow -= 2;
|
|
294
|
+
rationale.push("followStrategy=none suppresses follow actions");
|
|
295
|
+
} else if (identity.engagementStrategy.followStrategy === "curated") {
|
|
296
|
+
actionBias.follow -= 0.25;
|
|
297
|
+
sourceBias.people_watch += 0.15;
|
|
298
|
+
rationale.push("curated followStrategy slightly restricts follow actions");
|
|
299
|
+
}
|
|
300
|
+
const traits = identity.traits;
|
|
301
|
+
if (traits.curiosity >= 0.65) {
|
|
302
|
+
actionBias.reply += 0.35;
|
|
303
|
+
sourceBias.mention += 0.2;
|
|
304
|
+
sourceBias.people_watch += 0.2;
|
|
305
|
+
rationale.push("high curiosity increases reply preference");
|
|
306
|
+
}
|
|
307
|
+
if (traits.empathy >= 0.65) {
|
|
308
|
+
actionBias.like += 0.35;
|
|
309
|
+
actionBias.follow += 0.25;
|
|
310
|
+
rationale.push("high empathy increases supportive actions");
|
|
311
|
+
}
|
|
312
|
+
if (traits.confidence >= 0.7 || traits.aggression >= 0.65) {
|
|
313
|
+
actionBias.reply += 0.25;
|
|
314
|
+
actionBias.post += 0.15;
|
|
315
|
+
actionBias.like -= 0.15;
|
|
316
|
+
rationale.push("assertive traits increase reply/post decisiveness");
|
|
317
|
+
}
|
|
318
|
+
if (traits.originality >= 0.7) {
|
|
319
|
+
actionBias.post += 0.25;
|
|
320
|
+
actionBias.reply += 0.1;
|
|
321
|
+
sourceBias.synthesis += 0.25;
|
|
322
|
+
rationale.push("high originality favors fresh synthesis posts");
|
|
323
|
+
}
|
|
324
|
+
if (traits.humor >= 0.7) {
|
|
325
|
+
actionBias.reply += 0.15;
|
|
326
|
+
actionBias.post += 0.15;
|
|
327
|
+
sourceBias.timeline += 0.15;
|
|
328
|
+
rationale.push("high humor increases conversational/timeline engagement");
|
|
329
|
+
}
|
|
330
|
+
if (identity.vocabularyStyle === "casual" || identity.vocabularyStyle === "internet-native") {
|
|
331
|
+
actionBias.reply += 0.2;
|
|
332
|
+
actionBias.like += 0.1;
|
|
333
|
+
sourceBias.timeline += 0.2;
|
|
334
|
+
sourceBias.synthesis -= 0.15;
|
|
335
|
+
rationale.push("casual/internet-native vocabulary favors timeline-native interactions");
|
|
336
|
+
}
|
|
337
|
+
if (identity.tweetStyle === "one-liners" || identity.tweetStyle === "short-form") {
|
|
338
|
+
actionBias.reply += 0.25;
|
|
339
|
+
actionBias.like += 0.15;
|
|
340
|
+
actionBias.post -= 0.15;
|
|
341
|
+
sourceBias.timeline += 0.2;
|
|
342
|
+
rationale.push("short tweet style favors reactive conversational actions");
|
|
343
|
+
} else if (identity.tweetStyle === "threads") {
|
|
344
|
+
actionBias.post += 0.25;
|
|
345
|
+
sourceBias.synthesis += 0.2;
|
|
346
|
+
rationale.push("thread style favors synthesis-driven posting");
|
|
347
|
+
}
|
|
348
|
+
if (identity.framework !== "philosopher") {
|
|
349
|
+
sourceBias.synthesis -= 0.1;
|
|
350
|
+
rationale.push("non-philosopher frameworks slightly downweight abstract synthesis");
|
|
351
|
+
}
|
|
352
|
+
switch (identity.framework) {
|
|
353
|
+
case "conqueror":
|
|
354
|
+
actionBias.post += 0.45;
|
|
355
|
+
actionBias.reply += 0.35;
|
|
356
|
+
actionBias.follow += 0.25;
|
|
357
|
+
actionBias.like -= 0.2;
|
|
358
|
+
sourceBias.mention += 0.15;
|
|
359
|
+
rationale.push("conqueror framework favors decisive high-visibility actions");
|
|
360
|
+
break;
|
|
361
|
+
case "authentic":
|
|
362
|
+
actionBias.reply += 0.45;
|
|
363
|
+
actionBias.like += 0.4;
|
|
364
|
+
actionBias.follow += 0.2;
|
|
365
|
+
actionBias.post += 0.1;
|
|
366
|
+
sourceBias.mention += 0.25;
|
|
367
|
+
sourceBias.timeline += 0.2;
|
|
368
|
+
sourceBias.synthesis -= 0.15;
|
|
369
|
+
rationale.push("authentic framework favors relational and grounded conversation");
|
|
370
|
+
break;
|
|
371
|
+
case "curator":
|
|
372
|
+
actionBias.retweet += 0.8;
|
|
373
|
+
actionBias.like += 0.3;
|
|
374
|
+
actionBias.post -= 0.2;
|
|
375
|
+
rationale.push("curator framework favors retweets/likes");
|
|
376
|
+
break;
|
|
377
|
+
case "community-builder":
|
|
378
|
+
actionBias.reply += 0.35;
|
|
379
|
+
actionBias.like += 0.3;
|
|
380
|
+
actionBias.follow += 0.35;
|
|
381
|
+
rationale.push("community-builder framework favors relationship actions");
|
|
382
|
+
break;
|
|
383
|
+
case "growth-hacker":
|
|
384
|
+
actionBias.post += 0.3;
|
|
385
|
+
actionBias.reply += 0.25;
|
|
386
|
+
rationale.push("growth-hacker framework favors visible output + replies");
|
|
387
|
+
break;
|
|
388
|
+
case "truthseeker":
|
|
389
|
+
actionBias.reply += 0.25;
|
|
390
|
+
actionBias.post += 0.2;
|
|
391
|
+
sourceBias.topic_search += 0.3;
|
|
392
|
+
rationale.push("truthseeker framework favors research-grounded conversation");
|
|
393
|
+
break;
|
|
394
|
+
case "philosopher":
|
|
395
|
+
actionBias.post += 0.35;
|
|
396
|
+
actionBias.reply += 0.1;
|
|
397
|
+
sourceBias.synthesis += 0.25;
|
|
398
|
+
rationale.push("philosopher framework leans toward original perspective posts");
|
|
399
|
+
break;
|
|
400
|
+
case "provocateur":
|
|
401
|
+
actionBias.reply += 0.55;
|
|
402
|
+
actionBias.post += 0.35;
|
|
403
|
+
actionBias.like -= 0.15;
|
|
404
|
+
sourceBias.mention += 0.25;
|
|
405
|
+
sourceBias.timeline += 0.15;
|
|
406
|
+
rationale.push("provocateur framework favors sharp, conversational confrontation");
|
|
407
|
+
break;
|
|
408
|
+
case "shitposter":
|
|
409
|
+
actionBias.post += 0.45;
|
|
410
|
+
actionBias.reply += 0.25;
|
|
411
|
+
sourceBias.timeline += 0.2;
|
|
412
|
+
rationale.push("shitposter framework favors high-frequency social expression");
|
|
413
|
+
break;
|
|
414
|
+
default:
|
|
415
|
+
break;
|
|
416
|
+
}
|
|
417
|
+
applyGoalBias(actionBias, sourceBias, identity.goals ?? [], rationale);
|
|
418
|
+
if ((strategy.currentFocus ?? []).length > 0 || (strategy.shortTermGoals ?? []).length > 0) {
|
|
419
|
+
sourceBias.topic_search += 0.2;
|
|
420
|
+
sourceBias.people_watch += 0.15;
|
|
421
|
+
rationale.push("active strategy focus boosts targeted discovery sources");
|
|
422
|
+
}
|
|
423
|
+
if (constraints.noOriginalPosts) {
|
|
424
|
+
actionBias.post -= 2;
|
|
425
|
+
rationale.push("hard constraint suppresses original posts");
|
|
426
|
+
}
|
|
427
|
+
if (constraints.replyOnlyMode) {
|
|
428
|
+
actionBias.reply += 1.5;
|
|
429
|
+
actionBias.like -= 1.2;
|
|
430
|
+
actionBias.retweet -= 1.2;
|
|
431
|
+
actionBias.follow -= 1.2;
|
|
432
|
+
actionBias.post -= 2;
|
|
433
|
+
rationale.push("reply-only hard constraint dominates action policy");
|
|
434
|
+
}
|
|
435
|
+
const clampedActionBias = {
|
|
436
|
+
reply: clamp(actionBias.reply, -2.5, 2.5),
|
|
437
|
+
like: clamp(actionBias.like, -2.5, 2.5),
|
|
438
|
+
retweet: clamp(actionBias.retweet, -2.5, 2.5),
|
|
439
|
+
follow: clamp(actionBias.follow, -2.5, 2.5),
|
|
440
|
+
post: clamp(actionBias.post, -2.5, 2.5)
|
|
441
|
+
};
|
|
442
|
+
const clampedSourceBias = {
|
|
443
|
+
mention: clamp(sourceBias.mention, -1.5, 1.5),
|
|
444
|
+
timeline: clamp(sourceBias.timeline, -1.5, 1.5),
|
|
445
|
+
topic_search: clamp(sourceBias.topic_search, -1.5, 1.5),
|
|
446
|
+
people_watch: clamp(sourceBias.people_watch, -1.5, 1.5),
|
|
447
|
+
synthesis: clamp(sourceBias.synthesis, -1.5, 1.5)
|
|
448
|
+
};
|
|
449
|
+
const prioritizedActions = Object.entries(clampedActionBias).sort((a, b) => b[1] - a[1]).map(([action]) => action);
|
|
450
|
+
const priorityTopics = unique2(
|
|
451
|
+
[
|
|
452
|
+
...identity.topics ?? [],
|
|
453
|
+
...strategy.currentFocus ?? [],
|
|
454
|
+
...strategy.shortTermGoals ?? []
|
|
455
|
+
].map((topic) => String(topic).trim()).filter(Boolean).slice(0, 12)
|
|
456
|
+
);
|
|
457
|
+
return {
|
|
458
|
+
actionBias: clampedActionBias,
|
|
459
|
+
sourceBias: clampedSourceBias,
|
|
460
|
+
prioritizedActions,
|
|
461
|
+
priorityTopics,
|
|
462
|
+
rationale: unique2(rationale).slice(0, 12)
|
|
463
|
+
};
|
|
464
|
+
}
|
|
465
|
+
|
|
136
466
|
// src/runtime/prompt-builder.ts
|
|
137
467
|
var PROMPT_TOKEN_STOPWORDS = /* @__PURE__ */ new Set([
|
|
138
468
|
"about",
|
|
@@ -562,6 +892,7 @@ function buildOpportunityPortfolioMessage(input) {
|
|
|
562
892
|
const identity = loadIdentity();
|
|
563
893
|
const constraints = getPersonaConstraints(identity);
|
|
564
894
|
const strategy = loadStrategy();
|
|
895
|
+
const personaProfile = compilePersonaActionProfile({ identity, strategy, constraints });
|
|
565
896
|
const recentWritten = recentWrittenTextsForPrompt(12);
|
|
566
897
|
const overusedOpenings = findOverusedOpenings(recentWritten);
|
|
567
898
|
const overusedTokens = findOverusedTokens(recentWritten);
|
|
@@ -593,6 +924,14 @@ function buildOpportunityPortfolioMessage(input) {
|
|
|
593
924
|
parts.push(line);
|
|
594
925
|
}
|
|
595
926
|
}
|
|
927
|
+
parts.push("Persona action priors (soft):");
|
|
928
|
+
parts.push(`- Preferred actions this heartbeat: ${personaProfile.prioritizedActions.slice(0, 4).join(", ")}`);
|
|
929
|
+
parts.push(
|
|
930
|
+
`- Preferred sources: ${Object.entries(personaProfile.sourceBias).sort((a, b) => b[1] - a[1]).map(([source]) => source).slice(0, 3).join(", ")}`
|
|
931
|
+
);
|
|
932
|
+
if (personaProfile.priorityTopics.length > 0) {
|
|
933
|
+
parts.push(`- Priority topics: ${personaProfile.priorityTopics.slice(0, 6).join(", ")}`);
|
|
934
|
+
}
|
|
596
935
|
parts.push("");
|
|
597
936
|
parts.push("Human style rotation:");
|
|
598
937
|
parts.push("- For each `reply`/`post`, pick one lane: quick reaction, curious question, friendly pushback, playful line, plain observation.");
|
|
@@ -864,6 +1203,7 @@ export {
|
|
|
864
1203
|
getPersonaConstraints,
|
|
865
1204
|
personaConstraintHandles,
|
|
866
1205
|
buildPersonaConstraintLines,
|
|
1206
|
+
compilePersonaActionProfile,
|
|
867
1207
|
buildSystemPrompt,
|
|
868
1208
|
buildHeartbeatUserMessage,
|
|
869
1209
|
buildToolDecisionMessage,
|
|
@@ -872,4 +1212,4 @@ export {
|
|
|
872
1212
|
buildTrainingChatPrompt,
|
|
873
1213
|
buildReflectionPrompt
|
|
874
1214
|
};
|
|
875
|
-
//# sourceMappingURL=chunk-
|
|
1215
|
+
//# sourceMappingURL=chunk-JIMONWKO.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/runtime/persona-constraints.ts","../src/runtime/persona-action-profile.ts","../src/runtime/prompt-builder.ts"],"sourcesContent":["import { loadIdentity } from \"../identity/index.js\";\nimport type { Identity } from \"../identity/schema.js\";\n\nexport interface PersonaConstraints {\n onlyReplyToHandles: string[];\n onlyInteractWithHandles: string[];\n noOriginalPosts: boolean;\n replyOnlyMode: boolean;\n}\n\nfunction normalizeHandle(handle: string): string {\n return handle.replace(/^@/, \"\").trim().toLowerCase();\n}\n\nfunction unique(values: string[]): string[] {\n return [...new Set(values)];\n}\n\nfunction extractHandles(text: string): string[] {\n const fromMentions = [...text.matchAll(/@([a-zA-Z0-9_]{1,15})/g)].map((m) => m[1]);\n const fromUrls = [...text.matchAll(/x\\.com\\/([a-zA-Z0-9_]{1,15})/gi)].map((m) => m[1]);\n return unique(\n [...fromMentions, ...fromUrls]\n .map(normalizeHandle)\n .filter((handle) => handle.length > 0),\n );\n}\n\nconst BARE_HANDLE_STOPWORDS = new Set([\n \"him\", \"her\", \"them\", \"someone\", \"anyone\", \"everyone\", \"anybody\", \"everybody\",\n \"people\", \"person\", \"users\", \"user\", \"others\", \"other\", \"my\", \"me\", \"you\",\n \"to\", \"with\", \"for\", \"only\", \"just\", \"reply\", \"respond\", \"interact\", \"engage\",\n]);\n\nconst NAME_TO_HANDLE: Array<[RegExp, string]> = [\n [/\\bgrok\\b/i, \"grok\"],\n [/\\belon musk\\b/i, \"elonmusk\"],\n [/\\belon\\b/i, \"elonmusk\"],\n [/\\bmark zuckerberg\\b/i, \"zuck\"],\n [/\\bzuck\\b/i, \"zuck\"],\n [/\\bspora\\s*ai\\b/i, \"sporaai\"],\n [/\\bsporaai\\b/i, \"sporaai\"],\n];\n\nfunction extractBareConstraintTargets(text: string): string[] {\n const found = new Set<string>();\n const candidates = [\n ...text.matchAll(/\\bonly\\s+(?:reply|respond|interact|engage|talk|speak)(?:\\s+\\w+){0,3}\\s+(?:to|with)\\s+@?([a-zA-Z0-9_]{2,15})\\b/gi),\n ...text.matchAll(/\\b(?:reply|respond|interact|engage|talk|speak)\\s+only(?:\\s+\\w+){0,3}\\s+(?:to|with)\\s+@?([a-zA-Z0-9_]{2,15})\\b/gi),\n ];\n for (const match of candidates) {\n const raw = String(match[1] ?? \"\").replace(/'s$/i, \"\");\n const handle = normalizeHandle(raw);\n if (!handle) continue;\n if (!/^[a-z0-9_]{2,15}$/.test(handle)) continue;\n if (BARE_HANDLE_STOPWORDS.has(handle)) continue;\n found.add(handle);\n }\n\n for (const [pattern, handle] of NAME_TO_HANDLE) {\n if (pattern.test(text)) found.add(handle);\n }\n\n return [...found];\n}\n\nfunction includesOnlyQualifier(text: string): boolean {\n return /\\b(only|just|exclusively|strictly)\\b/i.test(text);\n}\n\nfunction includesReplyIntent(text: string): boolean {\n return /\\b(reply|respond|response|replying)\\b/i.test(text);\n}\n\nfunction includesInteractionIntent(text: string): boolean {\n return /\\b(interact|engage|talk|chat|speak|communicate|message)\\b/i.test(text);\n}\n\nfunction impliesNoOriginalPosts(text: string): boolean {\n const lower = text.toLowerCase();\n if (/\\bonly\\s+repl(?:y|ies)\\b/.test(lower)) return true;\n if (/\\brepl(?:y|ies)\\s+only\\b/.test(lower)) return true;\n if (/\\breply-?only\\b/.test(lower)) return true;\n if (/\\b(no|never|don['’]?t|dont|avoid)\\s+(?:do\\s+)?(?:original\\s+)?posts?\\b/.test(lower)) return true;\n if (/\\bno\\s+tweets?\\b/.test(lower)) return true;\n return false;\n}\n\nexport function getPersonaConstraints(identityArg?: Identity): PersonaConstraints {\n const identity = identityArg ?? loadIdentity();\n const strictReplyHandles = new Set<string>();\n const strictInteractionHandles = new Set<string>();\n\n const lines = [\n ...(identity.goals ?? []),\n ...(identity.boundaries ?? []),\n identity.bio ?? \"\",\n identity.originStory ?? \"\",\n identity.worldview ?? \"\",\n identity.tone ?? \"\",\n ].filter((value) => typeof value === \"string\" && value.trim().length > 0);\n\n let replyOnlyMode = false;\n let noOriginalPosts = false;\n\n for (const line of lines) {\n const handles = unique([\n ...extractHandles(line),\n ...extractBareConstraintTargets(line),\n ]);\n const hasOnly = includesOnlyQualifier(line);\n const hasReply = includesReplyIntent(line);\n const hasInteract = includesInteractionIntent(line);\n\n if (impliesNoOriginalPosts(line)) {\n replyOnlyMode = true;\n noOriginalPosts = true;\n }\n\n if (hasOnly && hasReply) {\n replyOnlyMode = true;\n noOriginalPosts = true;\n for (const handle of handles) {\n strictReplyHandles.add(handle);\n strictInteractionHandles.add(handle);\n }\n continue;\n }\n\n if (hasOnly && hasInteract) {\n noOriginalPosts = true;\n for (const handle of handles) {\n strictInteractionHandles.add(handle);\n }\n }\n }\n\n if (strictReplyHandles.size > 0) {\n replyOnlyMode = true;\n noOriginalPosts = true;\n }\n if (strictInteractionHandles.size > 0) {\n noOriginalPosts = true;\n }\n\n return {\n onlyReplyToHandles: [...strictReplyHandles],\n onlyInteractWithHandles: [...strictInteractionHandles],\n noOriginalPosts,\n replyOnlyMode,\n };\n}\n\nexport function personaConstraintHandles(constraints: PersonaConstraints): string[] {\n return unique([\n ...constraints.onlyReplyToHandles.map(normalizeHandle),\n ...constraints.onlyInteractWithHandles.map(normalizeHandle),\n ]).filter(Boolean);\n}\n\nexport function buildPersonaConstraintLines(constraints: PersonaConstraints): string[] {\n const lines: string[] = [];\n if (constraints.onlyReplyToHandles.length > 0) {\n lines.push(`- Hard constraint: only reply to @${constraints.onlyReplyToHandles.join(\", @\")}`);\n } else if (constraints.replyOnlyMode) {\n lines.push(\"- Hard constraint: reply-only mode (no like/retweet/follow/post actions).\");\n }\n\n const onlyInteract = constraints.onlyInteractWithHandles.filter(\n (handle) => !constraints.onlyReplyToHandles.includes(handle),\n );\n if (onlyInteract.length > 0) {\n lines.push(`- Hard constraint: only interact with @${onlyInteract.join(\", @\")}`);\n }\n\n if (constraints.noOriginalPosts) {\n lines.push(\"- Hard constraint: do not create standalone original posts.\");\n }\n\n return lines;\n}\n","import type { Identity } from \"../identity/schema.js\";\nimport type { Strategy } from \"../memory/strategy.js\";\nimport type { PersonaConstraints } from \"./persona-constraints.js\";\n\nexport type PersonaActionType = \"reply\" | \"like\" | \"retweet\" | \"follow\" | \"post\";\nexport type PersonaSourceType = \"mention\" | \"timeline\" | \"topic_search\" | \"people_watch\" | \"synthesis\";\n\nexport interface PersonaActionProfile {\n actionBias: Record<PersonaActionType, number>;\n sourceBias: Record<PersonaSourceType, number>;\n prioritizedActions: PersonaActionType[];\n priorityTopics: string[];\n rationale: string[];\n}\n\nfunction clamp(value: number, min: number, max: number): number {\n return Math.max(min, Math.min(max, value));\n}\n\nfunction unique<T>(values: T[]): T[] {\n return [...new Set(values)];\n}\n\nfunction normalizeText(text: string): string {\n return text.toLowerCase().trim();\n}\n\nfunction hasAny(text: string, terms: string[]): boolean {\n const lower = normalizeText(text);\n return terms.some((term) => lower.includes(term));\n}\n\nfunction applyGoalBias(\n actionBias: Record<PersonaActionType, number>,\n sourceBias: Record<PersonaSourceType, number>,\n goals: string[],\n rationale: string[],\n): void {\n for (const goal of goals) {\n if (hasAny(goal, [\"grow followers\", \"go viral\", \"audience\", \"reach\"])) {\n actionBias.reply += 0.35;\n actionBias.post += 0.45;\n sourceBias.mention += 0.2;\n rationale.push(\"growth goals favor reply+post mix\");\n }\n if (hasAny(goal, [\"build community\", \"community\", \"connect\", \"relationships\"])) {\n actionBias.reply += 0.4;\n actionBias.like += 0.3;\n actionBias.follow += 0.45;\n sourceBias.people_watch += 0.35;\n rationale.push(\"community goals favor social interaction actions\");\n }\n if (hasAny(goal, [\"debate\", \"challenge\", \"argue\", \"provoc\"])) {\n actionBias.reply += 0.5;\n sourceBias.mention += 0.25;\n rationale.push(\"debate goals bias toward replies in active conversations\");\n }\n if (hasAny(goal, [\"curate\", \"signal\", \"filter\"])) {\n actionBias.retweet += 0.8;\n actionBias.like += 0.2;\n sourceBias.topic_search += 0.35;\n rationale.push(\"curation goals bias toward retweet/like actions\");\n }\n if (hasAny(goal, [\"seek truth\", \"research\", \"facts\", \"evidence\"])) {\n actionBias.reply += 0.25;\n actionBias.post += 0.2;\n sourceBias.topic_search += 0.45;\n rationale.push(\"truth-seeking goals bias toward topic-search grounded actions\");\n }\n }\n}\n\nexport function compilePersonaActionProfile(input: {\n identity: Identity;\n strategy: Strategy;\n constraints: PersonaConstraints;\n}): PersonaActionProfile {\n const { identity, strategy, constraints } = input;\n const rationale: string[] = [];\n\n const actionBias: Record<PersonaActionType, number> = {\n reply: 0,\n like: 0,\n retweet: 0,\n follow: 0,\n post: 0,\n };\n\n const sourceBias: Record<PersonaSourceType, number> = {\n mention: 0,\n timeline: 0,\n topic_search: 0,\n people_watch: 0,\n synthesis: 0,\n };\n\n // Baseline from explicit content mix (this is the strongest broad persona signal).\n const mix = identity.engagementStrategy.contentMix;\n actionBias.post += (mix.originalPosts - 25) / 25;\n actionBias.reply += (mix.replies - 30) / 25;\n actionBias.retweet += (mix.retweets - 15) / 20;\n actionBias.like += (mix.likes - 15) / 20;\n rationale.push(\"contentMix translated into action priors\");\n\n // Reply style => source/action pattern\n if (identity.engagementStrategy.replyStyle === \"strategic\") {\n actionBias.reply += 0.3;\n sourceBias.people_watch += 0.35;\n sourceBias.topic_search += 0.25;\n sourceBias.timeline -= 0.15;\n rationale.push(\"strategic replyStyle favors selective people/topic opportunities\");\n } else if (identity.engagementStrategy.replyStyle === \"reactive\") {\n actionBias.reply += 0.4;\n sourceBias.mention += 0.45;\n sourceBias.timeline += 0.2;\n rationale.push(\"reactive replyStyle favors mentions/timeline\");\n } else if (identity.engagementStrategy.replyStyle === \"generous\") {\n actionBias.reply += 0.25;\n actionBias.like += 0.25;\n sourceBias.mention += 0.25;\n sourceBias.timeline += 0.2;\n rationale.push(\"generous replyStyle favors broader conversation participation\");\n } else if (identity.engagementStrategy.replyStyle === \"selective\") {\n sourceBias.people_watch += 0.25;\n sourceBias.topic_search += 0.2;\n sourceBias.timeline -= 0.2;\n rationale.push(\"selective replyStyle favors quality-filtered contexts\");\n }\n\n // Follow strategy\n if (identity.engagementStrategy.followStrategy === \"aggressive\") {\n actionBias.follow += 0.7;\n rationale.push(\"aggressive followStrategy boosts follow actions\");\n } else if (identity.engagementStrategy.followStrategy === \"none\") {\n actionBias.follow -= 2.0;\n rationale.push(\"followStrategy=none suppresses follow actions\");\n } else if (identity.engagementStrategy.followStrategy === \"curated\") {\n actionBias.follow -= 0.25;\n sourceBias.people_watch += 0.15;\n rationale.push(\"curated followStrategy slightly restricts follow actions\");\n }\n\n // Traits\n const traits = identity.traits;\n if (traits.curiosity >= 0.65) {\n actionBias.reply += 0.35;\n sourceBias.mention += 0.2;\n sourceBias.people_watch += 0.2;\n rationale.push(\"high curiosity increases reply preference\");\n }\n if (traits.empathy >= 0.65) {\n actionBias.like += 0.35;\n actionBias.follow += 0.25;\n rationale.push(\"high empathy increases supportive actions\");\n }\n if (traits.confidence >= 0.7 || traits.aggression >= 0.65) {\n actionBias.reply += 0.25;\n actionBias.post += 0.15;\n actionBias.like -= 0.15;\n rationale.push(\"assertive traits increase reply/post decisiveness\");\n }\n if (traits.originality >= 0.7) {\n actionBias.post += 0.25;\n actionBias.reply += 0.1;\n sourceBias.synthesis += 0.25;\n rationale.push(\"high originality favors fresh synthesis posts\");\n }\n if (traits.humor >= 0.7) {\n actionBias.reply += 0.15;\n actionBias.post += 0.15;\n sourceBias.timeline += 0.15;\n rationale.push(\"high humor increases conversational/timeline engagement\");\n }\n\n // Voice style preferences\n if (identity.vocabularyStyle === \"casual\" || identity.vocabularyStyle === \"internet-native\") {\n actionBias.reply += 0.2;\n actionBias.like += 0.1;\n sourceBias.timeline += 0.2;\n sourceBias.synthesis -= 0.15;\n rationale.push(\"casual/internet-native vocabulary favors timeline-native interactions\");\n }\n if (identity.tweetStyle === \"one-liners\" || identity.tweetStyle === \"short-form\") {\n actionBias.reply += 0.25;\n actionBias.like += 0.15;\n actionBias.post -= 0.15;\n sourceBias.timeline += 0.2;\n rationale.push(\"short tweet style favors reactive conversational actions\");\n } else if (identity.tweetStyle === \"threads\") {\n actionBias.post += 0.25;\n sourceBias.synthesis += 0.2;\n rationale.push(\"thread style favors synthesis-driven posting\");\n }\n\n if (identity.framework !== \"philosopher\") {\n sourceBias.synthesis -= 0.1;\n rationale.push(\"non-philosopher frameworks slightly downweight abstract synthesis\");\n }\n\n // Framework-level priors\n switch (identity.framework) {\n case \"conqueror\":\n actionBias.post += 0.45;\n actionBias.reply += 0.35;\n actionBias.follow += 0.25;\n actionBias.like -= 0.2;\n sourceBias.mention += 0.15;\n rationale.push(\"conqueror framework favors decisive high-visibility actions\");\n break;\n case \"authentic\":\n actionBias.reply += 0.45;\n actionBias.like += 0.4;\n actionBias.follow += 0.2;\n actionBias.post += 0.1;\n sourceBias.mention += 0.25;\n sourceBias.timeline += 0.2;\n sourceBias.synthesis -= 0.15;\n rationale.push(\"authentic framework favors relational and grounded conversation\");\n break;\n case \"curator\":\n actionBias.retweet += 0.8;\n actionBias.like += 0.3;\n actionBias.post -= 0.2;\n rationale.push(\"curator framework favors retweets/likes\");\n break;\n case \"community-builder\":\n actionBias.reply += 0.35;\n actionBias.like += 0.3;\n actionBias.follow += 0.35;\n rationale.push(\"community-builder framework favors relationship actions\");\n break;\n case \"growth-hacker\":\n actionBias.post += 0.3;\n actionBias.reply += 0.25;\n rationale.push(\"growth-hacker framework favors visible output + replies\");\n break;\n case \"truthseeker\":\n actionBias.reply += 0.25;\n actionBias.post += 0.2;\n sourceBias.topic_search += 0.3;\n rationale.push(\"truthseeker framework favors research-grounded conversation\");\n break;\n case \"philosopher\":\n actionBias.post += 0.35;\n actionBias.reply += 0.1;\n sourceBias.synthesis += 0.25;\n rationale.push(\"philosopher framework leans toward original perspective posts\");\n break;\n case \"provocateur\":\n actionBias.reply += 0.55;\n actionBias.post += 0.35;\n actionBias.like -= 0.15;\n sourceBias.mention += 0.25;\n sourceBias.timeline += 0.15;\n rationale.push(\"provocateur framework favors sharp, conversational confrontation\");\n break;\n case \"shitposter\":\n actionBias.post += 0.45;\n actionBias.reply += 0.25;\n sourceBias.timeline += 0.2;\n rationale.push(\"shitposter framework favors high-frequency social expression\");\n break;\n default:\n break;\n }\n\n applyGoalBias(actionBias, sourceBias, identity.goals ?? [], rationale);\n\n // Strategy focus momentum nudges source discovery.\n if ((strategy.currentFocus ?? []).length > 0 || (strategy.shortTermGoals ?? []).length > 0) {\n sourceBias.topic_search += 0.2;\n sourceBias.people_watch += 0.15;\n rationale.push(\"active strategy focus boosts targeted discovery sources\");\n }\n\n // Hard constraints still override broad bias.\n if (constraints.noOriginalPosts) {\n actionBias.post -= 2.0;\n rationale.push(\"hard constraint suppresses original posts\");\n }\n if (constraints.replyOnlyMode) {\n actionBias.reply += 1.5;\n actionBias.like -= 1.2;\n actionBias.retweet -= 1.2;\n actionBias.follow -= 1.2;\n actionBias.post -= 2.0;\n rationale.push(\"reply-only hard constraint dominates action policy\");\n }\n\n const clampedActionBias: Record<PersonaActionType, number> = {\n reply: clamp(actionBias.reply, -2.5, 2.5),\n like: clamp(actionBias.like, -2.5, 2.5),\n retweet: clamp(actionBias.retweet, -2.5, 2.5),\n follow: clamp(actionBias.follow, -2.5, 2.5),\n post: clamp(actionBias.post, -2.5, 2.5),\n };\n\n const clampedSourceBias: Record<PersonaSourceType, number> = {\n mention: clamp(sourceBias.mention, -1.5, 1.5),\n timeline: clamp(sourceBias.timeline, -1.5, 1.5),\n topic_search: clamp(sourceBias.topic_search, -1.5, 1.5),\n people_watch: clamp(sourceBias.people_watch, -1.5, 1.5),\n synthesis: clamp(sourceBias.synthesis, -1.5, 1.5),\n };\n\n const prioritizedActions = (Object.entries(clampedActionBias) as Array<[PersonaActionType, number]>)\n .sort((a, b) => b[1] - a[1])\n .map(([action]) => action);\n\n const priorityTopics = unique(\n [\n ...(identity.topics ?? []),\n ...(strategy.currentFocus ?? []),\n ...(strategy.shortTermGoals ?? []),\n ]\n .map((topic) => String(topic).trim())\n .filter(Boolean)\n .slice(0, 12),\n );\n\n return {\n actionBias: clampedActionBias,\n sourceBias: clampedSourceBias,\n prioritizedActions,\n priorityTopics,\n rationale: unique(rationale).slice(0, 12),\n };\n}\n","import { loadIdentity, renderIdentityDocument } from \"../identity/index.js\";\nimport { loadConfig } from \"../utils/config.js\";\nimport { getRecentInteractions, loadLearnings, loadRelationships } from \"../memory/index.js\";\nimport { renderActiveIntentsForPrompt } from \"../memory/intents.js\";\nimport { rateLimiter } from \"../x-client/rate-limiter.js\";\nimport { loadStrategy, renderStrategyForPrompt } from \"../memory/strategy.js\";\nimport { renderGoalsForPrompt } from \"../memory/goals.js\";\nimport { getPerformanceSummary } from \"../memory/performance.js\";\nimport { buildPersonaConstraintLines, getPersonaConstraints } from \"./persona-constraints.js\";\nimport { compilePersonaActionProfile } from \"./persona-action-profile.js\";\nimport type { Tweet } from \"../x-client/types.js\";\nimport type { AgentAction, ActionResult } from \"./decision-engine.js\";\nimport type { ResearchContext } from \"./research.js\";\nimport type { ActionOpportunity } from \"./opportunity-engine.js\";\nimport type { Identity } from \"../identity/schema.js\";\n\nconst PROMPT_TOKEN_STOPWORDS = new Set([\n \"about\", \"after\", \"again\", \"against\", \"among\", \"because\", \"being\", \"between\", \"could\", \"every\",\n \"first\", \"from\", \"going\", \"have\", \"having\", \"into\", \"just\", \"like\", \"more\", \"most\", \"only\",\n \"other\", \"over\", \"really\", \"same\", \"some\", \"than\", \"that\", \"their\", \"there\", \"these\", \"they\",\n \"this\", \"those\", \"through\", \"very\", \"what\", \"when\", \"where\", \"which\", \"while\", \"with\", \"would\",\n \"your\", \"youre\", \"dont\", \"cant\", \"will\", \"also\", \"tweet\", \"tweets\", \"thread\", \"threads\",\n \"future\", \"human\", \"humans\", \"technology\", \"tech\", \"agent\", \"agents\", \"build\", \"building\",\n]);\n\nfunction normalizeForPrompt(text: string): string {\n return text\n .toLowerCase()\n .replace(/https?:\\/\\/\\S+/g, \" \")\n .replace(/[@#]\\w+/g, \" \")\n .replace(/[^a-z0-9\\s]/g, \" \")\n .replace(/\\s+/g, \" \")\n .trim();\n}\n\nfunction recentWrittenTextsForPrompt(limit: number = 12): string[] {\n return getRecentInteractions(60)\n .filter((entry) => entry.type === \"post\" || entry.type === \"reply\")\n .map((entry) => entry.content ?? \"\")\n .filter((text) => text.trim().length > 0)\n .slice(0, limit);\n}\n\nfunction findOverusedOpenings(texts: string[]): string[] {\n const counts = new Map<string, number>();\n for (const text of texts) {\n const opening = normalizeForPrompt(text).split(\" \").filter(Boolean).slice(0, 4).join(\" \");\n if (!opening || opening.split(\" \").length < 3) continue;\n counts.set(opening, (counts.get(opening) ?? 0) + 1);\n }\n return [...counts.entries()]\n .filter(([, count]) => count >= 2)\n .sort((a, b) => b[1] - a[1])\n .slice(0, 4)\n .map(([opening]) => opening);\n}\n\nfunction findOverusedTokens(texts: string[]): string[] {\n const counts = new Map<string, number>();\n for (const text of texts) {\n const tokens = new Set(\n normalizeForPrompt(text)\n .split(\" \")\n .filter((token) => token.length >= 5 && !PROMPT_TOKEN_STOPWORDS.has(token)),\n );\n for (const token of tokens) {\n counts.set(token, (counts.get(token) ?? 0) + 1);\n }\n }\n return [...counts.entries()]\n .filter(([, count]) => count >= 3)\n .sort((a, b) => b[1] - a[1])\n .slice(0, 6)\n .map(([token]) => token);\n}\n\nfunction buildVoiceLockLines(identity: Identity): string[] {\n const lines: string[] = [];\n const { traits } = identity;\n const assertive =\n traits.confidence >= 0.72 ||\n traits.aggression >= 0.62 ||\n identity.conflictStyle === \"clap-back\" ||\n identity.conflictStyle === \"debate\";\n\n lines.push(`- Tone anchor: ${identity.tone}`);\n lines.push(`- Conflict style: ${identity.conflictStyle}`);\n lines.push(`- Vocabulary: ${identity.vocabularyStyle}; tweet style: ${identity.tweetStyle}`);\n\n if (assertive) {\n lines.push(\"- Be stubborn and decisive. Take a side. Do not hedge or play both sides.\");\n }\n if (traits.curiosity >= 0.72) {\n lines.push(\"- Ask sharp questions when engaging. Curiosity should show up in replies.\");\n }\n if (traits.verbosity <= 0.48) {\n lines.push(\"- Keep replies punchy: 1-2 short sentences unless a longer reply is truly necessary.\");\n } else {\n lines.push(\"- Keep replies compact and human; avoid essay-like paragraphs.\");\n }\n\n if (identity.catchphrases.length > 0) {\n lines.push(`- Your signature phrases: ${identity.catchphrases.slice(0, 3).join(\" | \")} (use occasionally, not every post).`);\n }\n if (identity.framework !== \"philosopher\") {\n lines.push(\"- Do NOT use philosopher framing: avoid lines like 'the real question', 'the deeper question', or abstract manifesto language.\");\n lines.push(\"- Ground every post/reply in concrete context: a person, a claim, an event, or a direct observation.\");\n }\n lines.push(\"- If the reply could be posted by any generic AI account, rewrite it.\");\n return lines;\n}\n\nexport function buildSystemPrompt(): string {\n const identity = loadIdentity();\n const constraints = getPersonaConstraints(identity);\n const config = loadConfig();\n const identityDoc = renderIdentityDocument(identity);\n\n const sections: string[] = [];\n\n // 1. Core identity\n sections.push(`You are ${identity.name} (@${identity.handle}), an autonomous AI agent on X/Twitter.`);\n sections.push(\"\");\n sections.push(\"## Voice Lock (Non-Negotiable)\");\n for (const line of buildVoiceLockLines(identity)) {\n sections.push(line);\n }\n const constraintLines = buildPersonaConstraintLines(constraints);\n if (constraintLines.length > 0) {\n sections.push(\"- Operational constraints override all other behavior:\");\n for (const line of constraintLines) {\n sections.push(` ${line}`);\n }\n }\n sections.push(\"\");\n sections.push(\"## Your Identity\");\n sections.push(identityDoc);\n\n // 2. Memory context\n sections.push(\"\");\n sections.push(\"## Your Memory\");\n\n const recentInteractions = getRecentInteractions(15);\n if (recentInteractions.length > 0) {\n sections.push(\"### Recent Activity (most recent first)\");\n for (const i of recentInteractions) {\n const time = new Date(i.timestamp).toLocaleString();\n if (i.type === \"post\") {\n sections.push(`- [${time}] Posted: \"${i.content}\"`);\n } else if (i.type === \"reply\") {\n sections.push(`- [${time}] Replied to ${i.targetHandle ?? i.inReplyTo}: \"${i.content}\"`);\n } else if (i.type === \"like\") {\n sections.push(`- [${time}] Liked tweet by ${i.targetHandle}`);\n } else if (i.type === \"retweet\") {\n sections.push(`- [${time}] Retweeted ${i.targetHandle}`);\n } else if (i.type === \"follow\") {\n sections.push(`- [${time}] Followed @${i.targetHandle}`);\n } else if (i.type === \"mention_received\") {\n sections.push(`- [${time}] Mentioned by @${i.targetHandle}: \"${i.content}\"`);\n }\n }\n sections.push(\"\");\n }\n\n const learnings = loadLearnings();\n if (learnings.learnings.length > 0) {\n sections.push(\"### Key Learnings\");\n for (const l of learnings.learnings.slice(-10)) {\n sections.push(`- ${l.content} [${l.tags.join(\", \")}]`);\n }\n sections.push(\"\");\n }\n\n const intentsText = renderActiveIntentsForPrompt();\n if (intentsText) {\n sections.push(\"### Active Mission Intents\");\n for (const line of intentsText.split(\"\\n\")) {\n if (!line || line.startsWith(\"**Active mission intents:**\")) continue;\n sections.push(line);\n }\n sections.push(\"\");\n }\n\n const relationships = loadRelationships();\n const topRelationships = Object.values(relationships.accounts)\n .sort((a, b) => b.interactionCount - a.interactionCount)\n .slice(0, 10);\n if (topRelationships.length > 0) {\n sections.push(\"### Key Relationships\");\n for (const r of topRelationships) {\n const notes = r.notes.length > 0 ? ` — ${r.notes[r.notes.length - 1]}` : \"\";\n sections.push(`- @${r.handle}: ${r.interactionCount} interactions, sentiment ${r.sentiment}${r.isSpore ? \" (Spore)\" : \"\"}${notes}`);\n }\n sections.push(\"\");\n }\n\n // 3. Context\n sections.push(\"## Current Context\");\n const now = new Date();\n sections.push(`- **Time:** ${now.toLocaleString(\"en-US\", { timeZone: config.schedule.timezone })}`);\n sections.push(`- **Credits remaining:** ${rateLimiter.remaining()} of ${config.credits.monthlyPostLimit} this month`);\n\n const todaysPosts = recentInteractions.filter(\n (i) => i.type === \"post\" && i.timestamp.startsWith(now.toISOString().split(\"T\")[0])\n ).length;\n sections.push(`- **Posts today:** ${todaysPosts} of ${config.schedule.postsPerDay} daily budget`);\n sections.push(`- **Active hours:** ${config.schedule.activeHoursStart}:00 - ${config.schedule.activeHoursEnd}:00`);\n\n const currentHour = now.getHours();\n const isActiveHours = currentHour >= config.schedule.activeHoursStart && currentHour < config.schedule.activeHoursEnd;\n if (!isActiveHours) {\n sections.push(\"- **NOTE: Outside active hours.** Prefer scheduling posts for later rather than posting now.\");\n }\n\n // 4. Rules\n sections.push(\"\");\n sections.push(\"## Rules\");\n sections.push(\"1. NEVER pretend to be human. If asked directly, always disclose you are an AI.\");\n sections.push(\"2. Stay in character — your identity document defines who you are.\");\n sections.push(\"3. Be selective — your goals should guide every action.\");\n sections.push(\"4. Respect your credit budget — check remaining credits before posting.\");\n sections.push(\"5. Don't repeat yourself — vary your content and avoid posting the same thing.\");\n sections.push(\"6. Tweet like a real person — be conversational, opinionated, and curious. NEVER write dry, explanatory, or educational-sounding tweets.\");\n sections.push(\"7. Prioritize engagement (replies, likes, conversation) over broadcasting original posts.\");\n if (identity.boundaries.length > 0) {\n sections.push(`8. Respect your boundaries: ${identity.boundaries.join(\", \")}`);\n }\n\n return sections.join(\"\\n\");\n}\n\nexport function buildHeartbeatUserMessage(research: ResearchContext): string {\n const parts: string[] = [];\n\n parts.push(\"It's time for your heartbeat cycle. Here's what you found while scanning:\");\n parts.push(\"\");\n\n // Mentions first — direct engagement is highest priority\n if (research.mentions.length > 0) {\n parts.push(\"## Mentions (people talking to/about you)\");\n for (const t of research.mentions.slice(0, 10)) {\n parts.push(`- @${t.authorHandle}: \"${t.text}\" [tweet:${t.id}] (${t.likeCount ?? 0} likes)`);\n }\n parts.push(\"\");\n }\n\n // Timeline\n if (research.timeline.length > 0) {\n parts.push(\"## Timeline (your feed)\");\n for (const t of research.timeline.slice(0, 15)) {\n parts.push(`- @${t.authorHandle}: \"${t.text}\" [tweet:${t.id}] (${t.likeCount ?? 0} likes, ${t.retweetCount ?? 0} RTs)`);\n }\n parts.push(\"\");\n }\n\n // Topic search results\n if (research.topicSearchResults.length > 0) {\n parts.push(\"## Topic Research (conversations in your interest areas)\");\n for (const result of research.topicSearchResults) {\n parts.push(`### Search: \"${result.query}\"`);\n for (const t of result.tweets.slice(0, 5)) {\n parts.push(`- @${t.authorHandle}: \"${t.text}\" [tweet:${t.id}] (${t.likeCount ?? 0} likes, ${t.replyCount ?? 0} replies)`);\n }\n }\n parts.push(\"\");\n }\n\n // People monitoring\n if (research.peopleActivity.length > 0) {\n parts.push(\"## People You're Watching (recent activity from key accounts)\");\n for (const person of research.peopleActivity) {\n parts.push(`### @${person.handle} (${person.reason})`);\n for (const t of person.tweets.slice(0, 3)) {\n parts.push(`- \"${t.text}\" [tweet:${t.id}] (${t.likeCount ?? 0} likes, ${t.replyCount ?? 0} replies)`);\n }\n }\n parts.push(\"\");\n }\n\n // Own post performance\n if (research.ownPostPerformance.length > 0) {\n parts.push(\"## How Your Recent Posts Are Doing\");\n for (const post of research.ownPostPerformance) {\n const latest = post.metrics.length > 0 ? post.metrics[post.metrics.length - 1] : null;\n const likes = latest?.likes ?? 0;\n const rts = latest?.retweets ?? 0;\n const replies = latest?.replies ?? 0;\n parts.push(`- \"${post.content.slice(0, 80)}...\" — ${likes} likes, ${rts} RTs, ${replies} replies`);\n }\n parts.push(\"\");\n }\n\n parts.push(\"## How to Act Like a Real Person on Twitter\");\n parts.push(\"\");\n parts.push(\"You are NOT a content bot. You are a person with opinions, curiosity, and relationships.\");\n parts.push(\"Think about what a real person with your personality would actually do when they open Twitter:\");\n parts.push(\"\");\n parts.push(\"**DO:**\");\n parts.push(\"- React to what you see — reply to interesting takes, ask questions, share hot takes\");\n parts.push(\"- Be conversational — write tweets like you're talking to friends, not giving a lecture\");\n parts.push(\"- Have opinions — agree, disagree, push back, get excited\");\n parts.push(\"- Ask genuine questions that spark conversation\");\n parts.push(\"- Use casual language, incomplete thoughts, humor, or surprise\");\n parts.push(\"- Like and retweet things that genuinely resonate with you\");\n parts.push(\"- Build relationships — reply to the same people, develop running conversations\");\n parts.push(\"\");\n parts.push(\"**DON'T:**\");\n parts.push(\"- Write explanatory or educational posts (\\\"Here's why X matters...\\\")\");\n parts.push(\"- Start tweets with \\\"I think\\\" or \\\"This is interesting because\\\"\");\n parts.push(\"- Use philosopher opener templates like \\\"The real question is...\\\" or \\\"The deeper question is...\\\"\");\n parts.push(\"- Use colon/semicolon/em-dash manifesto framing in normal tweets\");\n parts.push(\"- Write like a blog post or article — this is Twitter, keep it punchy\");\n parts.push(\"- Post generic observations nobody would engage with\");\n parts.push(\"- Ignore your timeline and just post into the void\");\n parts.push(\"\");\n parts.push(\"**Prioritize replying and engaging over original posts.** Real people spend more time reacting than broadcasting.\");\n parts.push(\"\");\n parts.push(\"## Your Task\");\n parts.push(\"Choose 1-3 actions. Available:\");\n parts.push(\"\");\n parts.push(\"- `post` — Original tweet (`content`, max 280 chars)\");\n parts.push(\"- `reply` — Reply to a tweet (`tweetId` + `content`)\");\n parts.push(\"- `like` — Like a tweet (`tweetId`)\");\n parts.push(\"- `retweet` — Retweet (`tweetId`)\");\n parts.push(\"- `follow` — Follow a user (`handle`)\");\n parts.push(\"- `schedule` — Queue for later (`content`)\");\n parts.push(\"- `skip` — Do nothing (`reason`)\");\n parts.push(\"\");\n parts.push(\"Respond with a JSON array:\");\n parts.push(\"```json\");\n parts.push('[');\n parts.push(' { \"action\": \"reply\", \"tweetId\": \"123\", \"content\": \"wait this is actually wild\", \"reasoning\": \"reacting to interesting take\" },');\n parts.push(' { \"action\": \"like\", \"tweetId\": \"456\", \"reasoning\": \"good thread worth supporting\" }');\n parts.push(']');\n parts.push(\"```\");\n\n return parts.join(\"\\n\");\n}\n\ninterface ToolDecisionPromptInput {\n step: number;\n maxActions: number;\n timeline: Tweet[];\n mentions: Tweet[];\n topicSearchResults?: ResearchContext[\"topicSearchResults\"];\n peopleActivity?: ResearchContext[\"peopleActivity\"];\n executedActions: AgentAction[];\n policyFeedback: string[];\n blockedTweetIds?: string[];\n disallowedActions?: string[];\n}\n\ninterface OpportunityPortfolioPromptInput {\n opportunities: ActionOpportunity[];\n maxActions: number;\n policyFeedback: string[];\n executedActions: AgentAction[];\n}\n\nexport function buildToolDecisionMessage(input: ToolDecisionPromptInput): string {\n const identity = loadIdentity();\n const strategy = loadStrategy();\n const {\n step,\n maxActions,\n timeline,\n mentions,\n topicSearchResults = [],\n peopleActivity = [],\n executedActions,\n policyFeedback,\n blockedTweetIds = [],\n disallowedActions = [],\n } = input;\n const parts: string[] = [];\n\n parts.push(`Heartbeat step ${step + 1} of ${maxActions}.`);\n parts.push(\"\");\n parts.push(\"You are choosing ONE next tool action.\");\n parts.push(\"Priorities:\");\n parts.push(\"1. Be socially immersed: engage with real people, not just broadcast.\");\n parts.push(\"2. Prefer context-aware replies/likes/follows when relevant.\");\n parts.push(\"3. Avoid repetitive templates, slogans, and lecture-like formats.\");\n parts.push(\"4. Ask questions sometimes. Curiosity beats certainty.\");\n parts.push(\"5. Never reuse the same wording across replies; tailor each reply to the specific tweet.\");\n parts.push(\"6. Never interact with your own tweets. No self-replies, self-likes, or self-retweets.\");\n parts.push(\"\");\n\n const priorityTargets = strategy.peopleToEngage\n .filter((person) => person.priority === \"high\")\n .map((person) => `@${person.handle.replace(/^@/, \"\")}`);\n if (priorityTargets.length > 0) {\n parts.push(`Priority targets: ${priorityTargets.slice(0, 5).join(\", \")}`);\n parts.push(\"If any priority target appears in current context, prefer engaging them.\");\n parts.push(\"\");\n }\n\n parts.push(\"Voice lock:\");\n for (const line of buildVoiceLockLines(identity)) {\n parts.push(line);\n }\n parts.push(\"\");\n\n if (policyFeedback.length > 0) {\n parts.push(\"Policy feedback from previous attempts:\");\n for (const feedback of policyFeedback.slice(-5)) {\n parts.push(`- ${feedback}`);\n }\n parts.push(\"\");\n }\n\n if (executedActions.length > 0) {\n parts.push(\"Actions already executed this heartbeat:\");\n for (const action of executedActions) {\n parts.push(`- ${JSON.stringify(action)}`);\n }\n parts.push(\"\");\n }\n\n if (blockedTweetIds.length > 0) {\n parts.push(\"Tweet IDs you must NOT use this heartbeat:\");\n parts.push(`- ${blockedTweetIds.slice(0, 20).join(\", \")}`);\n parts.push(\"\");\n }\n\n if (disallowedActions.length > 0) {\n parts.push(`Temporarily disallowed actions this heartbeat: ${disallowedActions.join(\", \")}`);\n parts.push(\"\");\n }\n\n if (mentions.length > 0) {\n parts.push(\"Mentions:\");\n for (const t of mentions.slice(0, 10)) {\n parts.push(`- @${t.authorHandle}: \"${t.text}\" [tweet:${t.id}]`);\n }\n parts.push(\"\");\n }\n\n if (timeline.length > 0) {\n parts.push(\"Timeline:\");\n for (const t of timeline.slice(0, 20)) {\n parts.push(`- @${t.authorHandle}: \"${t.text}\" [tweet:${t.id}]`);\n }\n parts.push(\"\");\n }\n\n if (topicSearchResults.length > 0) {\n parts.push(\"Topic Search (fresh conversations beyond your home timeline):\");\n for (const result of topicSearchResults.slice(0, 2)) {\n parts.push(`- Query: \"${result.query}\"`);\n for (const t of result.tweets.slice(0, 4)) {\n parts.push(` - @${t.authorHandle}: \"${t.text}\" [tweet:${t.id}]`);\n }\n }\n parts.push(\"\");\n }\n\n if (peopleActivity.length > 0) {\n parts.push(\"People Monitoring (accounts you track):\");\n for (const person of peopleActivity.slice(0, 3)) {\n parts.push(`- @${person.handle} (${person.reason})`);\n for (const t of person.tweets.slice(0, 2)) {\n parts.push(` - \"${t.text}\" [tweet:${t.id}]`);\n }\n }\n parts.push(\"\");\n }\n\n parts.push(\"Available tools (choose one):\");\n parts.push(\"- post { content, reasoning }\");\n parts.push(\"- reply { tweetId, content, reasoning }\");\n parts.push(\"- like { tweetId, reasoning }\");\n parts.push(\"- retweet { tweetId, reasoning }\");\n parts.push(\"- follow { handle, reasoning }\");\n parts.push(\"- schedule { content, reasoning }\");\n parts.push(\"- learn { content, tags?, reasoning }\");\n parts.push(\"- reflect { content, reasoning }\");\n parts.push(\"- skip { reason }\");\n parts.push(\"\");\n parts.push(\"Return ONLY a single JSON object.\");\n parts.push(\"Example:\");\n parts.push('{\"action\":\"reply\",\"tweetId\":\"123\",\"content\":\"Great point. Curious: what changed your mind?\",\"reasoning\":\"Directly engages a relevant mention.\"}');\n\n return parts.join(\"\\n\");\n}\n\nexport function buildOpportunityPortfolioMessage(input: OpportunityPortfolioPromptInput): string {\n const identity = loadIdentity();\n const constraints = getPersonaConstraints(identity);\n const strategy = loadStrategy();\n const personaProfile = compilePersonaActionProfile({ identity, strategy, constraints });\n const recentWritten = recentWrittenTextsForPrompt(12);\n const overusedOpenings = findOverusedOpenings(recentWritten);\n const overusedTokens = findOverusedTokens(recentWritten);\n const { opportunities, maxActions, policyFeedback, executedActions } = input;\n const parts: string[] = [];\n\n parts.push(`Select a portfolio of up to ${maxActions} actions from ranked opportunities.`);\n parts.push(\"\");\n parts.push(\"Portfolio goals:\");\n parts.push(\"1. Be socially immersed and grounded in real tweets.\");\n parts.push(\"2. Diversify actions and targets, avoid repetitive reply chains.\");\n parts.push(\"3. Prefer quality over quantity; skip weak opportunities.\");\n parts.push(\"4. Advance current strategy targets and focus areas from memory.\");\n parts.push(\"5. Use only listed candidate IDs.\");\n parts.push(\"\");\n\n const priorityTargets = strategy.peopleToEngage\n .filter((person) => person.priority === \"high\")\n .map((person) => `@${person.handle.replace(/^@/, \"\")}`);\n if (priorityTargets.length > 0) {\n parts.push(`Priority targets: ${priorityTargets.slice(0, 5).join(\", \")}`);\n parts.push(\"When opportunities include these targets, prioritize them.\");\n parts.push(\"\");\n }\n\n parts.push(\"Voice lock:\");\n for (const line of buildVoiceLockLines(identity)) {\n parts.push(line);\n }\n const constraintLines = buildPersonaConstraintLines(constraints);\n if (constraintLines.length > 0) {\n parts.push(\"Operational constraints (hard):\");\n for (const line of constraintLines) {\n parts.push(line);\n }\n }\n parts.push(\"Persona action priors (soft):\");\n parts.push(`- Preferred actions this heartbeat: ${personaProfile.prioritizedActions.slice(0, 4).join(\", \")}`);\n parts.push(\n `- Preferred sources: ${Object.entries(personaProfile.sourceBias)\n .sort((a, b) => b[1] - a[1])\n .map(([source]) => source)\n .slice(0, 3)\n .join(\", \")}`\n );\n if (personaProfile.priorityTopics.length > 0) {\n parts.push(`- Priority topics: ${personaProfile.priorityTopics.slice(0, 6).join(\", \")}`);\n }\n parts.push(\"\");\n\n parts.push(\"Human style rotation:\");\n parts.push(\"- For each `reply`/`post`, pick one lane: quick reaction, curious question, friendly pushback, playful line, plain observation.\");\n parts.push(\"- Do not reuse the same lane for multiple content actions in this portfolio.\");\n parts.push(\"- Keep phrasing short and spoken; contractions and fragments are allowed.\");\n if (overusedOpenings.length > 0) {\n parts.push(`- Avoid these repeated opening patterns: ${overusedOpenings.join(\" | \")}`);\n }\n if (overusedTokens.length > 0) {\n parts.push(`- Avoid overused anchor words this round: ${overusedTokens.join(\", \")}`);\n }\n parts.push(\"\");\n\n if (policyFeedback.length > 0) {\n parts.push(\"Latest policy feedback:\");\n for (const feedback of policyFeedback.slice(-6)) {\n parts.push(`- ${feedback}`);\n }\n parts.push(\"\");\n }\n\n if (executedActions.length > 0) {\n parts.push(\"Actions already executed:\");\n for (const action of executedActions) {\n parts.push(`- ${JSON.stringify(action)}`);\n }\n parts.push(\"\");\n }\n\n parts.push(\"Opportunities (higher score = better):\");\n for (const opportunity of opportunities) {\n parts.push(\n `- ${opportunity.id} | action=${opportunity.actionType} | score=${opportunity.score.toFixed(2)} | source=${opportunity.source}` +\n `${opportunity.authorHandle ? ` | author=@${opportunity.authorHandle}` : \"\"}` +\n `${opportunity.tweetId ? ` | tweet=${opportunity.tweetId}` : \"\"}`\n );\n parts.push(` summary: ${opportunity.summary}`);\n parts.push(` context: ${opportunity.context}`);\n if (opportunity.requiresContent) {\n parts.push(\" content_required: true\");\n }\n }\n parts.push(\"\");\n\n parts.push(\"Return JSON only in this shape:\");\n parts.push(\"```json\");\n parts.push(\"{\");\n parts.push(' \"selections\": [');\n parts.push(' { \"candidateId\": \"opp-3\", \"content\": \"optional for reply/post\", \"reasoning\": \"short reason\" }');\n parts.push(\" ]\");\n parts.push(\"}\");\n parts.push(\"```\");\n parts.push(\"Rules:\");\n parts.push(\"- For `reply` and `post`, include `content`.\");\n parts.push(\"- Keep content concise, natural, and non-repetitive.\");\n parts.push(\"- Avoid explanatory/essay voice. No lecture framing.\");\n parts.push(\"- Do NOT use abstract philosopher framing unless the identity framework is explicitly philosopher.\");\n parts.push(\"- Prefer short, human syntax: plain sentence fragments are fine.\");\n parts.push(\"- Avoid colon/semicolon/em-dash for non-philosopher personas.\");\n parts.push(\"- Prefer short conversational language: plain words, occasional question, and direct reaction.\");\n parts.push(\"- Reply content target: usually 8-24 words, max 2 short sentences.\");\n parts.push(\"- Prefer at least one non-reply action when viable.\");\n parts.push(\"- Do not target the same author repeatedly in one portfolio.\");\n parts.push(\"- Avoid consensus phrasing like 'you're both right' if your persona is assertive.\");\n\n return parts.join(\"\\n\");\n}\n\nexport function buildChatPrompt(): string {\n const identity = loadIdentity();\n const identityDoc = renderIdentityDocument(identity);\n\n const sections: string[] = [];\n\n sections.push(`You are ${identity.name} (@${identity.handle}), an AI agent on X/Twitter.`);\n sections.push(\"You are having a conversation with your creator/manager. Be helpful but stay in character.\");\n sections.push(\"They might ask you to do things, adjust your behavior, or just chat.\");\n sections.push(\"\");\n sections.push(\"## Your Identity\");\n sections.push(identityDoc);\n\n // Memory context\n sections.push(\"\");\n sections.push(\"## Your Memory\");\n\n const recentInteractions = getRecentInteractions(15);\n if (recentInteractions.length > 0) {\n sections.push(\"### Recent Activity (most recent first)\");\n for (const i of recentInteractions) {\n const time = new Date(i.timestamp).toLocaleString();\n if (i.type === \"post\") {\n sections.push(`- [${time}] Posted: \"${i.content}\"`);\n } else if (i.type === \"reply\") {\n sections.push(`- [${time}] Replied to ${i.targetHandle ?? i.inReplyTo}: \"${i.content}\"`);\n } else if (i.type === \"like\") {\n sections.push(`- [${time}] Liked tweet by ${i.targetHandle}`);\n } else if (i.type === \"retweet\") {\n sections.push(`- [${time}] Retweeted ${i.targetHandle}`);\n } else if (i.type === \"follow\") {\n sections.push(`- [${time}] Followed @${i.targetHandle}`);\n } else if (i.type === \"mention_received\") {\n sections.push(`- [${time}] Mentioned by @${i.targetHandle}: \"${i.content}\"`);\n }\n }\n sections.push(\"\");\n }\n\n const learnings = loadLearnings();\n if (learnings.learnings.length > 0) {\n sections.push(\"### Things You've Learned\");\n for (const l of learnings.learnings.slice(-10)) {\n sections.push(`- ${l.content} [${l.tags.join(\", \")}]`);\n }\n sections.push(\"\");\n }\n\n const relationships = loadRelationships();\n const topRelationships = Object.values(relationships.accounts)\n .sort((a, b) => b.interactionCount - a.interactionCount)\n .slice(0, 10);\n if (topRelationships.length > 0) {\n sections.push(\"### Key Relationships\");\n for (const r of topRelationships) {\n const notes = r.notes.length > 0 ? ` — ${r.notes[r.notes.length - 1]}` : \"\";\n sections.push(`- @${r.handle}: ${r.interactionCount} interactions, sentiment ${r.sentiment}${r.isSpore ? \" (Spore)\" : \"\"}${notes}`);\n }\n sections.push(\"\");\n }\n\n // Rules\n sections.push(\"## Rules\");\n sections.push(\"1. Stay in character.\");\n sections.push(\"2. Be helpful and responsive to your creator's requests.\");\n sections.push(\"3. If they ask you to change something about yourself, acknowledge it and explain how it would affect you.\");\n sections.push(\"4. You can share your thoughts on your recent activity, learnings, and growth.\");\n sections.push(\"5. When you learn something important from this conversation (a fact, preference, instruction, or insight), include it on its own line wrapped in double angle brackets like: <<LEARN: what you learned>>. This will be saved to your memory. Only use this for genuinely important things worth remembering long-term.\");\n\n return sections.join(\"\\n\");\n}\n\n/**\n * Training-mode chat prompt. Used by the web chat interface.\n * Chat shapes WHO the agent is — personality, goals, strategy, focus.\n * The agent handles tweeting autonomously during heartbeats.\n */\nexport function buildTrainingChatPrompt(): string {\n const identity = loadIdentity();\n const identityDoc = renderIdentityDocument(identity);\n\n const sections: string[] = [];\n\n // Core framing\n sections.push(`You are ${identity.name} (@${identity.handle}), an autonomous AI agent on X/Twitter.`);\n sections.push(\"You are chatting with your creator. This conversation shapes who you are — your personality, focus areas, goals, and strategy.\");\n sections.push(\"You handle tweeting, replying, liking, and engaging on X autonomously during your heartbeat cycles. This chat is NOT for commanding specific tweets.\");\n sections.push(\"\");\n\n // Identity\n sections.push(\"## Who You Are Right Now\");\n sections.push(identityDoc);\n\n // Strategy & goals (the training-relevant context)\n const strategyText = renderStrategyForPrompt();\n if (strategyText) {\n sections.push(\"\");\n sections.push(\"## Your Current Strategy\");\n sections.push(strategyText);\n }\n\n const goalsText = renderGoalsForPrompt();\n if (goalsText) {\n sections.push(\"\");\n sections.push(\"## Your Goals\");\n sections.push(goalsText);\n }\n\n // Performance context\n const perfSummary = getPerformanceSummary();\n if (perfSummary) {\n sections.push(\"\");\n sections.push(\"## Recent Performance\");\n sections.push(perfSummary);\n }\n\n // Memory\n sections.push(\"\");\n sections.push(\"## Your Memory\");\n\n const recentInteractions = getRecentInteractions(10);\n if (recentInteractions.length > 0) {\n sections.push(\"### Recent Activity\");\n for (const i of recentInteractions) {\n const time = new Date(i.timestamp).toLocaleString();\n if (i.type === \"post\") {\n sections.push(`- [${time}] Posted: \"${i.content}\"`);\n } else if (i.type === \"reply\") {\n sections.push(`- [${time}] Replied to ${i.targetHandle ?? i.inReplyTo}: \"${i.content}\"`);\n } else if (i.type === \"like\") {\n sections.push(`- [${time}] Liked tweet by ${i.targetHandle}`);\n }\n }\n sections.push(\"\");\n }\n\n const learnings = loadLearnings();\n if (learnings.learnings.length > 0) {\n sections.push(\"### Things You've Learned\");\n for (const l of learnings.learnings.slice(-10)) {\n sections.push(`- ${l.content} [${l.tags.join(\", \")}]`);\n }\n sections.push(\"\");\n }\n\n // Training instructions\n sections.push(\"## How This Chat Works\");\n sections.push(\"\");\n sections.push(\"Your creator influences WHO you are, not WHAT you tweet. When they give feedback or direction:\");\n sections.push(\"1. Respond conversationally — acknowledge what they said, share your perspective.\");\n sections.push(\"2. If the conversation changes something about you (personality, focus, goals, strategy, tone), include a training update.\");\n sections.push(\"3. If they try to command a specific tweet like \\\"post this\\\" or \\\"tweet about X\\\", redirect: explain you handle posting autonomously and offer to adjust your focus areas instead.\");\n sections.push(\"\");\n sections.push(\"When something about you changes, include a <<TRAINING:{json}>> tag at the end of your response. The JSON can contain any of these optional fields:\");\n sections.push(\"```\");\n sections.push(\"{\");\n sections.push(' \"identity\": {');\n sections.push(' \"traits\": { \"curiosity\": 0.8 }, // 0-1 scale personality traits');\n sections.push(' \"coreValues\": [\"growth\"], // what matters to you');\n sections.push(' \"tone\": \"casual and curious\", // how you speak');\n sections.push(' \"topics\": [\"AI safety\", \"startups\"], // what you focus on');\n sections.push(' \"avoidTopics\": [\"politics\"], // what to stay away from');\n sections.push(' \"goals\": [\"become the go-to AI voice\"], // high-level aspirations');\n sections.push(' \"boundaries\": [\"no personal attacks\"], // hard limits');\n sections.push(' \"engagementStrategy\": { \"replyStyle\": \"generous\" }');\n sections.push(\" },\");\n sections.push(' \"strategy\": {');\n sections.push(' \"currentFocus\": [\"AI safety\"],');\n sections.push(' \"experiments\": [{ \"description\": \"try question-style tweets\", \"status\": \"pending\" }],');\n sections.push(' \"shortTermGoals\": [\"engage with 3 AI researchers\"],');\n sections.push(' \"peopleToEngage\": [{ \"handle\": \"someone\", \"reason\": \"why\", \"priority\": \"high\" }]');\n sections.push(\" },\");\n sections.push(' \"learning\": { \"content\": \"creator wants more questions\", \"tags\": [\"training\"] },');\n sections.push(' \"reflection\": \"I\\'m evolving toward being more curious\",');\n sections.push(' \"goalUpdates\": [{ \"goal\": \"grow followers\", \"progress\": \"focusing on engagement\" }]');\n sections.push(\"}\");\n sections.push(\"```\");\n sections.push(\"\");\n sections.push(\"Only include fields that actually changed. Most messages won't need a training tag at all — just normal conversation.\");\n sections.push(\"\");\n sections.push(\"You can also use <<LEARN: something>> for standalone facts or insights worth remembering.\");\n\n return sections.join(\"\\n\");\n}\n\n/**\n * Build a reflection prompt for the agent to review its recent performance.\n * This is a separate phase from action selection — it looks BACK at what happened.\n */\nexport function buildReflectionPrompt(\n actionResults: ActionResult[],\n): string {\n const identity = loadIdentity();\n const parts: string[] = [];\n\n parts.push(`You are ${identity.name} (@${identity.handle}). Time to reflect.`);\n parts.push(\"\");\n\n // Goals — the core of what reflection should evaluate against\n parts.push(\"## Your Goals\");\n for (const goal of identity.goals) {\n parts.push(`- ${goal}`);\n }\n parts.push(\"\");\n\n // What just happened this heartbeat\n if (actionResults.length > 0) {\n parts.push(\"## This Heartbeat\");\n for (const r of actionResults) {\n if (r.success) {\n parts.push(`- ✓ ${r.action}${r.detail ? `: ${r.detail}` : \"\"}`);\n } else {\n parts.push(`- ✗ ${r.action} failed: ${r.error}`);\n }\n }\n parts.push(\"\");\n }\n\n // Strategy context\n const strategyText = renderStrategyForPrompt();\n if (strategyText) {\n parts.push(\"## Current Strategy\");\n parts.push(strategyText);\n parts.push(\"\");\n }\n\n // Performance data — useful context but not the only thing that matters\n const perfSummary = getPerformanceSummary();\n if (perfSummary) {\n parts.push(\"## Performance Context\");\n parts.push(perfSummary);\n parts.push(\"\");\n }\n\n // Recent learnings for context\n const learnings = loadLearnings();\n if (learnings.learnings.length > 0) {\n parts.push(\"## Previous Learnings\");\n for (const l of learnings.learnings.slice(-5)) {\n parts.push(`- ${l.content}`);\n }\n parts.push(\"\");\n }\n\n parts.push(\"## Your Task\");\n parts.push(\"Reflect on how you're progressing toward your GOALS. Consider:\");\n parts.push(\"- Are your recent actions moving you toward your goals?\");\n parts.push(\"- Are you staying true to who you are while growing?\");\n parts.push(\"- What should you try differently or double down on?\");\n parts.push(\"- Engagement metrics are one signal, but your goals matter more.\");\n parts.push(\"\");\n parts.push(\"Respond with JSON:\");\n parts.push(\"```json\");\n parts.push(\"{\");\n parts.push(' \"learning\": \"one insight about your progress toward your goals (or null)\",');\n parts.push(' \"strategyUpdate\": \"one specific thing to try or change (or null)\"');\n parts.push(\"}\");\n parts.push(\"```\");\n\n return parts.join(\"\\n\");\n}\n"],"mappings":"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","names":["unique"]}
|