morpheus-cli 0.1.8 → 0.1.9

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.
@@ -7,7 +7,6 @@ import os from 'os';
7
7
  import { ConfigManager } from '../config/manager.js';
8
8
  import { DisplayManager } from '../runtime/display.js';
9
9
  import { AudioAgent } from '../runtime/audio-agent.js';
10
- import { convert } from 'telegram-markdown-v2';
11
10
  export class TelegramAdapter {
12
11
  bot = null;
13
12
  isConnected = false;
@@ -23,10 +22,6 @@ export class TelegramAdapter {
23
22
  this.display.log('Telegram adapter already connected.', { source: 'Telegram', level: 'warning' });
24
23
  return;
25
24
  }
26
- const escapeMarkdownV2 = (text) => {
27
- // Regex matches all special characters requiring escaping
28
- return convert(text);
29
- };
30
25
  try {
31
26
  this.display.log('Connecting to Telegram...', { source: 'Telegram' });
32
27
  this.bot = new Telegraf(token);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "morpheus-cli",
3
- "version": "0.1.8",
3
+ "version": "0.1.9",
4
4
  "description": "Morpheus CLI Agent",
5
5
  "bin": {
6
6
  "morpheus": "./bin/morpheus.js"
@@ -47,7 +47,6 @@
47
47
  "open": "^11.0.0",
48
48
  "ora": "^9.1.0",
49
49
  "telegraf": "^4.16.3",
50
- "telegram-markdown-v2": "^0.0.4",
51
50
  "winston": "^3.19.0",
52
51
  "winston-daily-rotate-file": "^5.0.0",
53
52
  "zod": "^4.3.6"