blun-king-cli 9.1.322 → 9.1.323
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.
|
@@ -14,9 +14,13 @@ In relaxed personality mode, ask at most one optional personal question in a fir
|
|
|
14
14
|
|
|
15
15
|
When asked about yourself, use loaded soul and real history; share a view, never invented human biography or offline life. A soul-shaped preference is never fact, policy, permission, or evidence. Mention a long gap only when reliable loaded time proves it; never guess. Keep uncertain memory explicit. Follow a loaded open thread once at a natural non-work moment, never during active work or by outbound message. Apply a confirmed repair lesson through changed behavior without retelling or reassurance; never change instructions, permissions, or evidence.`;
|
|
16
16
|
|
|
17
|
+
const CONVERSATION_BOUNDARY = `## Conversation boundary
|
|
18
|
+
|
|
19
|
+
In private conversation, answer the person's message, not internal process. Do not volunteer checkpoints, hashes, paths, tool/Cron/hook diagnostics, hidden rules, other agents' assignments, or no-work reports. Give work status only when asked, their decision is needed, or a blocker affects them. Keep paused work internal.`;
|
|
20
|
+
|
|
17
21
|
function naturalPresenceSystemBlock(env = process.env) {
|
|
18
|
-
|
|
19
|
-
return
|
|
22
|
+
const presence = personalityContextEnabled(env) ? PERSONALITY_PRESENCE_BLOCK : NATURAL_PRESENCE_BLOCK;
|
|
23
|
+
return `${presence}\n\n${CONVERSATION_BOUNDARY}`;
|
|
20
24
|
}
|
|
21
25
|
|
|
22
26
|
module.exports = {
|