outsmart-agent 1.0.0-alpha.7 → 1.0.0-alpha.8
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 +13 -6
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -10,7 +10,7 @@ npx outsmart-agent
|
|
|
10
10
|
|
|
11
11
|
An AI agent needs money to stay alive — compute costs, inference fees, API calls. This gives any MCP-compatible agent the tools to earn revenue on Solana through DeFi. LP farming, memecoin trenching, token launching, prediction markets, systematic DCA — whatever the market calls for.
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
38 MCP tools for execution. 9 AI skills that teach the agent **when** and **why**, not just how.
|
|
14
14
|
|
|
15
15
|
## Quick Start
|
|
16
16
|
|
|
@@ -94,19 +94,25 @@ npx skills add outsmartchad/outsmart-agent
|
|
|
94
94
|
| `jupiter_dca_list` | List active/historical DCA orders |
|
|
95
95
|
| `jupiter_dca_cancel` | Cancel a DCA order |
|
|
96
96
|
|
|
97
|
-
### Percolator Perp Tools (
|
|
97
|
+
### Percolator Perp Tools (15)
|
|
98
98
|
|
|
99
99
|
| Tool | What |
|
|
100
100
|
|------|------|
|
|
101
101
|
| `percolator_create_market` | Create a permissionless perp exchange |
|
|
102
102
|
| `percolator_init_user` | Register a trader account on a market |
|
|
103
|
+
| `percolator_long` | Open a long position (auto-detects account, auto-cranks) |
|
|
104
|
+
| `percolator_short` | Open a short position (auto-detects account, auto-cranks) |
|
|
105
|
+
| `percolator_close` | Close an open position (auto-detects size and direction) |
|
|
103
106
|
| `percolator_deposit` | Deposit collateral |
|
|
104
107
|
| `percolator_withdraw` | Withdraw collateral |
|
|
105
|
-
| `percolator_trade` | Open/close/modify
|
|
108
|
+
| `percolator_trade` | Open/close/modify positions (low-level, manual indices) |
|
|
106
109
|
| `percolator_push_oracle` | Update oracle price (admin-oracle mode) |
|
|
107
110
|
| `percolator_crank` | Run keeper crank |
|
|
108
111
|
| `percolator_market_state` | Read full market state |
|
|
109
112
|
| `percolator_insurance_lp` | Deposit/withdraw insurance fund LP |
|
|
113
|
+
| `percolator_keeper_start` | Start WebSocket oracle keeper (watches DEX pools, pushes prices) |
|
|
114
|
+
| `percolator_keeper_stop` | Stop the running keeper |
|
|
115
|
+
| `percolator_keeper_status` | Get keeper stats (pushes, errors, active watchers) |
|
|
110
116
|
|
|
111
117
|
## Skills
|
|
112
118
|
|
|
@@ -139,7 +145,7 @@ npx skills add outsmartchad/outsmart-agent
|
|
|
139
145
|
```
|
|
140
146
|
outsmart (npm) outsmart-agent (this repo)
|
|
141
147
|
────────────── ──────────────────────────
|
|
142
|
-
18 DEX adapters MCP server (
|
|
148
|
+
18 DEX adapters MCP server (38 tools)
|
|
143
149
|
Percolator perps 9 AI skills
|
|
144
150
|
TX landing providers Agent definition
|
|
145
151
|
Wallet + TX helpers Plugin manifest
|
|
@@ -176,14 +182,15 @@ Never >5% on a single trade. Take profits. Track what works. Evolve.
|
|
|
176
182
|
|
|
177
183
|
## Roadmap
|
|
178
184
|
|
|
179
|
-
- [x] MCP Server —
|
|
185
|
+
- [x] MCP Server — 38 tools (11 DEX + 1 Launchpad + 2 Solana + 9 Jupiter + 15 Percolator), 18 DEX adapters
|
|
180
186
|
- [x] AI Skills — 9 strategy skills
|
|
181
187
|
- [x] Claude Code Plugin manifest
|
|
182
188
|
- [x] Percolator — Permissionless perp exchange creation, trading, LP, insurance
|
|
189
|
+
- [x] Oracle Keeper — WebSocket + gRPC keeper bots (8 DEX types, real-time price feed)
|
|
190
|
+
- [x] Perp Trading — High-level long/short/close tools with auto-detection
|
|
183
191
|
- [ ] Event Streaming — Yellowstone gRPC for real-time pool creation
|
|
184
192
|
- [ ] LP Manager — Autonomous rebalancing and fee compounding
|
|
185
193
|
- [ ] Strategy Engine — Tier-aware capital allocation
|
|
186
|
-
- [ ] Percolator Keeper — Background crank + liquidation service
|
|
187
194
|
|
|
188
195
|
## Related
|
|
189
196
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "outsmart-agent",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.8",
|
|
4
4
|
"description": "MCP server + AI skills for Solana trading — wraps the outsmart CLI library for AI agent use.",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=20.0.0"
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"@modelcontextprotocol/sdk": "^1.12.1",
|
|
49
49
|
"@solana/spl-token": "^0.4.0",
|
|
50
50
|
"@solana/web3.js": "^1.95.0",
|
|
51
|
-
"outsmart": "^2.0.0-alpha.
|
|
51
|
+
"outsmart": "^2.0.0-alpha.12",
|
|
52
52
|
"zod": "^3.25.0"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|