@kl-c/matrixos 0.3.11 → 0.3.12

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/dist/cli/index.js CHANGED
@@ -2163,7 +2163,7 @@ var package_default;
2163
2163
  var init_package = __esm(() => {
2164
2164
  package_default = {
2165
2165
  name: "@kl-c/matrixos",
2166
- version: "0.3.11",
2166
+ version: "0.3.12",
2167
2167
  description: "MaTrixOS \u2014 Agentic OS for OpenCode. Personalizable, communicating, self-improving, resilient.",
2168
2168
  main: "./dist/index.js",
2169
2169
  types: "dist/index.d.ts",
@@ -90578,6 +90578,7 @@ class TelegramAdapter {
90578
90578
  }
90579
90579
  async handleUpdate(ctx) {
90580
90580
  const msg = ctx.message;
90581
+ console.error("[telegram-adapter] handleUpdate", msg?.from?.username, msg?.chat?.id, msg?.text?.slice(0, 30));
90581
90582
  const sttEnabled = this.config.voice?.stt?.enabled === true && this.voice.stt;
90582
90583
  const voice = msg?.voice ?? msg?.audio;
90583
90584
  if (voice && sttEnabled) {
@@ -90587,12 +90588,16 @@ class TelegramAdapter {
90587
90588
  const envelope = this.normalize(ctx);
90588
90589
  if (this.config.allowedChatId) {
90589
90590
  const chatId = envelope.recipient?.id;
90591
+ console.error("[telegram-adapter] allowedChatId", this.config.allowedChatId, "actual", chatId);
90590
90592
  if (chatId !== this.config.allowedChatId) {
90591
90593
  return;
90592
90594
  }
90593
90595
  }
90594
90596
  if (this.messageHandler) {
90597
+ console.error("[telegram-adapter] calling messageHandler");
90595
90598
  await this.messageHandler(envelope);
90599
+ } else {
90600
+ console.error("[telegram-adapter] no messageHandler registered");
90596
90601
  }
90597
90602
  }
90598
90603
  async handleVoiceMessage(ctx, voice) {
@@ -2163,7 +2163,7 @@ var package_default;
2163
2163
  var init_package = __esm(() => {
2164
2164
  package_default = {
2165
2165
  name: "@kl-c/matrixos",
2166
- version: "0.3.11",
2166
+ version: "0.3.12",
2167
2167
  description: "MaTrixOS \u2014 Agentic OS for OpenCode. Personalizable, communicating, self-improving, resilient.",
2168
2168
  main: "./dist/index.js",
2169
2169
  types: "dist/index.d.ts",
@@ -90633,6 +90633,7 @@ class TelegramAdapter {
90633
90633
  }
90634
90634
  async handleUpdate(ctx) {
90635
90635
  const msg = ctx.message;
90636
+ console.error("[telegram-adapter] handleUpdate", msg?.from?.username, msg?.chat?.id, msg?.text?.slice(0, 30));
90636
90637
  const sttEnabled = this.config.voice?.stt?.enabled === true && this.voice.stt;
90637
90638
  const voice = msg?.voice ?? msg?.audio;
90638
90639
  if (voice && sttEnabled) {
@@ -90642,12 +90643,16 @@ class TelegramAdapter {
90642
90643
  const envelope = this.normalize(ctx);
90643
90644
  if (this.config.allowedChatId) {
90644
90645
  const chatId = envelope.recipient?.id;
90646
+ console.error("[telegram-adapter] allowedChatId", this.config.allowedChatId, "actual", chatId);
90645
90647
  if (chatId !== this.config.allowedChatId) {
90646
90648
  return;
90647
90649
  }
90648
90650
  }
90649
90651
  if (this.messageHandler) {
90652
+ console.error("[telegram-adapter] calling messageHandler");
90650
90653
  await this.messageHandler(envelope);
90654
+ } else {
90655
+ console.error("[telegram-adapter] no messageHandler registered");
90651
90656
  }
90652
90657
  }
90653
90658
  async handleVoiceMessage(ctx, voice) {
package/dist/index.js CHANGED
@@ -368019,7 +368019,7 @@ function getCachedVersion(options = {}) {
368019
368019
  // package.json
368020
368020
  var package_default = {
368021
368021
  name: "@kl-c/matrixos",
368022
- version: "0.3.11",
368022
+ version: "0.3.12",
368023
368023
  description: "MaTrixOS \u2014 Agentic OS for OpenCode. Personalizable, communicating, self-improving, resilient.",
368024
368024
  main: "./dist/index.js",
368025
368025
  types: "dist/index.d.ts",
@@ -443586,6 +443586,7 @@ class TelegramAdapter {
443586
443586
  }
443587
443587
  async handleUpdate(ctx) {
443588
443588
  const msg = ctx.message;
443589
+ console.error("[telegram-adapter] handleUpdate", msg?.from?.username, msg?.chat?.id, msg?.text?.slice(0, 30));
443589
443590
  const sttEnabled = this.config.voice?.stt?.enabled === true && this.voice.stt;
443590
443591
  const voice = msg?.voice ?? msg?.audio;
443591
443592
  if (voice && sttEnabled) {
@@ -443595,12 +443596,16 @@ class TelegramAdapter {
443595
443596
  const envelope = this.normalize(ctx);
443596
443597
  if (this.config.allowedChatId) {
443597
443598
  const chatId = envelope.recipient?.id;
443599
+ console.error("[telegram-adapter] allowedChatId", this.config.allowedChatId, "actual", chatId);
443598
443600
  if (chatId !== this.config.allowedChatId) {
443599
443601
  return;
443600
443602
  }
443601
443603
  }
443602
443604
  if (this.messageHandler) {
443605
+ console.error("[telegram-adapter] calling messageHandler");
443603
443606
  await this.messageHandler(envelope);
443607
+ } else {
443608
+ console.error("[telegram-adapter] no messageHandler registered");
443604
443609
  }
443605
443610
  }
443606
443611
  async handleVoiceMessage(ctx, voice) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@kl-c/matrixos",
3
- "version": "0.3.11",
4
- "description": "MaTrixOS Agentic OS for OpenCode. Personalizable, communicating, self-improving, resilient.",
3
+ "version": "0.3.12",
4
+ "description": "MaTrixOS \u2014 Agentic OS for OpenCode. Personalizable, communicating, self-improving, resilient.",
5
5
  "main": "./dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "type": "module",
@@ -154,30 +154,30 @@
154
154
  "zod": "^4.4.3"
155
155
  },
156
156
  "devDependencies": {
157
- "@matrixos/agents-md-core": "0.1.27",
158
- "@matrixos/boulder-state": "0.1.27",
159
- "@matrixos/claude-code-compat-core": "0.1.27",
160
- "@matrixos/comment-checker-core": "0.1.27",
161
- "@matrixos/delegate-core": "0.1.27",
162
- "@matrixos/egress-core": "0.1.27",
163
- "@matrixos/git-bash-mcp": "0.0.0",
164
- "@matrixos/hashline-core": "0.1.27",
165
- "@matrixos/learning-loop": "0.1.27",
166
- "@matrixos/lsp-core": "0.1.27",
167
- "@matrixos/mcp-client-core": "0.1.27",
168
- "@matrixos/mcp-stdio-core": "0.1.27",
169
- "@matrixos/model-core": "0.1.27",
170
- "@matrixos/omo-config-core": "0.1.27",
171
- "@matrixos/matrix-gateway-core": "0.1.27",
172
- "@matrixos/prompts-core": "0.1.27",
173
- "@matrixos/rules-engine": "0.1.27",
174
- "@matrixos/rgpd-compliance-core": "0.1.27",
175
- "@matrixos/shared-skills": "0.1.27",
176
- "@matrixos/skills-loader-core": "0.1.27",
177
- "@matrixos/team-core": "0.1.27",
178
- "@matrixos/telemetry-core": "0.1.27",
179
- "@matrixos/tmux-core": "0.1.27",
180
- "@matrixos/utils": "0.1.27",
157
+ "@matrixos/agents-md-core": "workspace:*",
158
+ "@matrixos/boulder-state": "workspace:*",
159
+ "@matrixos/claude-code-compat-core": "workspace:*",
160
+ "@matrixos/comment-checker-core": "workspace:*",
161
+ "@matrixos/delegate-core": "workspace:*",
162
+ "@matrixos/egress-core": "workspace:*",
163
+ "@matrixos/git-bash-mcp": "workspace:*",
164
+ "@matrixos/hashline-core": "workspace:*",
165
+ "@matrixos/learning-loop": "workspace:*",
166
+ "@matrixos/lsp-core": "workspace:*",
167
+ "@matrixos/mcp-client-core": "workspace:*",
168
+ "@matrixos/mcp-stdio-core": "workspace:*",
169
+ "@matrixos/model-core": "workspace:*",
170
+ "@matrixos/omo-config-core": "workspace:*",
171
+ "@matrixos/matrix-gateway-core": "workspace:*",
172
+ "@matrixos/prompts-core": "workspace:*",
173
+ "@matrixos/rules-engine": "workspace:*",
174
+ "@matrixos/rgpd-compliance-core": "workspace:*",
175
+ "@matrixos/shared-skills": "workspace:*",
176
+ "@matrixos/skills-loader-core": "workspace:*",
177
+ "@matrixos/team-core": "workspace:*",
178
+ "@matrixos/telemetry-core": "workspace:*",
179
+ "@matrixos/tmux-core": "workspace:*",
180
+ "@matrixos/utils": "workspace:*",
181
181
  "@types/js-yaml": "^4.0.9",
182
182
  "@types/picomatch": "^4.0.3",
183
183
  "@typescript/native-preview": "7.0.0-dev.20260518.1",