@ouro.bot/cli 0.1.0-alpha.608 → 0.1.0-alpha.609
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.json +6 -0
- package/dist/heart/daemon/cli-exec.js +20 -20
- package/dist/heart/daemon/cli-help.js +2 -2
- package/dist/mind/prompt.js +2 -2
- package/package.json +1 -1
package/changelog.json
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_note": "This changelog is maintained as part of the PR/version-bump workflow. Agent-curated, not auto-generated. Agents read this file directly via read_file to understand what changed between versions.",
|
|
3
3
|
"versions": [
|
|
4
|
+
{
|
|
5
|
+
"version": "0.1.0-alpha.609",
|
|
6
|
+
"changes": [
|
|
7
|
+
"Vocabulary sweep: drop 'memory' from agent-facing prompt content (trip-ledger truth section) and operator-facing connect-flow strings (cli-exec/cli-help). The agent doesn't have memory; it has a diary it consults, embeddings it can search, and prior conversation context. Renaming the strings makes the surface honest. Internal capability identifier 'memory-embeddings' and CLI input alias 'memory' both stay for back-compat. RAM-sense uses ('in-memory cache', 'process memory') stay. Test snapshots updated. Bumped from .607 → .609 to leapfrog the parallel-merged .608."
|
|
8
|
+
]
|
|
9
|
+
},
|
|
4
10
|
{
|
|
5
11
|
"version": "0.1.0-alpha.608",
|
|
6
12
|
"changes": [
|
|
@@ -2595,7 +2595,7 @@ async function buildConnectMenu(agent, deps, onProgress) {
|
|
|
2595
2595
|
let perplexityVerification;
|
|
2596
2596
|
let embeddingsVerification;
|
|
2597
2597
|
if (shouldVerifyPerplexity && shouldVerifyEmbeddings) {
|
|
2598
|
-
onProgress?.("verifying Perplexity search and
|
|
2598
|
+
onProgress?.("verifying Perplexity search and embeddings");
|
|
2599
2599
|
[perplexityVerification, embeddingsVerification] = await Promise.all([
|
|
2600
2600
|
(0, runtime_capability_check_1.verifyPerplexityCapability)(perplexityApiKey),
|
|
2601
2601
|
(0, runtime_capability_check_1.verifyEmbeddingsCapability)(embeddingsApiKey),
|
|
@@ -2606,7 +2606,7 @@ async function buildConnectMenu(agent, deps, onProgress) {
|
|
|
2606
2606
|
perplexityVerification = await (0, runtime_capability_check_1.verifyPerplexityCapability)(perplexityApiKey);
|
|
2607
2607
|
}
|
|
2608
2608
|
else if (shouldVerifyEmbeddings) {
|
|
2609
|
-
onProgress?.("verifying
|
|
2609
|
+
onProgress?.("verifying embeddings");
|
|
2610
2610
|
embeddingsVerification = await (0, runtime_capability_check_1.verifyEmbeddingsCapability)(embeddingsApiKey);
|
|
2611
2611
|
}
|
|
2612
2612
|
let perplexityStatus;
|
|
@@ -2723,14 +2723,14 @@ async function buildConnectMenu(agent, deps, onProgress) {
|
|
|
2723
2723
|
},
|
|
2724
2724
|
{
|
|
2725
2725
|
option: "3",
|
|
2726
|
-
name: "
|
|
2726
|
+
name: "Embeddings",
|
|
2727
2727
|
section: "Portable",
|
|
2728
2728
|
status: embeddingsStatus,
|
|
2729
|
-
description: "
|
|
2729
|
+
description: "Note search and diary consultation.",
|
|
2730
2730
|
detailLines: embeddingsDetailLines,
|
|
2731
2731
|
nextAction: (0, connect_bay_1.connectEntryNeedsAttention)({
|
|
2732
2732
|
option: "3",
|
|
2733
|
-
name: "
|
|
2733
|
+
name: "Embeddings",
|
|
2734
2734
|
section: "Portable",
|
|
2735
2735
|
status: embeddingsStatus,
|
|
2736
2736
|
}) ? `ouro connect embeddings --agent ${agent}` : undefined,
|
|
@@ -2936,13 +2936,13 @@ async function executeConnectEmbeddings(agent, deps) {
|
|
|
2936
2936
|
const promptSecret = requirePromptSecret(deps, "OpenAI embeddings API key entry");
|
|
2937
2937
|
writeConnectorIntro(deps, {
|
|
2938
2938
|
title: "Connect Embeddings",
|
|
2939
|
-
subtitle: `${agent} gets portable note and
|
|
2940
|
-
summary: "Add one hidden API key, verify it live, and let semantic
|
|
2939
|
+
subtitle: `${agent} gets portable note search and diary consultation.`,
|
|
2940
|
+
summary: "Add one hidden API key, verify it live, and let semantic note search travel with this agent.",
|
|
2941
2941
|
sections: [
|
|
2942
2942
|
{
|
|
2943
2943
|
title: "Unlocks",
|
|
2944
2944
|
lines: [
|
|
2945
|
-
"Portable note search and
|
|
2945
|
+
"Portable note search and diary consultation.",
|
|
2946
2946
|
],
|
|
2947
2947
|
},
|
|
2948
2948
|
{
|
|
@@ -2974,7 +2974,7 @@ async function executeConnectEmbeddings(agent, deps) {
|
|
|
2974
2974
|
let verification;
|
|
2975
2975
|
let reload;
|
|
2976
2976
|
try {
|
|
2977
|
-
stored = await runCommandProgressPhase(progress, "saving
|
|
2977
|
+
stored = await runCommandProgressPhase(progress, "saving embeddings", () => storeRuntimeConfigKey({
|
|
2978
2978
|
agent,
|
|
2979
2979
|
key: "integrations.openaiEmbeddingsApiKey",
|
|
2980
2980
|
value: key,
|
|
@@ -2982,14 +2982,14 @@ async function executeConnectEmbeddings(agent, deps) {
|
|
|
2982
2982
|
deps,
|
|
2983
2983
|
onProgress: (message) => progress.updateDetail(message),
|
|
2984
2984
|
}), () => "secret stored");
|
|
2985
|
-
progress.startPhase("verifying
|
|
2985
|
+
progress.startPhase("verifying embeddings");
|
|
2986
2986
|
verification = await (0, runtime_capability_check_1.verifyEmbeddingsCapability)(key);
|
|
2987
2987
|
if (!verification.ok) {
|
|
2988
|
-
progress.failPhase("verifying
|
|
2988
|
+
progress.failPhase("verifying embeddings", verification.summary);
|
|
2989
2989
|
progress.end();
|
|
2990
2990
|
return writeCapabilityAttention(deps, {
|
|
2991
|
-
subtitle: `${agent}'s
|
|
2992
|
-
summary: "
|
|
2991
|
+
subtitle: `${agent}'s embeddings key needs another pass.`,
|
|
2992
|
+
summary: "Embeddings were saved, but the live check failed.",
|
|
2993
2993
|
whatChanged: [
|
|
2994
2994
|
`Stored: ${stored.itemPath}`,
|
|
2995
2995
|
`Live check: ${verification.summary}`,
|
|
@@ -3009,33 +3009,33 @@ async function executeConnectEmbeddings(agent, deps) {
|
|
|
3009
3009
|
],
|
|
3010
3010
|
});
|
|
3011
3011
|
}
|
|
3012
|
-
progress.completePhase("verifying
|
|
3012
|
+
progress.completePhase("verifying embeddings", verification.summary);
|
|
3013
3013
|
reload = await runCommandProgressPhase(progress, `applying change to running ${agent}`, () => applyRuntimeChangeToRunningAgent(agent, deps, (message) => progress.updateDetail(message)), (result) => result);
|
|
3014
3014
|
}
|
|
3015
3015
|
finally {
|
|
3016
3016
|
progress.end();
|
|
3017
3017
|
}
|
|
3018
3018
|
return writeCapabilityOutcome(deps, {
|
|
3019
|
-
subtitle: `${agent}'s
|
|
3020
|
-
summary: `
|
|
3019
|
+
subtitle: `${agent}'s embeddings index is online.`,
|
|
3020
|
+
summary: `Embeddings are ready to travel with ${agent}.`,
|
|
3021
3021
|
whatChanged: [
|
|
3022
|
-
"Capability:
|
|
3022
|
+
"Capability: embeddings",
|
|
3023
3023
|
`Stored: ${stored.itemPath}`,
|
|
3024
3024
|
`Running agent: ${reload}`,
|
|
3025
3025
|
"secret was not printed",
|
|
3026
3026
|
],
|
|
3027
3027
|
nextMoves: [
|
|
3028
|
-
"Ask the agent to search notes or
|
|
3028
|
+
"Ask the agent to search notes or consult the diary.",
|
|
3029
3029
|
`Reopen the connections screen with ouro connect --agent ${agent} whenever you want to review capabilities.`,
|
|
3030
3030
|
],
|
|
3031
3031
|
fallbackLines: [
|
|
3032
3032
|
`Embeddings connected for ${agent}`,
|
|
3033
|
-
"capability:
|
|
3033
|
+
"capability: embeddings",
|
|
3034
3034
|
`stored: ${stored.itemPath}`,
|
|
3035
3035
|
`running agent: ${reload}`,
|
|
3036
3036
|
"secret was not printed",
|
|
3037
3037
|
"",
|
|
3038
|
-
"Next: ask the agent to search notes or
|
|
3038
|
+
"Next: ask the agent to search notes or consult the diary.",
|
|
3039
3039
|
],
|
|
3040
3040
|
});
|
|
3041
3041
|
}
|
|
@@ -304,7 +304,7 @@ const SUBCOMMAND_HELP = {
|
|
|
304
304
|
example: "ouro connect providers",
|
|
305
305
|
},
|
|
306
306
|
"connect embeddings": {
|
|
307
|
-
description: "Connect portable
|
|
307
|
+
description: "Connect portable embeddings for note search and diary consultation; travels with this agent",
|
|
308
308
|
usage: "ouro connect embeddings [--agent <name>]",
|
|
309
309
|
example: "ouro connect embeddings",
|
|
310
310
|
},
|
|
@@ -339,7 +339,7 @@ const SUBCOMMAND_HELP = {
|
|
|
339
339
|
example: "ouro mail backfill-indexes --agent slugger",
|
|
340
340
|
},
|
|
341
341
|
"provider refresh": {
|
|
342
|
-
description: "Reload this agent's provider credentials from its vault into daemon
|
|
342
|
+
description: "Reload this agent's provider credentials from its vault into the running daemon",
|
|
343
343
|
usage: "ouro provider refresh [--agent <name>]",
|
|
344
344
|
example: "ouro provider refresh",
|
|
345
345
|
},
|
package/dist/mind/prompt.js
CHANGED
|
@@ -771,8 +771,8 @@ function tripLedgerTruthSection(channel, context) {
|
|
|
771
771
|
return "";
|
|
772
772
|
const lines = [
|
|
773
773
|
"## trip ledger truth",
|
|
774
|
-
"The trip ledger is the canonical structured source for travel plans. It outranks friend notes, old handoffs, and
|
|
775
|
-
"When asked about travel plans, bookings, itinerary gaps, or what changed, I check `trip_status`, `trip_get`, or `trip_calendar` before answering from
|
|
774
|
+
"The trip ledger is the canonical structured source for travel plans. It outranks friend notes, old handoffs, and prior conversation context when those disagree.",
|
|
775
|
+
"When asked about travel plans, bookings, itinerary gaps, or what changed, I check `trip_status`, `trip_get`, or `trip_calendar` before answering from prior conversation context. I use `mail_search`/`mail_body` when the ledger is missing a needed fact or when verifying a claimed absence.",
|
|
776
776
|
"If a leg is `tentative`, I say it is tentative/inferred. I do not call it a booking or a gap unless the mail evidence supports that.",
|
|
777
777
|
"known trips:",
|
|
778
778
|
];
|