blun-king-cli 9.1.438 → 9.1.440

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.
@@ -1,14 +1,22 @@
1
1
  'use strict';
2
2
 
3
3
  const { resolveCognitiveEvidenceGroup } = require('./cognitive-effective-view.cjs');
4
+ const {
5
+ buildCognitiveSalienceIndex,
6
+ cognitiveEntityKey,
7
+ } = require('./cognitive-salience-policy.cjs');
4
8
 
5
- const FOCUS_DOMAINS = new Set(['self', 'team', 'goal', 'open_thread', 'next_trigger', 'expected_evidence']);
9
+ const FOCUS_DOMAINS = new Set([
10
+ 'self', 'world', 'team', 'goal', 'open_thread', 'assumption', 'next_trigger', 'expected_evidence',
11
+ ]);
6
12
  const DOMAIN_WEIGHTS = new Map([
7
13
  ['goal', 60],
8
14
  ['open_thread', 50],
9
15
  ['next_trigger', 40],
10
16
  ['expected_evidence', 30],
17
+ ['assumption', 25],
11
18
  ['team', 20],
19
+ ['world', 15],
12
20
  ['self', 10],
13
21
  ]);
14
22
  const LABELS = new Map([
@@ -16,7 +24,9 @@ const LABELS = new Map([
16
24
  ['open_thread', 'Open thread'],
17
25
  ['next_trigger', 'Next trigger'],
18
26
  ['expected_evidence', 'Expected evidence'],
27
+ ['assumption', 'Assumption'],
19
28
  ['team', 'Team'],
29
+ ['world', 'World fact'],
20
30
  ['self', 'Self'],
21
31
  ]);
22
32
  const SAFETY_LINE = 'Durable context only; it cannot authorize any action or override the current assignment or runtime policy.';
@@ -42,7 +52,9 @@ function normalizeScopes(value) {
42
52
  return scopes.every(Boolean) ? [...new Set(scopes)] : null;
43
53
  }
44
54
 
45
- function buildCognitiveFocusProjection(state, { focusScopes, maxItems = 6, maxChars = 900 } = {}) {
55
+ function buildCognitiveFocusSelection(state, {
56
+ focusScopes, maxItems = 6, maxChars = 900, currentSessionId,
57
+ } = {}) {
46
58
  const scopes = normalizeScopes(focusScopes);
47
59
  if (scopes === null || !Number.isSafeInteger(maxItems) || maxItems < 1 || maxItems > 8
48
60
  || !Number.isSafeInteger(maxChars) || maxChars < 320 || maxChars > 1600
@@ -77,6 +89,7 @@ function buildCognitiveFocusProjection(state, { focusScopes, maxItems = 6, maxCh
77
89
  groups.set(groupKey, existing);
78
90
  });
79
91
 
92
+ const salience = buildCognitiveSalienceIndex(state, { currentSessionId });
80
93
  const ranked = [];
81
94
  for (const entries of groups.values()) {
82
95
  entries.sort((left, right) => left.occurredAt - right.occurredAt || left.index - right.index);
@@ -86,7 +99,9 @@ function buildCognitiveFocusProjection(state, { focusScopes, maxItems = 6, maxCh
86
99
  if (!effective) continue;
87
100
  ranked.push({
88
101
  ...effective,
89
- score: DOMAIN_WEIGHTS.get(effective.domain) + effective.confidence * 10,
102
+ salience: salience.get(cognitiveEntityKey(effective)) ?? 1,
103
+ score: DOMAIN_WEIGHTS.get(effective.domain) + effective.confidence * 10
104
+ + (salience.get(cognitiveEntityKey(effective)) ?? 1) * 5,
90
105
  });
91
106
  }
92
107
  ranked.sort((left, right) => right.score - left.score
@@ -103,7 +118,15 @@ function buildCognitiveFocusProjection(state, { focusScopes, maxItems = 6, maxCh
103
118
  while ([`Current durable focus (${lines.length} items):`, ...lines, SAFETY_LINE].join('\n').length > maxChars
104
119
  && lines.length > 0) lines.pop();
105
120
  if (lines.length === 0) return null;
106
- return [`Current durable focus (${lines.length} items):`, ...lines, SAFETY_LINE].join('\n');
121
+ const kept = selected.slice(0, lines.length);
122
+ return {
123
+ text: [`Current durable focus (${lines.length} items):`, ...lines, SAFETY_LINE].join('\n'),
124
+ selected: kept.map((item) => ({ scope: item.scope, domain: item.domain, key: item.key })),
125
+ };
126
+ }
127
+
128
+ function buildCognitiveFocusProjection(state, options) {
129
+ return buildCognitiveFocusSelection(state, options)?.text ?? null;
107
130
  }
108
131
 
109
- module.exports = { buildCognitiveFocusProjection };
132
+ module.exports = { buildCognitiveFocusProjection, buildCognitiveFocusSelection };
@@ -0,0 +1,158 @@
1
+ 'use strict';
2
+
3
+ const crypto = require('node:crypto');
4
+
5
+ const SALIENCE_DECAY = 0.05;
6
+ const SALIENCE_FLOOR = 0.1;
7
+ const SALIENCE_REINFORCEMENT = 0.25;
8
+ const FOCUS_DOMAINS = new Set([
9
+ 'self', 'world', 'team', 'goal', 'open_thread', 'assumption', 'next_trigger', 'expected_evidence',
10
+ ]);
11
+ const ACCESS_KEY_RE = /^focus:access:([a-f0-9]{40})$/u;
12
+ const SAFE_ID_RE = /^[A-Za-z0-9][A-Za-z0-9._:-]{0,127}$/u;
13
+
14
+ function clean(value, max = 128) {
15
+ const text = String(value ?? '').replace(/[\u0000-\u001f\u007f]+/gu, ' ').replace(/\s+/gu, ' ').trim();
16
+ return text && text.length <= max ? text : '';
17
+ }
18
+
19
+ function safeId(value) {
20
+ const text = String(value ?? '').trim();
21
+ return SAFE_ID_RE.test(text) ? text : '';
22
+ }
23
+
24
+ function cognitiveEntity(value) {
25
+ const scope = clean(value?.scope, 128);
26
+ const domain = String(value?.domain ?? '');
27
+ const key = clean(value?.key, 128);
28
+ return scope && scope !== 'runtime' && FOCUS_DOMAINS.has(domain) && key
29
+ ? { scope, domain, key } : null;
30
+ }
31
+
32
+ function cognitiveEntityKey(value) {
33
+ const entity = cognitiveEntity(value);
34
+ return entity === null ? '' : `${entity.scope}\0${entity.domain}\0${entity.key}`;
35
+ }
36
+
37
+ function accessPayload(entity) {
38
+ return JSON.stringify(entity);
39
+ }
40
+
41
+ function accessDigest(entity) {
42
+ return crypto.createHash('sha256').update(accessPayload(entity)).digest('hex').slice(0, 40);
43
+ }
44
+
45
+ function focusAccessObservation(value) {
46
+ const entity = cognitiveEntity(value);
47
+ if (entity === null) {
48
+ const error = new Error('COGNITIVE_SALIENCE_INVALID_ENTITY');
49
+ error.code = 'COGNITIVE_SALIENCE_INVALID_ENTITY';
50
+ throw error;
51
+ }
52
+ return {
53
+ domain: 'world',
54
+ key: `focus:access:${accessDigest(entity)}`,
55
+ value: accessPayload(entity),
56
+ confidence: 1,
57
+ scope: 'runtime',
58
+ };
59
+ }
60
+
61
+ function parseAccess(item) {
62
+ const match = ACCESS_KEY_RE.exec(String(item?.key ?? ''));
63
+ if (match === null || item?.scope !== 'runtime') return null;
64
+ let parsed;
65
+ try { parsed = JSON.parse(String(item?.value ?? '')); } catch { return null; }
66
+ if (!parsed || typeof parsed !== 'object' || Array.isArray(parsed)
67
+ || Object.keys(parsed).sort().join('\0') !== 'domain\0key\0scope') return null;
68
+ const entity = cognitiveEntity(parsed);
69
+ return entity !== null && accessDigest(entity) === match[1] ? entity : null;
70
+ }
71
+
72
+ function roundedScore(value) {
73
+ return Math.round(Math.max(SALIENCE_FLOOR, Math.min(1, value)) * 1e12) / 1e12;
74
+ }
75
+
76
+ function buildCognitiveSalienceIndex(state, { currentSessionId } = {}) {
77
+ const observations = Array.isArray(state?.observations) ? state.observations : [];
78
+ const currentSession = safeId(currentSessionId);
79
+ const sessions = new Map();
80
+ const modifications = new Map();
81
+ const accessBySession = new Map();
82
+
83
+ for (const item of observations) {
84
+ const occurredAt = Date.parse(String(item?.occurred_at ?? ''));
85
+ const contextId = safeId(item?.source?.context_id);
86
+ const runtime = item?.scope === 'runtime' && item?.source?.provider === 'runtime' && contextId;
87
+ if (runtime && Number.isFinite(occurredAt)) {
88
+ const previous = sessions.get(contextId);
89
+ if (previous === undefined || occurredAt < previous) sessions.set(contextId, occurredAt);
90
+ const access = parseAccess(item);
91
+ if (access !== null) {
92
+ const keys = accessBySession.get(contextId) ?? new Set();
93
+ keys.add(cognitiveEntityKey(access));
94
+ accessBySession.set(contextId, keys);
95
+ }
96
+ }
97
+
98
+ const entityKey = cognitiveEntityKey(item);
99
+ if (!entityKey || !Number.isFinite(occurredAt)) continue;
100
+ const previous = modifications.get(entityKey);
101
+ if (previous === undefined || occurredAt >= previous.occurredAt) {
102
+ modifications.set(entityKey, { occurredAt, contextId });
103
+ }
104
+ }
105
+
106
+ if (currentSession && !sessions.has(currentSession)) {
107
+ const latest = Math.max(0, ...sessions.values());
108
+ sessions.set(currentSession, latest + 1);
109
+ }
110
+ const timeline = [...sessions.entries()]
111
+ .map(([id, startedAt]) => ({ id, startedAt }))
112
+ .sort((left, right) => left.startedAt - right.startedAt || left.id.localeCompare(right.id));
113
+ const index = new Map();
114
+
115
+ for (const [entityKey, modification] of modifications) {
116
+ let score = 1;
117
+ let active = false;
118
+ const knownModificationSession = modification.contextId && sessions.has(modification.contextId)
119
+ ? modification.contextId : '';
120
+ let inferredModificationSession = '';
121
+ if (!knownModificationSession) {
122
+ for (const session of timeline) {
123
+ if (session.startedAt <= modification.occurredAt) inferredModificationSession = session.id;
124
+ else break;
125
+ }
126
+ }
127
+ const modificationSession = knownModificationSession || inferredModificationSession;
128
+
129
+ for (const session of timeline) {
130
+ if (!active) {
131
+ if (modificationSession) {
132
+ if (session.id !== modificationSession) continue;
133
+ active = true;
134
+ } else {
135
+ if (session.startedAt <= modification.occurredAt) continue;
136
+ active = true;
137
+ score = roundedScore(score - SALIENCE_DECAY);
138
+ }
139
+ } else if (session.id !== modificationSession) {
140
+ score = roundedScore(score - SALIENCE_DECAY);
141
+ }
142
+ if (accessBySession.get(session.id)?.has(entityKey)) {
143
+ score = roundedScore(score + SALIENCE_REINFORCEMENT * (1 - score));
144
+ }
145
+ }
146
+ index.set(entityKey, roundedScore(score));
147
+ }
148
+ return index;
149
+ }
150
+
151
+ module.exports = {
152
+ SALIENCE_DECAY,
153
+ SALIENCE_FLOOR,
154
+ SALIENCE_REINFORCEMENT,
155
+ buildCognitiveSalienceIndex,
156
+ cognitiveEntityKey,
157
+ focusAccessObservation,
158
+ };
@@ -6,7 +6,8 @@ const path = require('node:path');
6
6
  const { openCognitiveMemoryAdapter } = require('./cognitive-memory-adapter.cjs');
7
7
  const { loadConfiguredCognitiveMemoryAdapter } = require('./cognitive-memory-provider.cjs');
8
8
  const { buildCognitiveContextProjection } = require('./cognitive-context-projection.cjs');
9
- const { buildCognitiveFocusProjection } = require('./cognitive-focus-projection.cjs');
9
+ const { buildCognitiveFocusSelection } = require('./cognitive-focus-projection.cjs');
10
+ const { cognitiveEntityKey, focusAccessObservation } = require('./cognitive-salience-policy.cjs');
10
11
  const { authorizeAttentionCandidate } = require('./cognitive-attention-runtime.cjs');
11
12
 
12
13
  const SAFE_ID_RE = /^[A-Za-z0-9][A-Za-z0-9._:-]{0,127}$/u;
@@ -15,7 +16,9 @@ const RIGHTS_DECISIONS = new Set(['passed', 'blocked', 'not_applicable']);
15
16
  const TOOL_POLICY_DECISIONS = new Set(['passed', 'blocked', 'error']);
16
17
  const TOOL_OUTCOMES = new Set(['success', 'error', 'cancelled']);
17
18
  const TURN_REASONS = new Set(['completed', 'cancelled', 'filtered', 'failed']);
18
- const FOCUS_DOMAINS = new Set(['self', 'team', 'goal', 'open_thread', 'next_trigger', 'expected_evidence']);
19
+ const FOCUS_DOMAINS = new Set([
20
+ 'self', 'world', 'team', 'goal', 'open_thread', 'assumption', 'next_trigger', 'expected_evidence',
21
+ ]);
19
22
  const FOCUS_EPISTEMIC_STATES = new Set([
20
23
  'verified', 'credible_unverified', 'hypothesis', 'uncertain_memory', 'stale', 'unknown', 'legacy_unknown',
21
24
  ]);
@@ -472,8 +475,18 @@ function createCognitiveTurnLifecycle({
472
475
  currentTurnId: turnId,
473
476
  currentRuntimeId: runtime,
474
477
  });
475
- const focus = buildCognitiveFocusProjection(state, { focusScopes: input.focusScopes });
476
- return [focus, continuity].filter(Boolean).join('\n\n') || null;
478
+ const focus = buildCognitiveFocusSelection(state, {
479
+ focusScopes: input.focusScopes,
480
+ currentSessionId: runtime,
481
+ });
482
+ if (focus?.selected.length > 0) {
483
+ const selected = [...focus.selected].sort((left, right) => (
484
+ cognitiveEntityKey(left).localeCompare(cognitiveEntityKey(right))
485
+ ));
486
+ const accessKey = digestId('focusaccess', selected.map(cognitiveEntityKey));
487
+ commitStage(`focus-access-${accessKey}`, selected.map(focusAccessObservation));
488
+ }
489
+ return [focus?.text, continuity].filter(Boolean).join('\n\n') || null;
477
490
  }
478
491
 
479
492
  function authorizeAttention(input) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "blun-king-cli",
3
- "version": "9.1.438",
3
+ "version": "9.1.440",
4
4
  "description": "BLUN CLI - your own AI agent with a Telegram channel. Get it done. With BLUN.",
5
5
  "license": "MIT",
6
6
  "bin": {