Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
# teleton-plugins

[![GitHub stars](https://img.shields.io/github/stars/TONresistor/teleton-plugins?style=flat&logo=github)](https://github.com/TONresistor/teleton-plugins/stargazers)
[![Plugins](https://img.shields.io/badge/plugins-26-8B5CF6.svg)](#available-plugins)
[![Tools](https://img.shields.io/badge/tools-189-E040FB.svg)](#available-plugins)
[![Plugins](https://img.shields.io/badge/plugins-28-8B5CF6.svg)](#available-plugins)
[![Tools](https://img.shields.io/badge/tools-249-E040FB.svg)](#available-plugins)
[![SDK](https://img.shields.io/badge/SDK-v1.0.0-00C896.svg)](#plugin-sdk)
[![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](CONTRIBUTING.md)
Expand Down Expand Up @@ -76,7 +76,7 @@ No build step. Just copy and go. Plugins with npm dependencies are auto-installe

## Available Plugins

> **26 plugins** · **189 tools** · [Browse the registry](registry.json)
> **28 plugins** · **249 tools** · [Browse the registry](registry.json)

### DeFi & Trading

Expand Down Expand Up @@ -115,6 +115,7 @@ No build step. Just copy and go. Plugins with npm dependencies are auto-installe

| Plugin | Description | Tools | Author |
|--------|-------------|:-----:|--------|
| [ton-bridge](plugins/ton-bridge/) | Share TON Bridge Mini App link with an inline button | 3 | xlabtg |
| [multisend](plugins/multisend/) | Batch send TON/jettons to 254 recipients in one TX | 5 | teleton |
| [sbt](plugins/sbt/) | Deploy and mint Soulbound Tokens (TEP-85) | 2 | teleton |

Expand All @@ -125,6 +126,12 @@ No build step. Just copy and go. Plugins with npm dependencies are auto-installe
| [fragment](plugins/fragment/) | Fragment marketplace — usernames, numbers, collectible gifts | 6 | teleton |
| [webdom](plugins/webdom/) | TON domain marketplace — search, buy, sell, auction, DNS bid | 12 | teleton |

### Developer Tools

| Plugin | Description | Tools | Author |
|--------|-------------|:-----:|--------|
| [github-dev-assistant](plugins/github-dev-assistant/) | Complete GitHub workflow — repos, files, branches, PRs, issues, Actions, security, discussions | 57 | xlabtg |

### Utilities & Games

| Plugin | Description | Tools | Author |
Expand Down
19 changes: 11 additions & 8 deletions plugins/ton-trading-bot/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,15 @@ Each tool does exactly one thing. The LLM composes them:
| `ton_trading_execute_swap` | Execute a real swap on STON.fi or DeDust (DM-only) | action |
| `ton_trading_record_trade` | Close a trade and record final output / PnL | action |

## Installation
## Install

```bash
mkdir -p ~/.teleton/plugins
cp -r plugins/ton-trading-bot ~/.teleton/plugins/
```

Restart Teleton — the plugin is auto-loaded from `~/.teleton/plugins/`.

## Configuration

```yaml
Expand All @@ -52,13 +54,14 @@ plugins:
simulationBalance: 1000 # starting virtual balance (default: 1000 TON)
```

## Usage Examples

### Check the market
## Usage

```
Get market data for swapping 1 TON to EQCxE6...
```
- "Get market data for swapping 1 TON to USDT"
- "Show my portfolio"
- "Validate trading 5 TON in simulation mode"
- "Simulate buying USDT with 5 TON"
- "Execute swap: 2 TON → USDT with 5% slippage"
- "Record trade #3 closed at 2.1 USDT"

### Paper-trade workflow

Expand All @@ -79,7 +82,7 @@ Get market data for swapping 1 TON to EQCxE6...
5. [later] Record trade closed
```

## Tool Schemas
## Schemas

### `ton_trading_get_market_data`

Expand Down
Loading