@ouro.bot/cli 0.1.0-alpha.821 → 0.1.0-alpha.822

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,13 @@
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.822",
6
+ "changes": [
7
+ "Suppress a proactive Telegram message that repeats a recent one apart from its clock reading.",
8
+ "Evict the repetition guard's oldest entry in insertion order, removing a comparison branch monotonic time could never take."
9
+ ]
10
+ },
4
11
  {
5
12
  "version": "0.1.0-alpha.821",
6
13
  "changes": [
@@ -1,5 +1,5 @@
1
1
  {
2
- "runtimeVersion": "0.1.0-alpha.821",
2
+ "runtimeVersion": "0.1.0-alpha.822",
3
3
  "bundleSchemaVersion": 3,
4
4
  "lastUpdated": "2026-09-03T00:00:00.000Z"
5
5
  }
@@ -1,7 +1,7 @@
1
1
  <?xml version="1.0"?>
2
2
  <Container version="2">
3
3
  <Name>ouro-butler</Name>
4
- <Repository>ghcr.io/ourostack/ouroboros-butler:0.1.0-alpha.821</Repository>
4
+ <Repository>ghcr.io/ourostack/ouroboros-butler:0.1.0-alpha.822</Repository>
5
5
  <Registry>https://github.com/ourostack/ouroboros/pkgs/container/ouroboros-butler</Registry>
6
6
  <Network>host</Network>
7
7
  <Shell>sh</Shell>
@@ -51,6 +51,7 @@ exports.loadTelegramSenseCredentials = loadTelegramSenseCredentials;
51
51
  exports.createProductionTelegramRelationshipComposition = createProductionTelegramRelationshipComposition;
52
52
  exports.startTelegramSenseApp = startTelegramSenseApp;
53
53
  exports.sendTelegramExternalEventDecision = sendTelegramExternalEventDecision;
54
+ exports.createProactiveRepetitionGuard = createProactiveRepetitionGuard;
54
55
  exports.withTelegramTypingIndicator = withTelegramTypingIndicator;
55
56
  exports.sendTelegramAwaitFollowUp = sendTelegramAwaitFollowUp;
56
57
  const node_crypto_1 = require("node:crypto");
@@ -720,6 +721,7 @@ function createTelegramSenseApp(options) {
720
721
  const api = authorityTransport?.api ?? options.api ?? (0, telegram_client_1.createTelegramBotApi)({ token: botToken });
721
722
  // Only the root authority transport admits sendChatAction, so presence is offered
722
723
  // exactly where it is actually supported rather than attempted everywhere.
724
+ const proactiveRepetitionGuard = createProactiveRepetitionGuard();
723
725
  const sendTypingIndicator = authorityTransport
724
726
  ? async (chatId) => { await api.request("sendChatAction", { chat_id: chatId, action: "typing" }); }
725
727
  : undefined;
@@ -1879,7 +1881,20 @@ function createTelegramSenseApp(options) {
1879
1881
  },
1880
1882
  async sendProactive(text, signal) {
1881
1883
  await runWithAcceptanceAuditOwner(async () => {
1882
- const effect = await deliverButlerEffect(requiredText(text, "proactive message"), `proactive:${(0, node_crypto_1.randomUUID)()}`, signal);
1884
+ const proactiveText = requiredText(text, "proactive message");
1885
+ // Unsolicited repetition is the one thing a household agent cannot take
1886
+ // back. External-event decisions are deliberately not guarded here:
1887
+ // dropping one could leave its event undispositioned.
1888
+ if (!proactiveRepetitionGuard.shouldSend(proactiveText)) {
1889
+ (0, runtime_1.emitNervesEvent)({
1890
+ component: "senses",
1891
+ event: "senses.telegram_proactive_repetition_suppressed",
1892
+ message: "suppressed a proactive message repeating a recent one",
1893
+ meta: { agentName: options.agentName, subject },
1894
+ });
1895
+ return;
1896
+ }
1897
+ const effect = await deliverButlerEffect(proactiveText, `proactive:${(0, node_crypto_1.randomUUID)()}`, signal);
1883
1898
  const sessionPath = (0, shared_turn_1.getSenseSessionPath)(options.agentName, configuredOwnerFriendId, "telegram", configuredOwnerSessionKey, agentRoot);
1884
1899
  await recordAcceptedEffects(sessionPath, [effect]);
1885
1900
  });
@@ -2234,6 +2249,51 @@ async function sendTelegramExternalEventDecision(agentName, input) {
2234
2249
  await app.stop();
2235
2250
  }
2236
2251
  }
2252
+ /**
2253
+ * Suppresses a proactive message that repeats one sent recently.
2254
+ *
2255
+ * Ari received four probe messages in about two minutes, three of them identical
2256
+ * apart from the clock reading. Only the clock is normalised away — counts and
2257
+ * every other number are the payload, so "3 of 10 episodes" and "7 of 10" stay
2258
+ * distinct and both send.
2259
+ *
2260
+ * This catches verbatim-apart-from-the-clock repetition, not semantic near
2261
+ * duplicates: a message reworded between sends still goes out.
2262
+ */
2263
+ function createProactiveRepetitionGuard(options) {
2264
+ const windowMs = options?.windowMs ?? 900_000;
2265
+ const now = options?.now ?? (() => Date.now());
2266
+ const maxEntries = options?.maxEntries ?? 32;
2267
+ const seen = new Map();
2268
+ const normalize = (text) => text
2269
+ .trim()
2270
+ .replace(/\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}(?:\.\d+)?Z?/gu, "<timestamp>")
2271
+ .replace(/\b\d{1,2}:\d{2}(?::\d{2})?\b/gu, "<clock>")
2272
+ .replace(/\s+/gu, " ");
2273
+ return {
2274
+ shouldSend(text) {
2275
+ const at = now();
2276
+ for (const [key, sentAt] of [...seen]) {
2277
+ if (at - sentAt >= windowMs)
2278
+ seen.delete(key);
2279
+ }
2280
+ const key = normalize(text);
2281
+ const previous = seen.get(key);
2282
+ if (previous !== undefined && at - previous < windowMs)
2283
+ return false;
2284
+ seen.set(key, at);
2285
+ // A Map keeps insertion order and entries are inserted in send order, so
2286
+ // the earliest key is the oldest; scanning for a minimum would carry a
2287
+ // comparison branch that monotonic time can never take.
2288
+ for (const oldest of seen.keys()) {
2289
+ if (seen.size <= maxEntries)
2290
+ break;
2291
+ seen.delete(oldest);
2292
+ }
2293
+ return true;
2294
+ },
2295
+ };
2296
+ }
2237
2297
  /**
2238
2298
  * Telegram clears a typing indicator after roughly five seconds, so a turn that
2239
2299
  * thinks for longer has to refresh it or the chat goes silent while the Butler is
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@ouro.bot/cli",
3
- "version": "0.1.0-alpha.821",
3
+ "version": "0.1.0-alpha.822",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@ouro.bot/cli",
9
- "version": "0.1.0-alpha.821",
9
+ "version": "0.1.0-alpha.822",
10
10
  "dependencies": {
11
11
  "@anthropic-ai/sdk": "^0.78.0",
12
12
  "@azure/identity": "^4.13.0",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ouro.bot/cli",
3
- "version": "0.1.0-alpha.821",
3
+ "version": "0.1.0-alpha.822",
4
4
  "engines": {
5
5
  "node": ">=22"
6
6
  },