@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.
- package/README-ru.md +63 -6
- package/README.md +63 -40
- package/package.json +1 -1
package/README-ru.md
CHANGED
|
@@ -7,16 +7,73 @@
|
|
|
7
7
|
[](https://nodejs.org/)
|
|
8
8
|
[](LICENSE)
|
|
9
9
|
|
|
10
|
-
TellyMCP — это Telegram
|
|
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
|
-
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
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
|
[](https://nodejs.org/)
|
|
8
8
|
[](LICENSE)
|
|
9
9
|
|
|
10
|
-
TellyMCP is a Telegram
|
|
10
|
+
TellyMCP is a self-hosted Telegram control plane for coding agents.
|
|
11
11
|
|
|
12
|
-
It lets
|
|
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
|
-
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
-
|
|
24
|
-
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
-
|
|
29
|
-
-
|
|
30
|
-
-
|
|
31
|
-
- `
|
|
32
|
-
-
|
|
33
|
-
- `
|
|
34
|
-
- `
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
-
|
|
39
|
-
-
|
|
40
|
-
- `
|
|
41
|
-
-
|
|
42
|
-
-
|
|
43
|
-
-
|
|
44
|
-
|
|
45
|
-
|
|
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
|
|