@ouro.bot/cli 0.1.0-alpha.486 → 0.1.0-alpha.488
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/senses/bluebubbles/index.js +12 -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.488",
|
|
6
|
+
"changes": [
|
|
7
|
+
"BlueBubbles group chats stay fully silent on `observe` turns. The engine emits `onToolStart(\"observe\")` / `onToolEnd(\"observe\")` even when the resulting outcome is `observed` (no reply), and the BlueBubbles adapter previously treated every tool start as reply commitment — so groups would briefly show typing or mark-read before the silent path completed. Both callbacks now short-circuit for `observe`: no startTypingNow, no toolCallbacks dispatch, just an observability event. Real reply-commit semantics (typing, mark-read, status messages on real tools) are preserved. Regression test reproduces the real callback sequence from the engine and asserts the lane stays quiet."
|
|
8
|
+
]
|
|
9
|
+
},
|
|
4
10
|
{
|
|
5
11
|
"version": "0.1.0-alpha.486",
|
|
6
12
|
"changes": [
|
|
@@ -510,6 +510,15 @@ function createBlueBubblesCallbacks(client, chat, replyTarget, isGroupChat) {
|
|
|
510
510
|
},
|
|
511
511
|
onReasoningChunk(_text) { },
|
|
512
512
|
onToolStart(name, _args) {
|
|
513
|
+
if (name === "observe") {
|
|
514
|
+
(0, runtime_1.emitNervesEvent)({
|
|
515
|
+
component: "senses",
|
|
516
|
+
event: "senses.bluebubbles_tool_start",
|
|
517
|
+
message: "bluebubbles tool execution started",
|
|
518
|
+
meta: { name },
|
|
519
|
+
});
|
|
520
|
+
return;
|
|
521
|
+
}
|
|
513
522
|
// Tool activity is a reply commitment — start typing if not already
|
|
514
523
|
if (!typingActive)
|
|
515
524
|
startTypingNow();
|
|
@@ -522,7 +531,9 @@ function createBlueBubblesCallbacks(client, chat, replyTarget, isGroupChat) {
|
|
|
522
531
|
});
|
|
523
532
|
},
|
|
524
533
|
onToolEnd(name, summary, success) {
|
|
525
|
-
|
|
534
|
+
if (name !== "observe") {
|
|
535
|
+
toolCallbacks.onToolEnd(name, summary, success);
|
|
536
|
+
}
|
|
526
537
|
(0, runtime_1.emitNervesEvent)({
|
|
527
538
|
component: "senses",
|
|
528
539
|
event: "senses.bluebubbles_tool_end",
|