@ouro.bot/cli 0.1.0-alpha.34 → 0.1.0-alpha.35

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 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.35",
6
+ "changes": [
7
+ "BlueBubbles no longer emits generic follow-up phrase bubbles like 'on it...' or 'followup...' into iMessage. The sense now uses typing plus concrete tool/error activity only, which keeps mobile turns quieter and less redundant."
8
+ ]
9
+ },
4
10
  {
5
11
  "version": "0.1.0-alpha.34",
6
12
  "changes": [
@@ -217,6 +217,7 @@ function createBlueBubblesCallbacks(client, chat, replyTarget) {
217
217
  followupPhrases: phrases.followup,
218
218
  startTypingOnModelStart: true,
219
219
  suppressInitialModelStatus: true,
220
+ suppressFollowupPhraseStatus: true,
220
221
  transport: {
221
222
  sendStatus: async (text) => {
222
223
  const sent = await client.sendText({
@@ -100,6 +100,9 @@ function createDebugActivityController(options) {
100
100
  return;
101
101
  }
102
102
  followupShown = true;
103
+ if (options.suppressFollowupPhraseStatus) {
104
+ return;
105
+ }
103
106
  setStatus(`${nextPhrase(options.followupPhrases)}...`);
104
107
  },
105
108
  onError(error) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ouro.bot/cli",
3
- "version": "0.1.0-alpha.34",
3
+ "version": "0.1.0-alpha.35",
4
4
  "main": "dist/heart/daemon/ouro-entry.js",
5
5
  "bin": {
6
6
  "cli": "dist/heart/daemon/ouro-bot-entry.js",