teleton 0.7.3 → 0.7.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.
- package/README.md +64 -35
- package/dist/{chunk-RBU6JXD3.js → chunk-2GLHOJ5C.js} +268 -59
- package/dist/chunk-5UVXJMOX.js +292 -0
- package/dist/{chunk-DAMCNMYL.js → chunk-AVDWXYQ7.js} +73 -28
- package/dist/{chunk-RMLQS3X6.js → chunk-CB2Y45HA.js} +106 -1
- package/dist/{chunk-5PLZ3KSO.js → chunk-DMXTIRUW.js} +5 -6
- package/dist/{chunk-A4GCOHCE.js → chunk-G2LLMJXJ.js} +1751 -116
- package/dist/{chunk-FNV5FF35.js → chunk-LCCVZ4D2.js} +32 -16
- package/dist/{chunk-BU453WX4.js → chunk-OGMVWDVU.js} +4172 -3792
- package/dist/chunk-QOQWUUA4.js +158 -0
- package/dist/{chunk-4DU3C27M.js → chunk-R4YSJ4EY.js} +5 -1
- package/dist/{chunk-XBKSS6DM.js → chunk-VFA7QMCZ.js} +5 -3
- package/dist/{chunk-VAUJSSD3.js → chunk-XQUHC3JZ.js} +1 -1
- package/dist/{chunk-RO62LO6Z.js → chunk-YP25WTQK.js} +2 -0
- package/dist/cli/index.js +234 -289
- package/dist/{client-RTNALK7W.js → client-O37XDCJB.js} +4 -5
- package/dist/index.js +12 -13
- package/dist/{memory-5SS3Q5EA.js → memory-KQALFUV3.js} +6 -7
- package/dist/{migrate-M7SJMDOL.js → migrate-UV3WEL5D.js} +6 -7
- package/dist/{server-FOC5P7U6.js → server-BHHJGUDF.js} +324 -16
- package/dist/{setup-server-BVVD2PR6.js → setup-server-G7UG2DI3.js} +26 -118
- package/dist/store-H4XPNGC2.js +34 -0
- package/dist/{task-dependency-resolver-WKZWJLLM.js → task-dependency-resolver-VMEVJRPO.js} +2 -2
- package/dist/{task-executor-PD3H4MLO.js → task-executor-WWSPBJ4V.js} +1 -1
- package/dist/{tool-index-MIVK3D7H.js → tool-index-2KH3OB6X.js} +5 -5
- package/dist/web/assets/index-BrVqauzj.css +1 -0
- package/dist/web/assets/index-Bx8JW3gV.js +72 -0
- package/dist/web/assets/{index.es-7MTSV5SL.js → index.es-Pet5-M13.js} +1 -1
- package/dist/web/index.html +2 -2
- package/package.json +3 -3
- package/dist/chunk-JQDLW7IE.js +0 -107
- package/dist/chunk-UCN6TI25.js +0 -143
- package/dist/web/assets/index-By_fs4Jl.js +0 -72
- package/dist/web/assets/index-CRDIf07k.css +0 -1
- package/scripts/patch-gramjs.sh +0 -46
- package/scripts/postinstall.mjs +0 -16
package/README.md
CHANGED
|
@@ -15,18 +15,18 @@
|
|
|
15
15
|
|
|
16
16
|
---
|
|
17
17
|
|
|
18
|
-
<p align="center">Teleton is an autonomous AI agent platform that operates as a real Telegram user account (not a bot). It thinks through an agentic loop with tool calling, remembers conversations across sessions with hybrid RAG, and natively integrates the TON blockchain: send crypto, swap on DEXs, bid on domains, verify payments - all from a chat message. It can schedule tasks to run autonomously at any time. It ships with
|
|
18
|
+
<p align="center">Teleton is an autonomous AI agent platform that operates as a real Telegram user account (not a bot). It thinks through an agentic loop with tool calling, remembers conversations across sessions with hybrid RAG, and natively integrates the TON blockchain: send crypto, swap on DEXs, bid on domains, verify payments - all from a chat message. It can schedule tasks to run autonomously at any time. It ships with 125+ built-in tools, supports 11 LLM providers, and exposes a Plugin SDK so you can build your own tools on top of the platform.</p>
|
|
19
19
|
|
|
20
20
|
### Key Highlights
|
|
21
21
|
|
|
22
22
|
- **Full Telegram access** - Operates as a real user via MTProto (GramJS), not a limited bot
|
|
23
23
|
- **Agentic loop** - Up to 5 iterations of tool calling per message, the agent thinks, acts, observes, and repeats
|
|
24
|
-
- **Multi-Provider LLM** - Anthropic, OpenAI, Google Gemini, xAI Grok, Groq, OpenRouter, Moonshot, Mistral, Cocoon, Local
|
|
24
|
+
- **Multi-Provider LLM** - Anthropic, Claude Code, OpenAI, Google Gemini, xAI Grok, Groq, OpenRouter, Moonshot, Mistral, Cocoon, Local (11 providers)
|
|
25
25
|
- **TON Blockchain** - Built-in W5R1 wallet, send/receive TON & jettons, swap on STON.fi and DeDust, NFTs, DNS domains
|
|
26
26
|
- **Persistent memory** - Hybrid RAG (sqlite-vec + FTS5), auto-compaction with AI summarization, daily logs
|
|
27
|
-
- **
|
|
27
|
+
- **125+ built-in tools** - Messaging, media, blockchain, DEX trading, deals, DNS, exec, journaling, and more
|
|
28
28
|
- **Plugin SDK** - Extend the agent with custom tools, frozen SDK with isolated databases, secrets management, lifecycle hooks
|
|
29
|
-
- **MCP Client** - Connect external tool servers (stdio/SSE) with 2 lines of YAML, no code, no rebuild
|
|
29
|
+
- **MCP Client** - Connect external tool servers (stdio/SSE/Streamable HTTP) with 2 lines of YAML, no code, no rebuild
|
|
30
30
|
- **Secure by design** - Prompt injection defense, sandboxed workspace, plugin isolation, wallet encryption
|
|
31
31
|
|
|
32
32
|
---
|
|
@@ -37,21 +37,22 @@
|
|
|
37
37
|
|
|
38
38
|
| Category | Tools | Description |
|
|
39
39
|
| ------------- | ----- | ------------------------------------------------------------------------------------------------------------------ |
|
|
40
|
-
| Telegram |
|
|
40
|
+
| Telegram | 77 | Messaging, media, chats, groups, polls, stickers, gifts, stars, stories, contacts, folders, profile, memory, tasks, voice transcription, scheduled messages |
|
|
41
41
|
| TON & Jettons | 15 | W5R1 wallet, send/receive TON & jettons, balances, prices, holders, history, charts, NFTs, smart DEX router |
|
|
42
42
|
| STON.fi DEX | 5 | Swap, quote, search, trending tokens, liquidity pools |
|
|
43
43
|
| DeDust DEX | 5 | Swap, quote, pools, prices, token analytics (holders, top traders, buy/sell tax) |
|
|
44
|
-
| TON DNS |
|
|
44
|
+
| TON DNS | 8 | Domain auctions, bidding, linking/unlinking, TON Site hosting, resolution, availability checks |
|
|
45
45
|
| Deals | 5 | P2P escrow with inline buttons, on-chain payment verification, anti double-spend |
|
|
46
46
|
| Journal | 3 | Trade/operation logging with P&L tracking and natural language queries |
|
|
47
47
|
| Web | 2 | Web search and page extraction via Tavily (search, fetch/extract) |
|
|
48
48
|
| Workspace | 6 | Sandboxed file operations with path traversal protection |
|
|
49
|
+
| Exec | 4 | System execution (YOLO mode) — shell commands, file read/write, process management (off by default, admin-only) |
|
|
49
50
|
|
|
50
51
|
### Advanced Capabilities
|
|
51
52
|
|
|
52
53
|
| Capability | Description |
|
|
53
54
|
| ----------------------- | --------------------------------------------------------------------------------------------------------------------------- |
|
|
54
|
-
| **Multi-Provider LLM** | Switch between Anthropic, OpenAI, Google, xAI, Groq, OpenRouter, Moonshot, Mistral, Cocoon, or Local
|
|
55
|
+
| **Multi-Provider LLM** | Switch between Anthropic, Claude Code, OpenAI, Google, xAI, Groq, OpenRouter, Moonshot, Mistral, Cocoon, or Local — Dashboard validates API key before switching |
|
|
55
56
|
| **RAG + Hybrid Search** | Local ONNX embeddings (384d) or Voyage AI (512d/1024d) with FTS5 keyword + sqlite-vec cosine similarity, fused via RRF |
|
|
56
57
|
| **Auto-Compaction** | AI-summarized context management prevents overflow, preserves key information in `memory/*.md` files |
|
|
57
58
|
| **Observation Masking** | Compresses old tool results to one-line summaries, saving ~90% context window |
|
|
@@ -61,9 +62,10 @@
|
|
|
61
62
|
| **Scheduled Tasks** | Time-based task execution with DAG dependency resolution |
|
|
62
63
|
| **Message Debouncing** | Intelligent batching of rapid group messages (DMs are always instant) |
|
|
63
64
|
| **Daily Logs** | Automatic session summaries preserved across resets |
|
|
64
|
-
| **Multi-Policy Access** | Configurable DM/group policies (open, allowlist,
|
|
65
|
-
| **Tool RAG** | Semantic tool selection - sends only the top-K most relevant tools per message (hybrid vector + FTS5, configurable `top_k`, `always_include` patterns) |
|
|
66
|
-
| **MCP Client** | Connect external MCP tool servers (stdio or
|
|
65
|
+
| **Multi-Policy Access** | Configurable DM/group policies (open, allowlist, admin-only, disabled) with per-group module permissions |
|
|
66
|
+
| **Tool RAG** | Semantic tool selection (enabled by default) - sends only the top-K most relevant tools per message (hybrid vector + FTS5, configurable `top_k`, `always_include` patterns) |
|
|
67
|
+
| **MCP Client** | Connect external MCP tool servers (stdio, SSE, or Streamable HTTP) - auto-discovery, namespaced tools, managed via CLI or WebUI |
|
|
68
|
+
| **System Execution** | YOLO mode — 4 system tools (shell, file read/write, process list) with audit logging, configurable timeout, admin-only scope (off by default) |
|
|
67
69
|
| **Sandboxed Workspace** | Secure file system with recursive URL decoding, symlink detection, and immutable config files |
|
|
68
70
|
|
|
69
71
|
---
|
|
@@ -71,7 +73,7 @@
|
|
|
71
73
|
## Prerequisites
|
|
72
74
|
|
|
73
75
|
- **Node.js 20.0.0+** - [Download](https://nodejs.org/)
|
|
74
|
-
- **LLM API Key** - One of: [Anthropic](https://console.anthropic.com/) (recommended), [OpenAI](https://platform.openai.com/), [Google](https://aistudio.google.com/), [xAI](https://console.x.ai/), [Groq](https://console.groq.com/), [OpenRouter](https://openrouter.ai/)
|
|
76
|
+
- **LLM API Key** - One of: [Anthropic](https://console.anthropic.com/) (recommended), [OpenAI](https://platform.openai.com/), [Google](https://aistudio.google.com/), [xAI](https://console.x.ai/), [Groq](https://console.groq.com/), [OpenRouter](https://openrouter.ai/), [Moonshot](https://platform.moonshot.ai/), [Mistral](https://console.mistral.ai/) — or keyless: Claude Code (auto-detect), Cocoon (TON), Local (Ollama/vLLM)
|
|
75
77
|
- **Telegram Account** - Dedicated account recommended for security
|
|
76
78
|
- **Telegram API Credentials** - From [my.telegram.org/apps](https://my.telegram.org/apps)
|
|
77
79
|
- **Your Telegram User ID** - Message [@userinfobot](https://t.me/userinfobot)
|
|
@@ -109,7 +111,7 @@ teleton setup
|
|
|
109
111
|
```
|
|
110
112
|
|
|
111
113
|
The wizard will configure:
|
|
112
|
-
- LLM provider selection (Anthropic, OpenAI, Google, xAI, Groq, OpenRouter)
|
|
114
|
+
- LLM provider selection (11 providers: Anthropic, Claude Code, OpenAI, Google, xAI, Groq, OpenRouter, Moonshot, Mistral, Cocoon, Local)
|
|
113
115
|
- Telegram authentication (API credentials, phone, login code)
|
|
114
116
|
- Access policies (DM/group response rules)
|
|
115
117
|
- Admin user ID
|
|
@@ -152,15 +154,15 @@ The `teleton setup` wizard generates a fully configured `~/.teleton/config.yaml`
|
|
|
152
154
|
|
|
153
155
|
```yaml
|
|
154
156
|
agent:
|
|
155
|
-
provider: "anthropic" # anthropic | openai | google | xai | groq | openrouter
|
|
157
|
+
provider: "anthropic" # anthropic | claude-code | openai | google | xai | groq | openrouter | moonshot | mistral | cocoon | local
|
|
156
158
|
api_key: "sk-ant-api03-..."
|
|
157
|
-
model: "claude-opus-4-
|
|
158
|
-
utility_model: "claude-
|
|
159
|
+
model: "claude-opus-4-6"
|
|
160
|
+
utility_model: "claude-haiku-4-5-20251001" # for summarization, compaction, vision
|
|
159
161
|
max_agentic_iterations: 5
|
|
160
162
|
|
|
161
163
|
telegram:
|
|
162
|
-
dm_policy: "
|
|
163
|
-
group_policy: "open" # open | allowlist | disabled
|
|
164
|
+
dm_policy: "admin-only" # open | allowlist | admin-only | disabled
|
|
165
|
+
group_policy: "open" # open | allowlist | admin-only | disabled
|
|
164
166
|
require_mention: true
|
|
165
167
|
admin_ids: [123456789]
|
|
166
168
|
owner_name: "Your Name"
|
|
@@ -181,8 +183,31 @@ webui: # Optional: Web dashboard
|
|
|
181
183
|
port: 7777 # HTTP server port
|
|
182
184
|
host: "127.0.0.1" # Localhost only (security)
|
|
183
185
|
# auth_token: "..." # Auto-generated if omitted
|
|
186
|
+
|
|
187
|
+
# capabilities: # System execution (YOLO mode, off by default)
|
|
188
|
+
# exec:
|
|
189
|
+
# mode: "off" # off | yolo
|
|
190
|
+
# scope: "admin-only" # admin-only | allowlist | all
|
|
184
191
|
```
|
|
185
192
|
|
|
193
|
+
### Supported Models
|
|
194
|
+
|
|
195
|
+
All models are defined in `src/config/model-catalog.ts` and shared across the CLI setup, WebUI setup wizard, and Dashboard. To add a model, add it there — it will appear everywhere automatically.
|
|
196
|
+
|
|
197
|
+
| Provider | Models |
|
|
198
|
+
|----------|--------|
|
|
199
|
+
| **Anthropic** | Claude Opus 4.6, Claude Opus 4.5, Claude Sonnet 4.6, Claude Haiku 4.5 |
|
|
200
|
+
| **Claude Code** | Same as Anthropic (auto-detected credentials) |
|
|
201
|
+
| **OpenAI** | GPT-5, GPT-5 Pro, GPT-5 Mini, GPT-5.1, GPT-4o, GPT-4.1, GPT-4.1 Mini, o4 Mini, o3, Codex Mini |
|
|
202
|
+
| **Google** | Gemini 3 Pro (preview), Gemini 3 Flash (preview), Gemini 2.5 Pro, Gemini 2.5 Flash, Gemini 2.5 Flash Lite, Gemini 2.0 Flash |
|
|
203
|
+
| **xAI** | Grok 4.1 Fast, Grok 4 Fast, Grok 4, Grok Code, Grok 3 |
|
|
204
|
+
| **Groq** | Llama 4 Maverick, Qwen3 32B, DeepSeek R1 70B, Llama 3.3 70B |
|
|
205
|
+
| **OpenRouter** | Claude Opus/Sonnet, GPT-5, Gemini, DeepSeek R1/V3, Qwen3 Coder/Max/235B, Nemotron, Sonar Pro, MiniMax, Grok 4 |
|
|
206
|
+
| **Moonshot** | Kimi K2.5, Kimi K2 Thinking |
|
|
207
|
+
| **Mistral** | Devstral Small/Medium, Mistral Large, Magistral Small |
|
|
208
|
+
| **Cocoon** | Qwen/Qwen3-32B (decentralized, pays in TON) |
|
|
209
|
+
| **Local** | Auto-detected (Ollama, vLLM, LM Studio) |
|
|
210
|
+
|
|
186
211
|
### MCP Servers
|
|
187
212
|
|
|
188
213
|
Connect external tool servers via the [Model Context Protocol](https://modelcontextprotocol.io/). No code needed - tools are auto-discovered and registered at startup.
|
|
@@ -283,7 +308,7 @@ Teleton includes an **optional web dashboard** for monitoring and configuration.
|
|
|
283
308
|
|
|
284
309
|
### Features
|
|
285
310
|
|
|
286
|
-
- **Dashboard**: System status, uptime, model info, session count, memory stats
|
|
311
|
+
- **Dashboard**: System status, uptime, model info, session count, memory stats, live token usage tracking, provider switching with API key validation
|
|
287
312
|
- **Tools Management**: View all tools grouped by module, toggle enable/disable, change scope per tool
|
|
288
313
|
- **Plugin Marketplace**: Install, update, and manage plugins from registry with secrets management
|
|
289
314
|
- **Soul Editor**: Edit SOUL.md, SECURITY.md, STRATEGY.md, MEMORY.md with unsaved changes warning
|
|
@@ -386,8 +411,8 @@ All admin commands support `/`, `!`, or `.` prefix:
|
|
|
386
411
|
|
|
387
412
|
| Layer | Technology |
|
|
388
413
|
|-------|------------|
|
|
389
|
-
| LLM | Multi-provider via [pi-ai](https://github.com/mariozechner/pi-ai) (Anthropic, OpenAI, Google, xAI, Groq, OpenRouter) |
|
|
390
|
-
| Telegram Userbot | [GramJS](https://gram.js.org/) (MTProto) |
|
|
414
|
+
| LLM | Multi-provider via [pi-ai](https://github.com/mariozechner/pi-ai) (11 providers: Anthropic, Claude Code, OpenAI, Google, xAI, Groq, OpenRouter, Moonshot, Mistral, Cocoon, Local) |
|
|
415
|
+
| Telegram Userbot | [GramJS](https://gram.js.org/) Layer 222 fork (MTProto) |
|
|
391
416
|
| Inline Bot | [Grammy](https://grammy.dev/) (Bot API, for deals) |
|
|
392
417
|
| Blockchain | [TON SDK](https://github.com/ton-org/ton) (W5R1 wallet) |
|
|
393
418
|
| DeFi | STON.fi SDK, DeDust SDK |
|
|
@@ -396,7 +421,7 @@ All admin commands support `/`, `!`, or `.` prefix:
|
|
|
396
421
|
| Full-Text Search | SQLite FTS5 (BM25 ranking) |
|
|
397
422
|
| Embeddings | [@huggingface/transformers](https://www.npmjs.com/package/@huggingface/transformers) (local ONNX) or Voyage AI |
|
|
398
423
|
| Token Counting | [js-tiktoken](https://github.com/dqbd/tiktoken) |
|
|
399
|
-
| MCP Client | [@modelcontextprotocol/sdk](https://modelcontextprotocol.io/) (stdio + SSE
|
|
424
|
+
| MCP Client | [@modelcontextprotocol/sdk](https://modelcontextprotocol.io/) (stdio + SSE + Streamable HTTP) |
|
|
400
425
|
| WebUI | [Hono](https://hono.dev/) (API) + React + Vite (frontend) |
|
|
401
426
|
| Language | TypeScript 5.7, Node.js 20+ |
|
|
402
427
|
|
|
@@ -404,21 +429,22 @@ All admin commands support `/`, `!`, or `.` prefix:
|
|
|
404
429
|
|
|
405
430
|
```
|
|
406
431
|
src/
|
|
407
|
-
├── index.ts # Entry point,
|
|
432
|
+
├── index.ts # Entry point, TeletonApp lifecycle, graceful shutdown
|
|
408
433
|
├── agent/ # Core agent runtime
|
|
409
434
|
│ ├── runtime.ts # Agentic loop (5 iterations, tool calling, masking, compaction)
|
|
410
435
|
│ ├── client.ts # Multi-provider LLM client
|
|
411
|
-
│ └── tools/ #
|
|
412
|
-
│ ├── register-all.ts # Central tool registration (8 categories,
|
|
436
|
+
│ └── tools/ # 125+ built-in tools
|
|
437
|
+
│ ├── register-all.ts # Central tool registration (8 categories, 121 tools)
|
|
413
438
|
│ ├── registry.ts # Tool registry, scope filtering, provider limits
|
|
414
|
-
│ ├── module-loader.ts # Built-in module loading (deals
|
|
439
|
+
│ ├── module-loader.ts # Built-in module loading (deals + exec)
|
|
415
440
|
│ ├── plugin-loader.ts # External plugin discovery, validation, hot-reload
|
|
416
441
|
│ ├── mcp-loader.ts # MCP client (stdio/SSE), tool discovery, lifecycle
|
|
417
|
-
│ ├── telegram/ # Telegram operations (
|
|
442
|
+
│ ├── telegram/ # Telegram operations (77 tools)
|
|
418
443
|
│ ├── ton/ # TON blockchain + jettons + DEX router (15 tools)
|
|
419
444
|
│ ├── stonfi/ # STON.fi DEX (5 tools)
|
|
420
445
|
│ ├── dedust/ # DeDust DEX (5 tools)
|
|
421
|
-
│ ├── dns/ # TON DNS (
|
|
446
|
+
│ ├── dns/ # TON DNS (8 tools)
|
|
447
|
+
│ ├── exec/ # System execution — YOLO mode (4 tools)
|
|
422
448
|
│ ├── journal/ # Business journal (3 tools)
|
|
423
449
|
│ └── workspace/ # File operations (6 tools)
|
|
424
450
|
├── deals/ # Deals module (5 tools, loaded via module-loader)
|
|
@@ -439,7 +465,7 @@ src/
|
|
|
439
465
|
│ ├── task-dependency-resolver.ts # DAG-based task chains
|
|
440
466
|
│ └── callbacks/ # Inline button routing
|
|
441
467
|
├── memory/ # Storage and knowledge
|
|
442
|
-
│ ├── schema.ts #
|
|
468
|
+
│ ├── schema.ts # 16 tables, 42 indexes/triggers, FTS5, vec0, semver migrations
|
|
443
469
|
│ ├── database.ts # SQLite + WAL + sqlite-vec
|
|
444
470
|
│ ├── search/ # RAG system (hybrid vector + BM25 fusion via RRF)
|
|
445
471
|
│ ├── embeddings/ # Local ONNX + Voyage AI + caching provider
|
|
@@ -463,7 +489,8 @@ src/
|
|
|
463
489
|
│ └── loader.ts # 10 sections: soul + security + strategy + memory + context + ...
|
|
464
490
|
├── config/ # Configuration
|
|
465
491
|
│ ├── schema.ts # Zod schemas + validation
|
|
466
|
-
│
|
|
492
|
+
│ ├── providers.ts # Multi-provider LLM registry (11 providers)
|
|
493
|
+
│ └── model-catalog.ts # Shared model catalog (60+ models across all providers)
|
|
467
494
|
├── webui/ # Optional web dashboard
|
|
468
495
|
│ ├── server.ts # Hono server, auth middleware, static serving
|
|
469
496
|
│ └── routes/ # 11 API route groups (status, tools, logs, memory, soul, plugins, mcp, tasks, workspace, config, marketplace)
|
|
@@ -492,7 +519,9 @@ packages/sdk/ # Published @teleton-agent/sdk
|
|
|
492
519
|
| **Wallet protection** | File permissions `0o600`, KeyPair cached (single PBKDF2), mnemonic never exposed to plugins |
|
|
493
520
|
| **Memory protection** | Memory writes blocked in group chats to prevent poisoning |
|
|
494
521
|
| **Payment security** | `INSERT OR IGNORE` on tx hashes prevents double-spend, atomic status transitions prevent race conditions |
|
|
495
|
-
| **
|
|
522
|
+
| **Exec audit** | All YOLO mode commands logged to `exec_audit` table with user, command, output, and timestamps |
|
|
523
|
+
| **Pino redaction** | Structured logging with automatic redaction of apiKey, password, secret, token, mnemonic fields |
|
|
524
|
+
| **Tool scoping** | Financial tools DM-only, moderation group-only, admin-only policies, per-chat permissions configurable at runtime |
|
|
496
525
|
|
|
497
526
|
### Reporting Vulnerabilities
|
|
498
527
|
|
|
@@ -502,7 +531,7 @@ Do not open public issues for security vulnerabilities. Contact maintainers (t.m
|
|
|
502
531
|
|
|
503
532
|
1. Use a dedicated Telegram account
|
|
504
533
|
2. Backup your 24-word mnemonic securely offline
|
|
505
|
-
3. Start with restrictive policies (`allowlist`)
|
|
534
|
+
3. Start with restrictive policies (`admin-only` or `allowlist`)
|
|
506
535
|
4. Set file permissions: `chmod 600 ~/.teleton/wallet.json`
|
|
507
536
|
5. Never commit `config.yaml` to version control
|
|
508
537
|
6. Review `SECURITY.md` and customize for your use case
|
|
@@ -652,10 +681,10 @@ Full documentation is available in the [`docs/`](docs/) directory:
|
|
|
652
681
|
See [CONTRIBUTING.md](CONTRIBUTING.md) for the full guide.
|
|
653
682
|
|
|
654
683
|
1. Fork the repository
|
|
655
|
-
2. Create a feature branch from `
|
|
684
|
+
2. Create a feature branch from `main`
|
|
656
685
|
3. Make your changes
|
|
657
686
|
4. Verify: `npm run typecheck && npm run lint && npm test`
|
|
658
|
-
5. Open a Pull Request against `
|
|
687
|
+
5. Open a Pull Request against `main`
|
|
659
688
|
|
|
660
689
|
---
|
|
661
690
|
|
|
@@ -692,6 +721,6 @@ MIT License - See [LICENSE](LICENSE) for details.
|
|
|
692
721
|
## Support
|
|
693
722
|
|
|
694
723
|
- **Issues**: [GitHub Issues](https://github.com/TONresistor/teleton-agent/issues)
|
|
695
|
-
- **Channel**: [@
|
|
696
|
-
- **Group Chat**: [@
|
|
724
|
+
- **Channel**: [@teletonagents](https://t.me/teletonagents)
|
|
725
|
+
- **Group Chat**: [@teletonagentHQ](https://t.me/teletonagentHQ)
|
|
697
726
|
- **Contact**: [@zkproof](https://t.me/zkproof)
|