wendkeep 0.66.5 → 0.67.1
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/CHANGELOG.md +52 -0
- package/README.en.md +76 -3
- package/README.md +76 -3
- package/docs/en/commands/operating-profiles.md +65 -10
- package/docs/en/commands/sessions-and-import.md +34 -9
- package/docs/en/commands/verify.md +5 -3
- package/docs/pt-BR/commands/operating-profiles.md +66 -11
- package/docs/pt-BR/commands/sessions-and-import.md +33 -8
- package/docs/pt-BR/commands/verify.md +6 -3
- package/hooks/change-nag.mjs +8 -0
- package/hooks/obsidian-common.mjs +7 -0
- package/hooks/operating-profile-runtime.mjs +36 -2
- package/hooks/operating-profile-task-store.mjs +77 -0
- package/hooks/session-backfill.mjs +26 -1
- package/hooks/session-ensure.mjs +22 -0
- package/hooks/session-stop.mjs +129 -7
- package/hooks/subagent-stop.mjs +35 -3
- package/package.json +3 -3
- package/packages/cli/src/index.mjs +3 -3
- package/packages/harness/src/operating-profile.mjs +127 -0
- package/packages/harness/src/sensors-core.mjs +41 -1
- package/packages/integrations/src/prompt-content.mjs +123 -0
- package/packages/integrations/src/transcripts.mjs +26 -10
- package/src/profile.mjs +95 -17
- package/src/skills-seed.mjs +38 -2
- package/src/sync-defs.mjs +16 -1
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
isBootstrapPrompt,
|
|
3
|
+
redactSecrets,
|
|
4
|
+
sanitizeAssistantMessage,
|
|
5
|
+
} from './prompt-content.mjs';
|
|
2
6
|
import {
|
|
3
7
|
addUsage,
|
|
4
8
|
emptyTokenUsage,
|
|
@@ -73,6 +77,14 @@ function addConversation(turn, role, value) {
|
|
|
73
77
|
}
|
|
74
78
|
}
|
|
75
79
|
|
|
80
|
+
function addAssistantMessage(result, turn, value) {
|
|
81
|
+
const text = sanitizeAssistantMessage(value);
|
|
82
|
+
if (!text) return;
|
|
83
|
+
addUnique(result.assistantMessages, text);
|
|
84
|
+
addUnique(turn.assistantMessages, text);
|
|
85
|
+
addConversation(turn, 'Assistente', text);
|
|
86
|
+
}
|
|
87
|
+
|
|
76
88
|
function normalizeRoot(value) {
|
|
77
89
|
return String(value || '').replace(/\\+/g, '/').replace(/\/+$/, '');
|
|
78
90
|
}
|
|
@@ -158,6 +170,16 @@ function jsonLines(content) {
|
|
|
158
170
|
}).filter(Boolean);
|
|
159
171
|
}
|
|
160
172
|
|
|
173
|
+
export function completedCodexTurnIdsContent(content = '') {
|
|
174
|
+
const completed = new Set();
|
|
175
|
+
for (const event of jsonLines(content)) {
|
|
176
|
+
if (event.type !== 'event_msg' || event.payload?.type !== 'task_complete') continue;
|
|
177
|
+
const turnId = String(event.payload?.turn_id || event.turn_id || '').trim();
|
|
178
|
+
if (turnId) completed.add(turnId);
|
|
179
|
+
}
|
|
180
|
+
return completed;
|
|
181
|
+
}
|
|
182
|
+
|
|
161
183
|
export function parseCodexTranscriptContent(content, options = {}) {
|
|
162
184
|
const result = createResult('codex');
|
|
163
185
|
const eventUserPrompts = [];
|
|
@@ -207,9 +229,7 @@ export function parseCodexTranscriptContent(content, options = {}) {
|
|
|
207
229
|
const text = event.payload.message || event.payload.text || '';
|
|
208
230
|
if (text) {
|
|
209
231
|
const turn = ensureTurn(event.payload.turn_id || result.latestTurnId, event.timestamp);
|
|
210
|
-
|
|
211
|
-
addUnique(turn.assistantMessages, text);
|
|
212
|
-
addConversation(turn, 'Assistente', text);
|
|
232
|
+
addAssistantMessage(result, turn, text);
|
|
213
233
|
}
|
|
214
234
|
continue;
|
|
215
235
|
}
|
|
@@ -234,9 +254,7 @@ export function parseCodexTranscriptContent(content, options = {}) {
|
|
|
234
254
|
addConversation(turn, 'Usuário', text);
|
|
235
255
|
}
|
|
236
256
|
if (payload.role === 'assistant') {
|
|
237
|
-
|
|
238
|
-
addUnique(turn.assistantMessages, text);
|
|
239
|
-
addConversation(turn, 'Assistente', text);
|
|
257
|
+
addAssistantMessage(result, turn, text);
|
|
240
258
|
}
|
|
241
259
|
continue;
|
|
242
260
|
}
|
|
@@ -356,9 +374,7 @@ export function parseClaudeTranscriptContent(content, options = {}) {
|
|
|
356
374
|
const blocks = Array.isArray(event.message?.content) ? event.message.content : [];
|
|
357
375
|
for (const block of blocks) {
|
|
358
376
|
if (block?.type === 'text' && block.text && block.text.trim()) {
|
|
359
|
-
|
|
360
|
-
addUnique(turn.assistantMessages, block.text);
|
|
361
|
-
addConversation(turn, 'Assistente', block.text);
|
|
377
|
+
addAssistantMessage(result, turn, block.text);
|
|
362
378
|
} else if (block?.type === 'tool_use') {
|
|
363
379
|
const name = block.name || 'tool_use';
|
|
364
380
|
addUnique(result.tools, name);
|
package/src/profile.mjs
CHANGED
|
@@ -3,10 +3,12 @@
|
|
|
3
3
|
import { mutateSessionRegistry, readSessionRegistry } from '../hooks/obsidian-common.mjs';
|
|
4
4
|
import {
|
|
5
5
|
DEFAULT_OPERATING_PROFILE,
|
|
6
|
+
evaluateTaskOperatingProfileLease,
|
|
6
7
|
normalizeOperatingProfile,
|
|
7
8
|
resolveOperatingProfile,
|
|
8
9
|
setOperatingProfile,
|
|
9
10
|
} from './operating-profile.mjs';
|
|
11
|
+
import { setSessionTaskOperatingProfile } from '../hooks/operating-profile-task-store.mjs';
|
|
10
12
|
import { resolve } from 'node:path';
|
|
11
13
|
import { findProjectBinding, resolveProjectVault, updateProjectBinding } from './project-vault.mjs';
|
|
12
14
|
|
|
@@ -14,12 +16,14 @@ export const PROFILE_HELP = `wendkeep profile <subcommand>
|
|
|
14
16
|
|
|
15
17
|
status [--session <id>]
|
|
16
18
|
use <OFF|FLOW|GUIDE|GOVERN|ASSURE> [--session <id>]
|
|
19
|
+
route <FLOW|GUIDE|GOVERN|ASSURE> --session <id> --reason <text>
|
|
17
20
|
|
|
18
|
-
Common options: --project <path> --vault <path> --session <id> --json
|
|
21
|
+
Common options: --project <path> --vault <path> --session <id> --json --reason <text>
|
|
22
|
+
route creates a task-scoped choice for the current request; it never selects OFF.
|
|
19
23
|
The Keep Core (Vault, session, and memory) remains active under every profile.
|
|
20
24
|
`;
|
|
21
25
|
|
|
22
|
-
const VALUE_OPTIONS = new Set(['--project', '--vault', '--session']);
|
|
26
|
+
const VALUE_OPTIONS = new Set(['--project', '--vault', '--session', '--reason']);
|
|
23
27
|
const FLAG_OPTIONS = new Set(['--json']);
|
|
24
28
|
|
|
25
29
|
function optionValue(argv, name) {
|
|
@@ -32,8 +36,8 @@ function commandArgs(argv) {
|
|
|
32
36
|
const values = [];
|
|
33
37
|
for (let index = 0; index < argv.length; index += 1) {
|
|
34
38
|
const value = argv[index];
|
|
35
|
-
if (['--project', '--vault', '--session'].includes(value)) { index += 1; continue; }
|
|
36
|
-
if (value.startsWith('--project=') || value.startsWith('--vault=') || value.startsWith('--session=')) continue;
|
|
39
|
+
if (['--project', '--vault', '--session', '--reason'].includes(value)) { index += 1; continue; }
|
|
40
|
+
if (value.startsWith('--project=') || value.startsWith('--vault=') || value.startsWith('--session=') || value.startsWith('--reason=')) continue;
|
|
37
41
|
if (value === '--json') continue;
|
|
38
42
|
values.push(value);
|
|
39
43
|
}
|
|
@@ -76,8 +80,15 @@ function canonicalPath(value) {
|
|
|
76
80
|
function output(payload, json) {
|
|
77
81
|
if (json) process.stdout.write(`${JSON.stringify(payload)}\n`);
|
|
78
82
|
else {
|
|
79
|
-
const scope = payload.scope === '
|
|
80
|
-
|
|
83
|
+
const scope = payload.scope === 'task'
|
|
84
|
+
? `task ${payload.session_id}`
|
|
85
|
+
: payload.scope === 'session' ? `session ${payload.session_id}` : 'project';
|
|
86
|
+
const details = [scope, payload.source];
|
|
87
|
+
if (payload.session_id && payload.base_profile && payload.task_lease?.state) {
|
|
88
|
+
details.push(`base=${payload.base_profile}/${payload.base_source}`);
|
|
89
|
+
details.push(`lease=${payload.task_lease.state}`);
|
|
90
|
+
}
|
|
91
|
+
process.stdout.write(`${payload.profile} (${details.join('; ')})\n`);
|
|
81
92
|
}
|
|
82
93
|
if (payload.binding_error) {
|
|
83
94
|
const code = payload.binding_error.code || 'WENDKEEP_VAULT_CONFIG_INVALID';
|
|
@@ -129,10 +140,7 @@ export function setSessionOperatingProfile(vaultBase, sessionId, profile, { now
|
|
|
129
140
|
});
|
|
130
141
|
}
|
|
131
142
|
|
|
132
|
-
function
|
|
133
|
-
const sessions = readSessionRegistry(vaultBase).sessions || {};
|
|
134
|
-
if (!Object.hasOwn(sessions, sessionId)) throw new Error(`sessão não encontrada: ${sessionId}`);
|
|
135
|
-
const entry = sessions[sessionId];
|
|
143
|
+
function sessionBaseProfile(entry, projectResolved) {
|
|
136
144
|
if (Object.hasOwn(entry, 'operating_profile')) {
|
|
137
145
|
try {
|
|
138
146
|
return {
|
|
@@ -149,6 +157,44 @@ function sessionProfile(vaultBase, sessionId, projectResolved) {
|
|
|
149
157
|
return { profile: projectResolved.profile, source: projectResolved.source };
|
|
150
158
|
}
|
|
151
159
|
|
|
160
|
+
function sessionProfile(vaultBase, sessionId, projectResolved) {
|
|
161
|
+
const sessions = readSessionRegistry(vaultBase).sessions || {};
|
|
162
|
+
if (!Object.hasOwn(sessions, sessionId)) throw new Error(`sessão não encontrada: ${sessionId}`);
|
|
163
|
+
return sessionBaseProfile(sessions[sessionId], projectResolved);
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
function sessionProfileStatus(vaultBase, sessionId, projectResolved) {
|
|
167
|
+
const sessions = readSessionRegistry(vaultBase).sessions || {};
|
|
168
|
+
if (!Object.hasOwn(sessions, sessionId)) throw new Error(`sessão não encontrada: ${sessionId}`);
|
|
169
|
+
const entry = sessions[sessionId];
|
|
170
|
+
const base = sessionBaseProfile(entry, projectResolved);
|
|
171
|
+
const taskLease = evaluateTaskOperatingProfileLease(entry.operating_profile_task, {
|
|
172
|
+
sessionId,
|
|
173
|
+
turnId: entry.last_prompt_turn_id || '',
|
|
174
|
+
turnSequence: entry.last_turn_sequence,
|
|
175
|
+
});
|
|
176
|
+
return {
|
|
177
|
+
profile: taskLease.state === 'active' ? taskLease.profile : base.profile,
|
|
178
|
+
source: taskLease.state === 'active' ? 'task-lease' : base.source,
|
|
179
|
+
scope: taskLease.state === 'active' ? 'task' : 'session',
|
|
180
|
+
baseProfile: base.profile,
|
|
181
|
+
baseSource: base.source,
|
|
182
|
+
taskLease,
|
|
183
|
+
};
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
function sessionOutputPayload(effective, sessionId) {
|
|
187
|
+
return {
|
|
188
|
+
profile: effective.profile,
|
|
189
|
+
source: effective.source,
|
|
190
|
+
scope: effective.scope,
|
|
191
|
+
session_id: sessionId,
|
|
192
|
+
base_profile: effective.baseProfile,
|
|
193
|
+
base_source: effective.baseSource,
|
|
194
|
+
task_lease: effective.taskLease,
|
|
195
|
+
};
|
|
196
|
+
}
|
|
197
|
+
|
|
152
198
|
export function runProfile(argv = []) {
|
|
153
199
|
try { validateArgv(argv); }
|
|
154
200
|
catch (error) { return fail(error.message); }
|
|
@@ -156,6 +202,8 @@ export function runProfile(argv = []) {
|
|
|
156
202
|
const sub = args[0] || 'status';
|
|
157
203
|
const json = argv.includes('--json');
|
|
158
204
|
const sessionId = optionValue(argv, '--session') || '';
|
|
205
|
+
const reason = optionValue(argv, '--reason');
|
|
206
|
+
if (sub !== 'route' && reason) return fail('--reason só é aceito por profile route');
|
|
159
207
|
|
|
160
208
|
let state;
|
|
161
209
|
try { state = context(argv); }
|
|
@@ -166,20 +214,50 @@ export function runProfile(argv = []) {
|
|
|
166
214
|
if (args.length > 1) return fail(`${sub} não aceita argumentos posicionais adicionais`);
|
|
167
215
|
try {
|
|
168
216
|
const effective = sessionId
|
|
169
|
-
?
|
|
170
|
-
: { profile: projectResolved.profile, source: projectResolved.source };
|
|
217
|
+
? sessionProfileStatus(state.vaultBase, sessionId, projectResolved)
|
|
218
|
+
: { profile: projectResolved.profile, source: projectResolved.source, scope: 'project' };
|
|
171
219
|
output({
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
220
|
+
...(sessionId ? sessionOutputPayload(effective, sessionId) : {
|
|
221
|
+
profile: effective.profile,
|
|
222
|
+
source: effective.source,
|
|
223
|
+
scope: 'project',
|
|
224
|
+
session_id: null,
|
|
225
|
+
}),
|
|
176
226
|
...(state.resolved.bindingError ? { binding_error: state.resolved.bindingError } : {}),
|
|
177
227
|
}, json);
|
|
178
228
|
return 0;
|
|
179
229
|
} catch (error) { return fail(error.message); }
|
|
180
230
|
}
|
|
181
231
|
|
|
182
|
-
if (sub
|
|
232
|
+
if (sub === 'route') {
|
|
233
|
+
if (args.length !== 2) return fail('route requer exatamente um perfil');
|
|
234
|
+
if (!sessionId) return fail('route requer --session <id>');
|
|
235
|
+
if (!reason) return fail('route requer --reason <text>');
|
|
236
|
+
try {
|
|
237
|
+
const base = sessionProfile(state.vaultBase, sessionId, projectResolved);
|
|
238
|
+
const lease = setSessionTaskOperatingProfile(
|
|
239
|
+
state.vaultBase,
|
|
240
|
+
sessionId,
|
|
241
|
+
args[1],
|
|
242
|
+
{ reason },
|
|
243
|
+
);
|
|
244
|
+
output({
|
|
245
|
+
profile: lease.profile,
|
|
246
|
+
source: 'task-lease',
|
|
247
|
+
scope: 'task',
|
|
248
|
+
session_id: sessionId,
|
|
249
|
+
base_profile: base.profile,
|
|
250
|
+
base_source: base.source,
|
|
251
|
+
task_lease: lease,
|
|
252
|
+
...(state.resolved.bindingError ? { binding_error: state.resolved.bindingError } : {}),
|
|
253
|
+
}, json);
|
|
254
|
+
return 0;
|
|
255
|
+
} catch (error) { return fail(error.message); }
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
if (sub !== 'use' && sub !== 'set') {
|
|
259
|
+
return fail('use status | use <OFF|FLOW|GUIDE|GOVERN|ASSURE> | route <FLOW|GUIDE|GOVERN|ASSURE>');
|
|
260
|
+
}
|
|
183
261
|
if (args.length !== 2) return fail(`${sub} requer exatamente um perfil`);
|
|
184
262
|
let profile;
|
|
185
263
|
try { profile = normalizeOperatingProfile(args[1], { strict: true }); }
|
package/src/skills-seed.mjs
CHANGED
|
@@ -17,6 +17,24 @@ Use ao começar implementação, correção ou refatoração. **Keep Core perman
|
|
|
17
17
|
em todos os perfis: Vault, sessão, identidade, memória, lessons e persistência. Na ausência de
|
|
18
18
|
configuração válida, **GOVERN é o padrão** compatível.
|
|
19
19
|
|
|
20
|
+
## Seleção temporária por solicitação
|
|
21
|
+
|
|
22
|
+
Antes de editar, classifique a implementação atual e registre a escolha auditável com
|
|
23
|
+
\`wendkeep profile route <FLOW|GUIDE|GOVERN|ASSURE> --session <id> --reason <texto>\`.
|
|
24
|
+
A lease vale somente para a solicitação atual; ao encerrá-la, o perfil persistente da
|
|
25
|
+
sessão/projeto volta a valer. **OFF nunca é uma escolha automática da LLM**: somente uma pessoa
|
|
26
|
+
pode persistir \`profile use OFF\` explicitamente.
|
|
27
|
+
|
|
28
|
+
- **FLOW:** ajuste local, reversível e de escopo fechado, sem contrato/spec, segurança,
|
|
29
|
+
dependência, CI/release ou policy.
|
|
30
|
+
- **GUIDE:** mudança compacta de comportamento que precisa de change/spec, sem revisão formal.
|
|
31
|
+
- **GOVERN:** escolha conservadora em caso de dúvida ou risco e para superfícies sensíveis.
|
|
32
|
+
- **ASSURE:** GOVERN quando confirmação explícita e handoff fazem parte do contrato.
|
|
33
|
+
|
|
34
|
+
O harness da LLM faz essa classificação semântica; o Wend Runtime valida e aplica a lease.
|
|
35
|
+
Se não houver uma sessão causal identificada ou o comando falhar, não fabrique estado: use o
|
|
36
|
+
perfil efetivo já injetado e trate \`GOVERN\` como fallback conservador quando ele for o padrão.
|
|
37
|
+
|
|
20
38
|
<HARD-GATE>
|
|
21
39
|
Antes de editar, leia o **perfil efetivo** injetado pelo WendKeep e siga somente sua rota:
|
|
22
40
|
- \`OFF\`: não imponha processo Wend; a governança pertence ao **harness nativo da LLM**.
|
|
@@ -268,6 +286,24 @@ Use this when starting an implementation, fix, or refactor. **Keep Core is alway
|
|
|
268
286
|
in every profile: Vault, session, identity, memory, lessons, and persistence. With no valid
|
|
269
287
|
configuration, **GOVERN is the default** for compatibility.
|
|
270
288
|
|
|
289
|
+
## Temporary selection per request
|
|
290
|
+
|
|
291
|
+
Before editing, classify the current implementation and record the auditable choice with
|
|
292
|
+
\`wendkeep profile route <FLOW|GUIDE|GOVERN|ASSURE> --session <id> --reason <text>\`.
|
|
293
|
+
The lease applies only to the current request; after it ends, the persistent session/project
|
|
294
|
+
profile becomes effective again. **OFF is never an automatic LLM choice**: only a human can
|
|
295
|
+
persist it explicitly through \`profile use OFF\`.
|
|
296
|
+
|
|
297
|
+
- **FLOW:** a local, reversible, bounded adjustment with no contract/spec, security, dependency,
|
|
298
|
+
CI/release, or policy impact.
|
|
299
|
+
- **GUIDE:** a compact behavior change that needs a change/spec but no formal review.
|
|
300
|
+
- **GOVERN:** the conservative choice when uncertain or risky, and for sensitive surfaces.
|
|
301
|
+
- **ASSURE:** GOVERN when explicit confirmation and handoff are part of the contract.
|
|
302
|
+
|
|
303
|
+
The LLM harness owns semantic classification; Wend Runtime validates and applies the lease. If
|
|
304
|
+
there is no causally identified session or the command fails, do not fabricate state: use the
|
|
305
|
+
already injected effective profile, with \`GOVERN\` as the conservative configured fallback.
|
|
306
|
+
|
|
271
307
|
<HARD-GATE>
|
|
272
308
|
Before editing, read the injected **effective profile** and follow only its route:
|
|
273
309
|
- \`OFF\`: impose no Wend process; governance belongs to the **native LLM harness**.
|
|
@@ -619,7 +655,7 @@ size of the problem>
|
|
|
619
655
|
// usuário ("implementa X", "corrige Y"), não com abstrações ("mudança não-trivial"). Gatilhos
|
|
620
656
|
// concretos + instrução imperativa = a skill dispara sozinha (paridade Superpowers).
|
|
621
657
|
const WK_SKILLS_PT = [
|
|
622
|
-
skill('wk-workflow', 'Use quando o usuário pedir para implementar, criar, corrigir, refatorar, adicionar ou alterar código:
|
|
658
|
+
skill('wk-workflow', 'Use quando o usuário pedir para implementar, criar, corrigir, refatorar, adicionar ou alterar código: classifique e registre a rota temporária FLOW/GUIDE/GOVERN/ASSURE ANTES de editar, então siga o perfil efetivo. Keep Core permanece ativo; OFF nunca é automático.', WORKFLOW),
|
|
623
659
|
skill('wk-tdd', 'Use ao implementar qualquer comportamento — Red/Green/Refactor com testes que discriminam (derivados do spec, litmus não-raso, adequação).', TDD),
|
|
624
660
|
skill('wk-debugging', 'Use quando algo falha, quebra, dá erro ou regride — depuração sistemática por hipótese antes de corrigir.', DEBUGGING),
|
|
625
661
|
skill('wk-brainstorming', 'Use quando a ideia ainda é vaga ou o usuário quer discutir/planejar uma feature (inclusive em plan mode) — vira design aprovado, com closure gate e tabela out-of-scope, antes de código.', BRAINSTORMING, [{ name: 'design-template.md', content: DESIGN_TEMPLATE_PT }]),
|
|
@@ -628,7 +664,7 @@ const WK_SKILLS_PT = [
|
|
|
628
664
|
];
|
|
629
665
|
|
|
630
666
|
const WK_SKILLS_EN = [
|
|
631
|
-
skill('wk-workflow', 'Use when the user asks to implement, create, fix, refactor, add, or change code:
|
|
667
|
+
skill('wk-workflow', 'Use when the user asks to implement, create, fix, refactor, add, or change code: classify and record the temporary FLOW/GUIDE/GOVERN/ASSURE route BEFORE editing, then follow the effective profile. Keep Core stays active; OFF is never automatic.', WORKFLOW_EN),
|
|
632
668
|
skill('wk-tdd', 'Use when implementing any behaviour — Red/Green/Refactor with tests that discriminate (spec-derived, non-shallow litmus, adequacy).', TDD_EN),
|
|
633
669
|
skill('wk-debugging', 'Use when something fails, breaks, errors or regresses — systematic hypothesis-driven debugging before fixing.', DEBUGGING_EN),
|
|
634
670
|
skill('wk-brainstorming', 'Use when the idea is still vague or the user wants to discuss/plan a feature (plan mode included) — turns it into an approved design, with a closure gate and out-of-scope table, before code.', BRAINSTORMING_EN, [{ name: 'design-template.md', content: DESIGN_TEMPLATE_EN }]),
|
package/src/sync-defs.mjs
CHANGED
|
@@ -62,7 +62,22 @@ function renderAgentsSection(skills, sourceHash = '') {
|
|
|
62
62
|
|
|
63
63
|
This project uses the [wendkeep](https://github.com/rogersialves/wendkeep) harness. **Keep Core is always active**
|
|
64
64
|
in every profile: Vault, session, identity, memory, lessons, and persistence integrations.
|
|
65
|
-
The
|
|
65
|
+
The persistent profile is selected explicitly; missing or invalid configuration uses **GOVERN as the default**.
|
|
66
|
+
|
|
67
|
+
Before every implementation, the native LLM harness **MUST run the routing gate**:
|
|
68
|
+
1. Inspect \`wendkeep profile status\`.
|
|
69
|
+
2. Classify the request and choose FLOW, GUIDE, GOVERN, or ASSURE from its scope and risk.
|
|
70
|
+
3. Register the choice with
|
|
71
|
+
\`wendkeep profile route <FLOW|GUIDE|GOVERN|ASSURE> --session <id> --reason <text>\`.
|
|
72
|
+
4. Re-check \`wendkeep profile status\` and follow the effective profile before editing.
|
|
73
|
+
|
|
74
|
+
The persistent profile is only the base restored after the task lease; it is not an immutable
|
|
75
|
+
decision for the current task. A base OFF does not block a temporary FLOW/GUIDE/GOVERN/ASSURE
|
|
76
|
+
lease, while a base GOVERN does not prevent choosing FLOW or GUIDE for bounded work. An explicit
|
|
77
|
+
user choice for the request takes precedence. If no causal session is available or routing fails,
|
|
78
|
+
do not invent lease state: follow the effective profile and use GOVERN only as the conservative
|
|
79
|
+
fallback when configuration is missing or invalid. The lease expires when the request ends.
|
|
80
|
+
**OFF is never selected adaptively**; only a human can persist \`profile use OFF\`.
|
|
66
81
|
|
|
67
82
|
Route work by the effective profile:
|
|
68
83
|
- **OFF** — Wend Runtime is disabled and governance belongs to the native LLM harness; Keep Core stays active.
|