teleton 0.7.0 → 0.7.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/README.md +11 -8
- package/dist/{chunk-OGIG552S.js → chunk-3YM57ZAV.js} +312 -132
- package/dist/{chunk-TCD4NZDA.js → chunk-HZNZT4TG.js} +66 -58
- package/dist/cli/index.js +4 -4
- package/dist/index.js +4 -4
- package/dist/{memory-RD7ZSTRV.js → memory-5SS3Q5EA.js} +2 -2
- package/dist/{migrate-GO4NOBT7.js → migrate-M7SJMDOL.js} +2 -2
- package/dist/{server-OWVEZTR3.js → server-DS5OARW6.js} +94 -2
- package/dist/web/assets/index-BqwoDycr.js +72 -0
- package/dist/web/assets/index-CRDIf07k.css +1 -0
- package/dist/web/assets/{index.es-oXiZF7Hc.js → index.es-D81xLR29.js} +1 -1
- package/dist/web/index.html +2 -2
- package/package.json +1 -1
- package/dist/web/assets/index-B_FcaX5D.css +0 -1
- package/dist/web/assets/index-CbeAP4_n.js +0 -67
- package/dist/{chunk-N3F7E7DR.js → chunk-RBU6JXD3.js} +3 -3
package/README.md
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
<
|
|
1
|
+
<p align="center">
|
|
2
|
+
<img src="./logo_dark.png" alt="Teleton Agent" width="700" />
|
|
3
|
+
</p>
|
|
2
4
|
|
|
3
5
|
<p align="center"><b>Autonomous AI agent platform for Telegram with native TON blockchain integration</b></p>
|
|
4
6
|
|
|
@@ -7,21 +9,22 @@
|
|
|
7
9
|
<a href="https://nodejs.org/"><img src="https://img.shields.io/badge/node-%3E%3D20.0.0-brightgreen" alt="Node.js"></a>
|
|
8
10
|
<a href="https://www.typescriptlang.org/"><img src="https://img.shields.io/badge/TypeScript-5.7-blue" alt="TypeScript"></a>
|
|
9
11
|
<a href="https://teletonagent.dev"><img src="https://img.shields.io/badge/Website-teletonagent.dev-ff6600" alt="Website"></a>
|
|
10
|
-
<a href="https://
|
|
12
|
+
<a href="https://docs.teletonagent.dev"><img src="https://img.shields.io/badge/docs-Teleton%20Agents-blue" alt="Documentation"></a>
|
|
13
|
+
<a href="https://ton.org"><img src="https://img.shields.io/badge/Built_on-TON-0098EA?logo=ton&logoColor=white" alt="Built on TON"></a>
|
|
11
14
|
</p>
|
|
12
15
|
|
|
13
16
|
---
|
|
14
17
|
|
|
15
|
-
<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 100+ built-in tools, supports 10 LLM providers, and exposes a Plugin SDK so you can build your own tools on top of the platform.</p>
|
|
16
19
|
|
|
17
20
|
### Key Highlights
|
|
18
21
|
|
|
19
22
|
- **Full Telegram access** - Operates as a real user via MTProto (GramJS), not a limited bot
|
|
20
23
|
- **Agentic loop** - Up to 5 iterations of tool calling per message, the agent thinks, acts, observes, and repeats
|
|
21
|
-
- **Multi-Provider LLM** - Anthropic, OpenAI, Google Gemini, xAI Grok, Groq, OpenRouter
|
|
24
|
+
- **Multi-Provider LLM** - Anthropic, OpenAI, Google Gemini, xAI Grok, Groq, OpenRouter, Moonshot, Mistral, Cocoon, Local
|
|
22
25
|
- **TON Blockchain** - Built-in W5R1 wallet, send/receive TON & jettons, swap on STON.fi and DeDust, NFTs, DNS domains
|
|
23
26
|
- **Persistent memory** - Hybrid RAG (sqlite-vec + FTS5), auto-compaction with AI summarization, daily logs
|
|
24
|
-
- **
|
|
27
|
+
- **100+ built-in tools** - Messaging, media, blockchain, DEX trading, deals, DNS, journaling, and more
|
|
25
28
|
- **Plugin SDK** - Extend the agent with custom tools, frozen SDK with isolated databases, secrets management, lifecycle hooks
|
|
26
29
|
- **MCP Client** - Connect external tool servers (stdio/SSE) with 2 lines of YAML, no code, no rebuild
|
|
27
30
|
- **Secure by design** - Prompt injection defense, sandboxed workspace, plugin isolation, wallet encryption
|
|
@@ -48,7 +51,7 @@
|
|
|
48
51
|
|
|
49
52
|
| Capability | Description |
|
|
50
53
|
| ----------------------- | --------------------------------------------------------------------------------------------------------------------------- |
|
|
51
|
-
| **Multi-Provider LLM** | Switch between Anthropic, OpenAI, Google, xAI, Groq, OpenRouter with one config change
|
|
54
|
+
| **Multi-Provider LLM** | Switch between Anthropic, OpenAI, Google, xAI, Groq, OpenRouter, Moonshot, Mistral, Cocoon, or Local with one config change |
|
|
52
55
|
| **RAG + Hybrid Search** | Local ONNX embeddings (384d) or Voyage AI (512d/1024d) with FTS5 keyword + sqlite-vec cosine similarity, fused via RRF |
|
|
53
56
|
| **Auto-Compaction** | AI-summarized context management prevents overflow, preserves key information in `memory/*.md` files |
|
|
54
57
|
| **Observation Masking** | Compresses old tool results to one-line summaries, saving ~90% context window |
|
|
@@ -405,7 +408,7 @@ src/
|
|
|
405
408
|
├── agent/ # Core agent runtime
|
|
406
409
|
│ ├── runtime.ts # Agentic loop (5 iterations, tool calling, masking, compaction)
|
|
407
410
|
│ ├── client.ts # Multi-provider LLM client
|
|
408
|
-
│ └── tools/ #
|
|
411
|
+
│ └── tools/ # 100+ built-in tools
|
|
409
412
|
│ ├── register-all.ts # Central tool registration (8 categories, 109 tools)
|
|
410
413
|
│ ├── registry.ts # Tool registry, scope filtering, provider limits
|
|
411
414
|
│ ├── module-loader.ts # Built-in module loading (deals → +5 tools)
|
|
@@ -460,7 +463,7 @@ src/
|
|
|
460
463
|
│ └── loader.ts # 10 sections: soul + security + strategy + memory + context + ...
|
|
461
464
|
├── config/ # Configuration
|
|
462
465
|
│ ├── schema.ts # Zod schemas + validation
|
|
463
|
-
│ └── providers.ts # Multi-provider LLM registry (
|
|
466
|
+
│ └── providers.ts # Multi-provider LLM registry (10 providers)
|
|
464
467
|
├── webui/ # Optional web dashboard
|
|
465
468
|
│ ├── server.ts # Hono server, auth middleware, static serving
|
|
466
469
|
│ └── routes/ # 11 API route groups (status, tools, logs, memory, soul, plugins, mcp, tasks, workspace, config, marketplace)
|