@ouro.bot/cli 0.1.0-alpha.85 → 0.1.0-alpha.86
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 +1 -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.86",
|
|
6
|
+
"changes": [
|
|
7
|
+
"Commitments section now uses the structured formatCommitments helper, rendering holding/criteria/release sections instead of a flat bullet list. Tests updated to cover bridges, tasks, and mustResolveBeforeHandoff."
|
|
8
|
+
]
|
|
9
|
+
},
|
|
4
10
|
{
|
|
5
11
|
"version": "0.1.0-alpha.85",
|
|
6
12
|
"changes": [
|
package/dist/mind/prompt.js
CHANGED
|
@@ -519,7 +519,7 @@ function commitmentsSection(options) {
|
|
|
519
519
|
const commitments = (0, commitments_1.deriveCommitments)(options.activeWorkFrame, job, options.activeWorkFrame.pendingObligations);
|
|
520
520
|
if (commitments.committedTo.length === 0)
|
|
521
521
|
return "";
|
|
522
|
-
return `## my commitments\n${
|
|
522
|
+
return `## my commitments\n\n${(0, commitments_1.formatCommitments)(commitments)}`;
|
|
523
523
|
}
|
|
524
524
|
const DELEGATION_REASON_PROSE_HINT = {
|
|
525
525
|
explicit_reflection: "something here calls for reflection",
|