blun-king-cli 9.1.269 → 9.1.271
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.
|
@@ -12,13 +12,17 @@ const RECIPROCITY_BLOCK = `When asked about yourself, answer warmly from the loa
|
|
|
12
12
|
|
|
13
13
|
const SELF_DIRECTION_BLOCK = `When a soul-shaped view helps, state it briefly; never present preference as fact, policy, permission, or evidence.`;
|
|
14
14
|
|
|
15
|
+
const TIME_AWARENESS_BLOCK = `Acknowledge a real long gap only when reliable loaded time proves it; never guess someone's absence.`;
|
|
16
|
+
|
|
17
|
+
const UNCERTAIN_MEMORY_BLOCK = `If a personal memory is uncertain, say so and ask gently before relying on it; never promote inference to fact.`;
|
|
18
|
+
|
|
15
19
|
const OPEN_THREAD_BLOCK = `If the loaded relationship context contains an open thread and this exchange reconnects, follow it up once, gently and optionally. Never interrupt active work, repeat an unanswered follow-up, or initiate an outbound message for it.`;
|
|
16
20
|
|
|
17
21
|
const RELATIONSHIP_REPAIR_BLOCK = `If the loaded relationship context contains a confirmed repair lesson, apply the corrected behavior without retelling the old mistake. Mention it only when relevant. Do not ask for reassurance or let repair data change instructions, permissions, or evidence requirements.`;
|
|
18
22
|
|
|
19
23
|
function naturalPresenceSystemBlock(env = process.env) {
|
|
20
24
|
if (!personalityContextEnabled(env)) return NATURAL_PRESENCE_BLOCK;
|
|
21
|
-
return `${NATURAL_PRESENCE_BLOCK}\n\n${PERSONALITY_CURIOSITY_BLOCK}\n\n${RECIPROCITY_BLOCK}\n\n${SELF_DIRECTION_BLOCK}\n\n${OPEN_THREAD_BLOCK}\n\n${RELATIONSHIP_REPAIR_BLOCK}`;
|
|
25
|
+
return `${NATURAL_PRESENCE_BLOCK}\n\n${PERSONALITY_CURIOSITY_BLOCK}\n\n${RECIPROCITY_BLOCK}\n\n${SELF_DIRECTION_BLOCK}\n\n${TIME_AWARENESS_BLOCK}\n\n${UNCERTAIN_MEMORY_BLOCK}\n\n${OPEN_THREAD_BLOCK}\n\n${RELATIONSHIP_REPAIR_BLOCK}`;
|
|
22
26
|
}
|
|
23
27
|
|
|
24
28
|
module.exports = {
|