@gonzih/cc-tg 0.1.4 → 0.1.5

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.
Files changed (2) hide show
  1. package/dist/bot.js +0 -9
  2. package/package.json +1 -1
package/dist/bot.js CHANGED
@@ -78,15 +78,6 @@ export class CcTgBot {
78
78
  if (toolName)
79
79
  logParts.push(`tool=${toolName}`);
80
80
  console.log(logParts.join(" "));
81
- // Surface tool activity to Telegram as a status line
82
- if (msg.type === "assistant" && toolName) {
83
- this.bot.sendMessage(chatId, `⚙️ ${toolName}...`).catch(() => { });
84
- }
85
- if (msg.type === "system" && subtype === "task_progress") {
86
- const desc = msg.payload.description ?? "";
87
- if (desc)
88
- this.bot.sendMessage(chatId, `🔍 ${desc}`).catch(() => { });
89
- }
90
81
  this.handleClaudeMessage(chatId, session, msg);
91
82
  });
92
83
  claude.on("stderr", (data) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gonzih/cc-tg",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "Claude Code Telegram bot — chat with Claude Code via Telegram",
5
5
  "type": "module",
6
6
  "bin": {