@ouro.bot/cli 0.1.0-alpha.339 → 0.1.0-alpha.340
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/mind/prompt.js +6 -1
- 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.340",
|
|
6
|
+
"changes": [
|
|
7
|
+
"Prompt tool lists now match runtime flow-tool availability: `ponder` and the channel terminal tool remain visible even when tool choice is optional, custom tool subsets keep required flow tools, and group/reaction turns list `observe` when runtime exposes it."
|
|
8
|
+
]
|
|
9
|
+
},
|
|
4
10
|
{
|
|
5
11
|
"version": "0.1.0-alpha.339",
|
|
6
12
|
"changes": [
|
package/dist/mind/prompt.js
CHANGED
|
@@ -503,7 +503,12 @@ function toolsSection(channel, options, context) {
|
|
|
503
503
|
tools_1.surfaceToolDef,
|
|
504
504
|
tools_1.restTool,
|
|
505
505
|
])
|
|
506
|
-
:
|
|
506
|
+
: uniqueToolsByName([
|
|
507
|
+
...channelTools,
|
|
508
|
+
tools_1.ponderTool,
|
|
509
|
+
...((context?.isGroupChat || options?.isReactionSignal) ? [tools_1.observeTool] : []),
|
|
510
|
+
tools_1.settleTool,
|
|
511
|
+
]);
|
|
507
512
|
const list = activeTools
|
|
508
513
|
.map((t) => `- ${t.function.name}: ${t.function.description}`)
|
|
509
514
|
.join("\n");
|