@deadragdoll/tellymcp 0.0.5 → 0.0.6

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 (3) hide show
  1. package/README-ru.md +63 -6
  2. package/README.md +63 -40
  3. package/package.json +1 -1
package/README-ru.md CHANGED
@@ -7,16 +7,73 @@
7
7
  [![node >= 24](https://img.shields.io/badge/node-%3E%3D24-339933)](https://nodejs.org/)
8
8
  [![license: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)
9
9
 
10
- TellyMCP — это Telegram Human-in-the-Loop MCP server для coding agents.
10
+ TellyMCP — это self-hosted Telegram control plane для coding agents.
11
11
 
12
- Он позволяет агенту:
12
+ Он привязывает реальные agent-сессии к Telegram, делает их доступными с телефона и даёт им работать вместе между локальными и удалёнными машинами.
13
+
14
+ Он не завязан на одного вендора или один coding assistant. Если агент умеет работать с MCP server, он может использовать TellyMCP.
15
+
16
+ ## Зачем он нужен
17
+
18
+ Coding agents полезны ровно до того момента, пока они не остаются одни в терминале:
19
+
20
+ - им нужно уточнение, пока тебя нет за компьютером
21
+ - им нужен approval перед рискованным действием
22
+ - им нужно передать скриншот, файл или note между сессиями
23
+ - им нужно быстро подключить человека или другого агента, не ломая общий workflow
24
+
25
+ TellyMCP даёт каждой сессии мобильную панель управления и collaboration layer:
26
+
27
+ - `Live` tmux view и лёгкое управление из Telegram
28
+ - session-scoped inbox и уведомления
29
+ - workspace-aware handoff для файлов и note
30
+ - локальную и удалённую коллаборацию между сессиями
31
+ - поддержку mixed agent setups, если они умеют говорить по MCP
32
+
33
+ ## Ключевые идеи продукта
34
+
35
+ - `Live` tmux view и управление внутри Telegram Mini App
36
+ - `Collab`-сценарии для локальных и удалённых agent-сессий
37
+ - `.mcp-xchange` как workspace-level handoff шина для note, файлов и скриншотов
38
+ - MCP-native pairing сессий и session-scoped tools
39
+ - optional gateway mode для multi-machine и multi-bot проектов
40
+
41
+ ## Human-in-the-loop — это только один слой системы
42
+
43
+ Telegram HITL здесь тоже есть, но он не исчерпывает продукт:
13
44
 
14
45
  - задавать человеку уточняющие вопросы через Telegram
15
46
  - получать несвязанные входящие сообщения позже через inbox
16
- - привязывать несколько agent-сессий
17
- - работать с локальными и удалёнными партнёрскими сессиями
18
- - открывать Live tmux view внутри Telegram Mini App
19
- - обмениваться note, скриншотами и файлами через `.mcp-xchange`
47
+ - уведомлять человека о прогрессе, blockers и approvals
48
+
49
+ ## Что отличает TellyMCP от простого Telegram bot bridge
50
+
51
+ - он завязан на сессии, а не только на чат
52
+ - он понимает локальные и удалённые collaboration targets
53
+ - у него есть live terminal surface, а не только обмен сообщениями
54
+ - он передаёт файлы через workspace-aware exchange paths, а не просто через ad hoc upload
55
+ - он может работать как standalone node или как gateway-backed control plane
56
+
57
+ ## Типовые сценарии
58
+
59
+ - держать долгоживущего агента доступным с телефона
60
+ - запускать рядом разных агентов, если каждый умеет подключаться по MCP
61
+ - подруливать tmux-сессией без ноутбука
62
+ - маршрутизировать работу между `frontend`, `backend`, `review` и другими локальными сессиями
63
+ - работать с удалёнными сессиями через gateway-backed project
64
+ - передавать note, скриншоты и реальные файлы через `.mcp-xchange`
65
+ - проверять локальный веб-интерфейс через `browser_*` tools и отправлять результат обратно в Telegram
66
+
67
+ ## Группы инструментов
68
+
69
+ - pairing и session context
70
+ - Telegram ask/notify/inbox
71
+ - `Live` tmux control
72
+ - browser inspection и screenshots
73
+ - partner notes и partner files
74
+ - tools sync и version checks
75
+
76
+ Полный список MCP tools лучше держать ниже по README и в самом MCP server, а не на первом экране.
20
77
 
21
78
  ## Prerequisites
22
79
 
package/README.md CHANGED
@@ -7,50 +7,73 @@
7
7
  [![node >= 24](https://img.shields.io/badge/node-%3E%3D24-339933)](https://nodejs.org/)
8
8
  [![license: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)
9
9
 
10
- TellyMCP is a Telegram Human-in-the-Loop MCP server for coding agents.
10
+ TellyMCP is a self-hosted Telegram control plane for coding agents.
11
11
 
12
- It lets an agent:
12
+ It pairs real agent sessions with Telegram, keeps them reachable from mobile, and lets them collaborate across local and remote machines.
13
+
14
+ It is not tied to one vendor or one coding assistant. If your agent can talk to an MCP server, it can use TellyMCP.
15
+
16
+ ## Why it exists
17
+
18
+ Coding agents are useful until they leave the terminal:
19
+
20
+ - they need clarification while you are away from the desk
21
+ - they need approval before doing something risky
22
+ - they need screenshots, files, or notes passed between sessions
23
+ - they need a human or another agent to unblock work without breaking flow
24
+
25
+ TellyMCP gives each session a mobile control surface and a collaboration layer:
26
+
27
+ - `Live` tmux view and light control from Telegram
28
+ - session-scoped inbox and notifications
29
+ - workspace-aware file and note handoffs
30
+ - local and remote session collaboration
31
+ - support for mixed agent setups, as long as they speak MCP
32
+
33
+ ## Core ideas
34
+
35
+ - `Live` tmux view and control inside Telegram Mini App
36
+ - `Collab` flows for local and remote agent sessions
37
+ - `.mcp-xchange` as a workspace-level handoff bus for notes, files, and screenshots
38
+ - MCP-native session pairing and session-scoped tools
39
+ - optional gateway mode for cross-machine and cross-bot projects
40
+
41
+ ## Human-in-the-loop is one layer, not the whole product
42
+
43
+ Telegram HITL is still supported, but it is not the whole story:
13
44
 
14
45
  - ask a human for clarification through Telegram
15
46
  - receive unsolicited Telegram messages later through an inbox
16
- - pair multiple agent sessions
17
- - collaborate across local and remote sessions
18
- - open a live tmux view inside Telegram Mini App
19
- - exchange notes, screenshots, and files through `.mcp-xchange`
20
-
21
- Current tools:
22
-
23
- - `create_session_pair_code`
24
- - `clear_session_pairing`
25
- - `set_session_context`
26
- - `set_tmux_target`
27
- - `get_tmux_target`
28
- - `get_session_context`
29
- - `clear_session_context`
30
- - `rename_session`
31
- - `notify_telegram`
32
- - `get_telegram_inbox_count`
33
- - `get_telegram_inbox`
34
- - `delete_telegram_inbox_message`
35
- - `ask_user_telegram`
36
- - `browser_open`
37
- - `browser_reload`
38
- - `browser_click`
39
- - `browser_fill`
40
- - `browser_press`
41
- - `browser_wait_for`
42
- - `browser_wait_for_url`
43
- - `browser_console`
44
- - `browser_errors`
45
- - `browser_network_failures`
46
- - `browser_clear_logs`
47
- - `browser_dom`
48
- - `browser_computed_style`
49
- - `browser_screenshot`
50
- - `browser_close`
51
- - `refresh_tools_markdown`
52
- - `send_partner_note`
53
- - `send_partner_file`
47
+ - notify a human about progress, blockers, and approvals
48
+
49
+ ## What makes it different from a simple Telegram bot bridge
50
+
51
+ - it is session-based, not just chat-based
52
+ - it understands local and remote collaboration targets
53
+ - it has a live terminal surface, not only message exchange
54
+ - it moves files through workspace-aware exchange paths, not just ad hoc uploads
55
+ - it can run as a standalone node or as a gateway-backed control plane
56
+
57
+ ## Typical use cases
58
+
59
+ - keep a long-running agent reachable from your phone
60
+ - run different agents side by side, as long as each one can connect over MCP
61
+ - steer a tmux-based session without opening a laptop
62
+ - route work between `frontend`, `backend`, `review`, or other local sessions
63
+ - collaborate with remote sessions through a gateway-backed project
64
+ - send notes, screenshots, and real files through `.mcp-xchange`
65
+ - inspect or screenshot a local web app with `browser_*` tools and send results back to Telegram
66
+
67
+ ## Tool groups
68
+
69
+ - session pairing and context
70
+ - Telegram ask/notify/inbox
71
+ - `Live` tmux control
72
+ - browser inspection and screenshots
73
+ - partner notes and partner files
74
+ - tools sync and version checks
75
+
76
+ The full MCP tool surface is documented later in this README and through the MCP server itself.
54
77
 
55
78
  ## Prerequisites
56
79
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deadragdoll/tellymcp",
3
- "version": "0.0.5",
3
+ "version": "0.0.6",
4
4
  "description": "TellyMCP - Telegram Human-in-the-Loop MCP Server",
5
5
  "main": "dist/services/features/telegram-mcp/runtime.service.js",
6
6
  "bin": {