@ebowwa/glm-daemon-telegram 1.5.0 → 1.5.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ebowwa/glm-daemon-telegram",
3
- "version": "1.5.0",
3
+ "version": "1.5.1",
4
4
  "description": "Telegram adapter for GLM Daemon with ButlerAgent personality",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
package/src/index.ts CHANGED
@@ -500,6 +500,7 @@ class TelegramGLMBot {
500
500
  // /start command
501
501
  //
502
502
  // TODO: files to the telegram commands
503
+ // we are missing a few.. i.e. like /clean
503
504
  this.bot.onText(/\/start/, async (msg: TelegramBot.Message) => {
504
505
  const chatId = msg.chat.id;
505
506
  await this.bot.sendMessage(
package/src/mcp-client.ts CHANGED
@@ -127,29 +127,29 @@ export class MCPClient {
127
127
  export const DEFAULT_MCP_SERVERS: MCPServerConfig[] = [
128
128
  {
129
129
  name: 'hetzner',
130
- command: 'bunx',
131
- args: ['@ebowwa/hetzner-mcp'],
130
+ command: '/root/.bun/bin/bun',
131
+ args: ['x', '@ebowwa/hetzner-mcp'],
132
132
  env: { HCLOUD_TOKEN: process.env.HCLOUD_TOKEN || '' }
133
133
  },
134
134
  {
135
135
  name: 'tailscale',
136
- command: 'bunx',
137
- args: ['@ebowwa/tailscale'],
136
+ command: '/root/.bun/bin/bun',
137
+ args: ['x', '@ebowwa/tailscale'],
138
138
  },
139
139
  {
140
140
  name: 'tooling',
141
- command: 'bunx',
142
- args: ['@ebowwa/tooling-mcp'],
141
+ command: '/root/.bun/bin/bun',
142
+ args: ['x', '@ebowwa/tooling-mcp'],
143
143
  },
144
144
  {
145
145
  name: 'terminal',
146
- command: 'bunx',
147
- args: ['@ebowwa/terminal-mcp'],
146
+ command: '/root/.bun/bin/bun',
147
+ args: ['x', '@ebowwa/terminal-mcp'],
148
148
  },
149
149
  {
150
150
  name: 'github-search',
151
- command: 'bunx',
152
- args: ['@ebowwa/github-search-mcp'],
151
+ command: '/root/.bun/bin/bun',
152
+ args: ['x', '@ebowwa/github-search-mcp'],
153
153
  env: { GITHUB_TOKEN: process.env.GITHUB_TOKEN || '' }
154
154
  }
155
155
  ];