clodds 1.1.0 → 1.2.0

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.
Files changed (115) hide show
  1. package/README.md +79 -47
  2. package/dist/agents/handlers/kalshi.d.ts +1 -2
  3. package/dist/agents/handlers/kalshi.js +369 -616
  4. package/dist/agents/handlers/kalshi.js.map +1 -1
  5. package/dist/agents/handlers/types.d.ts +1 -1
  6. package/dist/agents/index.d.ts +1 -1
  7. package/dist/agents/index.js +435 -710
  8. package/dist/agents/index.js.map +1 -1
  9. package/dist/bittensor/index.d.ts +3 -2
  10. package/dist/bittensor/index.js +44 -5
  11. package/dist/bittensor/index.js.map +1 -1
  12. package/dist/cli/commands/gateway.js +37 -2
  13. package/dist/cli/commands/gateway.js.map +1 -1
  14. package/dist/cli/commands/index.js +3 -2
  15. package/dist/cli/commands/index.js.map +1 -1
  16. package/dist/cli/index.js +6 -4
  17. package/dist/cli/index.js.map +1 -1
  18. package/dist/cron/index.d.ts +1 -1
  19. package/dist/cron/index.js +26 -34
  20. package/dist/cron/index.js.map +1 -1
  21. package/dist/db/index.d.ts +12 -0
  22. package/dist/db/index.js +51 -23
  23. package/dist/db/index.js.map +1 -1
  24. package/dist/db/migrations.js +36 -0
  25. package/dist/db/migrations.js.map +1 -1
  26. package/dist/evm/index.d.ts +1 -0
  27. package/dist/evm/index.js +2 -0
  28. package/dist/evm/index.js.map +1 -1
  29. package/dist/evm/pancakeswap.d.ts +55 -0
  30. package/dist/evm/pancakeswap.js +299 -0
  31. package/dist/evm/pancakeswap.js.map +1 -0
  32. package/dist/exchanges/lighter/index.d.ts +95 -0
  33. package/dist/exchanges/lighter/index.js +154 -0
  34. package/dist/exchanges/lighter/index.js.map +1 -0
  35. package/dist/gateway/server.d.ts +9 -0
  36. package/dist/gateway/server.js +208 -1
  37. package/dist/gateway/server.js.map +1 -1
  38. package/dist/gateway/signal-bus.d.ts +2 -43
  39. package/dist/gateway/signal-bus.js.map +1 -1
  40. package/dist/index.js +40 -3
  41. package/dist/index.js.map +1 -1
  42. package/dist/mcp/security.d.ts +44 -0
  43. package/dist/mcp/security.js +143 -0
  44. package/dist/mcp/security.js.map +1 -0
  45. package/dist/mcp/server.js +27 -2
  46. package/dist/mcp/server.js.map +1 -1
  47. package/dist/services/alt-data/index.d.ts +1 -1
  48. package/dist/sessions/index.js +66 -7
  49. package/dist/sessions/index.js.map +1 -1
  50. package/dist/signal-router/router.d.ts +1 -1
  51. package/dist/signal-router/types.d.ts +1 -1
  52. package/dist/skills/bundled/arbitrage/index.js +96 -63
  53. package/dist/skills/bundled/arbitrage/index.js.map +1 -1
  54. package/dist/skills/bundled/betfair/index.js +121 -83
  55. package/dist/skills/bundled/betfair/index.js.map +1 -1
  56. package/dist/skills/bundled/bridge/index.js +42 -13
  57. package/dist/skills/bundled/bridge/index.js.map +1 -1
  58. package/dist/skills/bundled/crypto-hft/index.js +267 -226
  59. package/dist/skills/bundled/crypto-hft/index.js.map +1 -1
  60. package/dist/skills/bundled/drift/index.js +83 -52
  61. package/dist/skills/bundled/drift/index.js.map +1 -1
  62. package/dist/skills/bundled/embeddings/index.js +87 -49
  63. package/dist/skills/bundled/embeddings/index.js.map +1 -1
  64. package/dist/skills/bundled/execution/index.js +47 -25
  65. package/dist/skills/bundled/execution/index.js.map +1 -1
  66. package/dist/skills/bundled/feeds/index.js +45 -25
  67. package/dist/skills/bundled/feeds/index.js.map +1 -1
  68. package/dist/skills/bundled/hyperliquid/index.js +91 -45
  69. package/dist/skills/bundled/hyperliquid/index.js.map +1 -1
  70. package/dist/skills/bundled/integrations/index.js +2 -1
  71. package/dist/skills/bundled/integrations/index.js.map +1 -1
  72. package/dist/skills/bundled/kamino/index.js +71 -43
  73. package/dist/skills/bundled/kamino/index.js.map +1 -1
  74. package/dist/skills/bundled/lighter/index.d.ts +19 -0
  75. package/dist/skills/bundled/lighter/index.js +385 -0
  76. package/dist/skills/bundled/lighter/index.js.map +1 -0
  77. package/dist/skills/bundled/marginfi/index.d.ts +21 -0
  78. package/dist/skills/bundled/marginfi/index.js +387 -0
  79. package/dist/skills/bundled/marginfi/index.js.map +1 -0
  80. package/dist/skills/bundled/opinion/index.js +44 -25
  81. package/dist/skills/bundled/opinion/index.js.map +1 -1
  82. package/dist/skills/bundled/pancakeswap/index.d.ts +19 -0
  83. package/dist/skills/bundled/pancakeswap/index.js +260 -0
  84. package/dist/skills/bundled/pancakeswap/index.js.map +1 -0
  85. package/dist/skills/bundled/setup/index.d.ts +16 -0
  86. package/dist/skills/bundled/setup/index.js +427 -0
  87. package/dist/skills/bundled/setup/index.js.map +1 -0
  88. package/dist/skills/bundled/solend/index.d.ts +22 -0
  89. package/dist/skills/bundled/solend/index.js +401 -0
  90. package/dist/skills/bundled/solend/index.js.map +1 -0
  91. package/dist/skills/bundled/trading-evm/index.js +42 -11
  92. package/dist/skills/bundled/trading-evm/index.js.map +1 -1
  93. package/dist/skills/errors.d.ts +20 -0
  94. package/dist/skills/errors.js +84 -0
  95. package/dist/skills/errors.js.map +1 -0
  96. package/dist/skills/executor.d.ts +1 -1
  97. package/dist/skills/executor.js +515 -41
  98. package/dist/skills/executor.js.map +1 -1
  99. package/dist/skills/help.d.ts +33 -0
  100. package/dist/skills/help.js +73 -0
  101. package/dist/skills/help.js.map +1 -0
  102. package/dist/solana/marginfi.d.ts +112 -0
  103. package/dist/solana/marginfi.js +340 -0
  104. package/dist/solana/marginfi.js.map +1 -0
  105. package/dist/solana/solend.d.ts +120 -0
  106. package/dist/solana/solend.js +261 -0
  107. package/dist/solana/solend.js.map +1 -0
  108. package/dist/trading/bridge.d.ts +1 -1
  109. package/dist/trading/position-bridge.d.ts +1 -1
  110. package/dist/types/signal-bus.d.ts +48 -0
  111. package/dist/types/signal-bus.js +9 -0
  112. package/dist/types/signal-bus.js.map +1 -0
  113. package/dist/types.d.ts +17 -0
  114. package/dist/utils/json-utils.d.ts +8 -8
  115. package/package.json +8 -6
package/README.md CHANGED
@@ -9,16 +9,17 @@
9
9
  </p>
10
10
 
11
11
  <p align="center">
12
- <a href="https://www.npmjs.com/package/@alsk1992/clodds"><img src="https://img.shields.io/npm/v/@alsk1992/clodds?color=blue" alt="npm version"></a>
12
+ <a href="https://www.npmjs.com/package/clodds"><img src="https://img.shields.io/npm/v/clodds?color=blue" alt="npm version"></a>
13
13
  <img src="https://img.shields.io/badge/node-%3E%3D22-brightgreen" alt="Node.js">
14
14
  <img src="https://img.shields.io/badge/typescript-5.3-blue" alt="TypeScript">
15
15
  <a href="https://opensource.org/licenses/MIT"><img src="https://img.shields.io/badge/license-MIT-yellow" alt="MIT License"></a>
16
- <img src="https://img.shields.io/badge/channels-22-purple" alt="22 Channels">
17
- <img src="https://img.shields.io/badge/markets-10-orange" alt="9 Markets">
16
+ <img src="https://img.shields.io/badge/channels-21-purple" alt="21 Channels">
17
+ <img src="https://img.shields.io/badge/markets-10-orange" alt="10 Markets">
18
18
  </p>
19
19
 
20
20
  <p align="center">
21
21
  <a href="#quick-start">Quick Start</a> •
22
+ <a href="#webchat">WebChat</a> •
22
23
  <a href="#everything-we-built">Features</a> •
23
24
  <a href="#channels">Channels</a> •
24
25
  <a href="#prediction-markets-10">Markets</a> •
@@ -27,7 +28,7 @@
27
28
 
28
29
  ---
29
30
 
30
- **Clodds** is a personal AI trading terminal for prediction markets, crypto spot, and **perpetual futures with leverage**. Run it on your own machine, chat via any of **22 messaging platforms**, trade across **10 prediction markets + 6 futures exchanges** (including on-chain Solana perps via Percolator), and manage your portfolio — all through natural conversation.
31
+ **Clodds** is a personal AI trading terminal for prediction markets, crypto spot, and **perpetual futures with leverage**. Run it on your own machine, chat via any of **21 messaging platforms**, trade across **10 prediction markets + 7 futures exchanges** (including on-chain Solana perps via Percolator), and manage your portfolio — all through natural conversation.
31
32
 
32
33
  Built on Claude with arbitrage detection algorithms based on [arXiv:2508.03474](https://arxiv.org/abs/2508.03474), which documented arbitrage patterns on Polymarket. See [Arbitrage Limitations](#arbitrage-limitations) for practical considerations.
33
34
 
@@ -37,7 +38,7 @@ Built on Claude with arbitrage detection algorithms based on [arXiv:2508.03474](
37
38
 
38
39
  | Option | Best For | Setup Time | Features |
39
40
  |--------|----------|------------|----------|
40
- | **[Self-Hosted](#quick-start)** | Full control, all features | 5 min | 22 channels, trading, DeFi, bots |
41
+ | **[Self-Hosted](#quick-start)** | Full control, all features | 2 min | 21 channels, trading, DeFi, bots |
41
42
  | **[Cloudflare Worker](#cloudflare-worker)** | Lightweight, edge deployment | 2 min | 3 webhook channels, market data, arbitrage |
42
43
  | **[Compute API](#compute-api)** | Agents paying for compute | Live | LLM, code, web, data, storage |
43
44
 
@@ -78,32 +79,59 @@ See [docs/API.md](./docs/API.md#clodds-compute-api) for full documentation.
78
79
 
79
80
  ## Quick Start
80
81
 
81
- **Option 1: npm (recommended)**
82
82
  ```bash
83
- # One-time: configure npm for @alsk1992 scope
84
- echo "@alsk1992:registry=https://npm.pkg.github.com" >> ~/.npmrc
83
+ npm install -g clodds
84
+ clodds onboard
85
+ ```
85
86
 
86
- # Install globally
87
- npm install -g @alsk1992/clodds
87
+ That's it. The setup wizard walks you through everything — API key, messaging channel, and starts the gateway. WebChat opens at `http://localhost:18789/webchat`.
88
88
 
89
- # Run
90
- export ANTHROPIC_API_KEY=sk-ant-...
91
- clodds start
92
- ```
89
+ <details>
90
+ <summary><strong>From source (alternative)</strong></summary>
93
91
 
94
- **Option 2: From source**
95
92
  ```bash
96
93
  git clone https://github.com/alsk1992/CloddsBot.git && cd CloddsBot
97
94
  npm install && cp .env.example .env
98
95
  # Add ANTHROPIC_API_KEY to .env
99
96
  npm run build && npm start
100
97
  ```
98
+ </details>
99
+
100
+ ## WebChat
101
+
102
+ Built-in browser interface at `http://localhost:18789/webchat` -- no setup, no third-party dependencies.
103
+
104
+ **Interface:**
105
+ - Claude-style sidebar with 4 tabs: Chats, Projects, Artifacts, Code
106
+ - Create and organize conversations into project folders
107
+ - Artifacts and code blocks auto-extracted from chat history
108
+ - One-click copy for code snippets, search across all conversations
101
109
 
102
- Open `http://localhost:18789/webchat` — no account needed.
110
+ **Thinking Indicator:**
111
+ - Live spinner with elapsed timer while the AI generates
112
+ - Replaces generic typing dots with actual status feedback
113
+
114
+ **Unlimited History:**
115
+ - Every message stored in a dedicated database table (append-only, one row per message)
116
+ - No message cap -- scroll back through entire conversation history
117
+ - Paginated loading so even 1000+ message chats load instantly
118
+
119
+ **Context Compacting:**
120
+ - Older messages automatically summarized so the AI never fully forgets what you discussed
121
+ - LLM receives a compressed recap of earlier conversation + the last 20 messages
122
+ - Similar to how Claude.ai and ChatGPT handle long conversations
123
+
124
+ **Session Management:**
125
+ - Create, rename, delete conversations via REST API
126
+ - Profile menu with language selector (9 languages), help, about
127
+ - Persistent across restarts (SQLite-backed)
128
+
129
+ ---
103
130
 
104
131
  ## CLI
105
132
 
106
133
  ```bash
134
+ clodds onboard # Interactive setup wizard
107
135
  clodds start # Start the gateway
108
136
  clodds repl # Interactive REPL
109
137
  clodds doctor # System diagnostics
@@ -123,19 +151,19 @@ See [docs/USER_GUIDE.md](./docs/USER_GUIDE.md) for all commands.
123
151
 
124
152
  | Category | What's Included |
125
153
  |----------|-----------------|
126
- | **Messaging** | 22 platforms (Telegram, Discord, WhatsApp, Slack, Teams, Signal, Matrix, iMessage, LINE, Nostr, and more) |
127
- | **Prediction Markets** | 9 platforms (Polymarket, Kalshi, Betfair, Smarkets, Drift, Manifold, Metaculus, PredictIt) |
128
- | **Perpetual Futures** | 5 exchanges (Binance, Bybit, Hyperliquid, MEXC, Percolator) with up to 200x leverage, database tracking, A/B testing |
154
+ | **Messaging** | 21 platforms (Telegram, Discord, WhatsApp, Slack, Teams, Signal, Matrix, iMessage, LINE, Nostr, and more) + built-in WebChat with sidebar, unlimited history, context compacting |
155
+ | **Prediction Markets** | 10 platforms (Polymarket, Kalshi, Betfair, Smarkets, Drift, Manifold, Metaculus, PredictIt, Opinion.xyz, Predict.fun) |
156
+ | **Perpetual Futures** | 7 exchanges (Binance, Bybit, Hyperliquid, MEXC, Drift, Percolator, Lighter) with up to 200x leverage, database tracking, A/B testing |
129
157
  | **On-Chain Perps** | Percolator protocol — Solana-native perpetual futures with pluggable matchers, keeper cranking, real-time slab polling |
130
158
  | **Token Security** | GoPlus-powered audits — honeypot detection, rug-pull analysis, holder concentration, risk scoring |
131
159
  | **Security Shield** | Code scanning (75 rules), scam DB (70+ addresses), multi-chain address checking, pre-trade tx validation |
132
- | **Trading** | Order execution on 5 platforms, portfolio tracking, P&L, trade logging, DCA on 16 platforms |
133
- | **MCP Server** | Expose all 113 skills as MCP tools for Claude Desktop and Claude Code |
160
+ | **Trading** | Order execution on 16+ platforms (prediction markets, futures, Solana DEXs, EVM DEXs), portfolio tracking, P&L, DCA |
161
+ | **MCP Server** | Expose all 118 skills as MCP tools for Claude Desktop and Claude Code |
134
162
  | **Arbitrage** | Cross-platform detection, combinatorial analysis, semantic matching, real-time scanning |
135
- | **AI** | 6 LLM providers, 4 specialized agents, semantic memory, 21 tools |
163
+ | **AI** | 8 LLM providers, 4 specialized agents, semantic memory, 18 tools |
136
164
  | **i18n** | 10 languages (EN, ZH, ES, JA, KO, DE, FR, PT, RU, AR) |
137
- | **Solana DeFi** | Jupiter, Raydium, Orca, Meteora, Pump.fun integration |
138
- | **EVM DeFi** | Uniswap V3, 1inch, Virtuals Protocol (ETH, ARB, OP, Base, Polygon) |
165
+ | **Solana DeFi** | Jupiter, Raydium, Orca, Meteora, Kamino, MarginFi, Solend, Pump.fun, Bags.fm, AgentBets |
166
+ | **EVM DeFi** | Uniswap V3, 1inch, PancakeSwap, Virtuals Protocol, Clanker, Veil, ENS (ETH, ARB, OP, Base, Polygon) |
139
167
  | **Smart Trading** | Whale tracking, copy trading, smart routing, MEV protection |
140
168
  | **Trade Ledger** | Decision audit trail with confidence calibration, SHA-256 integrity hashing, statistics |
141
169
  | **Crypto Whale Tracking** | Multi-chain whale monitoring (Solana, ETH, Polygon, ARB, Base, OP) |
@@ -146,11 +174,11 @@ See [docs/USER_GUIDE.md](./docs/USER_GUIDE.md) for all commands.
146
174
 
147
175
  ---
148
176
 
149
- ## Channels (22)
177
+ ## Channels (21)
150
178
 
151
- Telegram, Discord, Slack, WhatsApp, Teams, Matrix, Signal, iMessage, LINE, Nostr, Twitch, WebChat, and more.
179
+ Telegram, Discord, Slack, WhatsApp, Teams, Matrix, Signal, iMessage, LINE, Nostr, Twitch, **WebChat**, and more.
152
180
 
153
- All channels support real-time sync, rich media, and offline queuing.
181
+ All channels support real-time sync, rich media, and offline queuing. WebChat is the built-in browser interface with a full sidebar UI, unlimited message history, and conversation management -- see [WebChat](#webchat) above.
154
182
 
155
183
  ---
156
184
 
@@ -167,6 +195,8 @@ All channels support real-time sync, rich media, and offline queuing.
167
195
  | Metaculus | data | Forecasting |
168
196
  | PredictIt | data | US Politics |
169
197
  | AgentBets | data | AI Agents / Solana (Colosseum Hackathon) |
198
+ | Opinion.xyz | ✓ | BNB Chain |
199
+ | Predict.fun | ✓ | BNB Chain |
170
200
 
171
201
  Supports limit/market orders, maker rebates, real-time orderbooks, P&L tracking, and smart routing.
172
202
 
@@ -174,9 +204,9 @@ Supports limit/market orders, maker rebates, real-time orderbooks, P&L tracking,
174
204
 
175
205
  ## Crypto & DeFi
176
206
 
177
- **Solana:** Jupiter, Raydium, Orca, Meteora, Pump.fun — with Jito MEV protection
207
+ **Solana:** Jupiter, Raydium, Orca, Meteora, Kamino, MarginFi, Solend, Pump.fun, Bags.fm — with Jito MEV protection
178
208
 
179
- **EVM (5 chains):** Uniswap V3, 1inch, Virtuals Protocol on Ethereum, Arbitrum, Optimism, Base, Polygon — with Flashbots MEV protection
209
+ **EVM (5 chains):** Uniswap V3, 1inch, PancakeSwap, Virtuals Protocol on Ethereum, Arbitrum, Optimism, Base, Polygon — with Flashbots MEV protection
180
210
 
181
211
  **Bridging:** Wormhole cross-chain transfers (ETH ↔ Solana, Polygon ↔ Base)
182
212
 
@@ -184,7 +214,7 @@ Supports limit/market orders, maker rebates, real-time orderbooks, P&L tracking,
184
214
 
185
215
  ---
186
216
 
187
- ## Perpetual Futures (5 Exchanges)
217
+ ## Perpetual Futures (7 Exchanges)
188
218
 
189
219
  | Exchange | Max Leverage | KYC | Type |
190
220
  |----------|--------------|-----|------|
@@ -192,7 +222,9 @@ Supports limit/market orders, maker rebates, real-time orderbooks, P&L tracking,
192
222
  | Bybit | 100x | Yes | CEX |
193
223
  | Hyperliquid | 50x | No | DEX |
194
224
  | MEXC | 200x | No | CEX |
225
+ | Drift | 20x | No | DEX (Solana) |
195
226
  | Percolator | Varies | No | On-chain (Solana) |
227
+ | Lighter | 50x | No | DEX (Arbitrum) |
196
228
 
197
229
  Long/short, cross/isolated margin, TP/SL, liquidation alerts, funding tracking, database logging.
198
230
 
@@ -220,11 +252,11 @@ Configure: `PERCOLATOR_ENABLED=true PERCOLATOR_SLAB=<pubkey> PERCOLATOR_ORACLE=<
220
252
 
221
253
  ## AI System
222
254
 
223
- **6 LLM providers:** Claude (primary), GPT-4, Gemini, Groq, Together, Ollama
255
+ **8 LLM providers:** Claude (primary), GPT-4, Gemini, Groq, Together, Fireworks, AWS Bedrock, Ollama
224
256
 
225
257
  **4 agents:** Main, Trading, Research, Alerts
226
258
 
227
- **21 tools:** Browser, docker, exec, files, git, email, sms, webhooks, sql, vision
259
+ **18 tools:** Browser, docker, exec, files, git, email, sms, webhooks, sql, vision
228
260
 
229
261
  **Memory:** Semantic search (LanceDB), hybrid BM25, user profiles, persistent facts
230
262
 
@@ -315,16 +347,16 @@ Enable: `clodds config set ledger.enabled true`
315
347
 
316
348
  ## Skills & Extensions
317
349
 
318
- **111 bundled skills** across trading, data, automation, and infrastructure — lazy-loaded on first use so missing dependencies don't crash the app. Run `/skills` to see status.
350
+ **118 bundled skills** across trading, data, automation, and infrastructure — lazy-loaded on first use so missing dependencies don't crash the app. Run `/skills` to see status.
319
351
 
320
352
  | Category | Skills |
321
353
  |----------|--------|
322
- | Trading | Polymarket, Kalshi, Betfair, Hyperliquid, Binance, Bybit, MEXC, Jupiter, Raydium, Orca, Percolator, DCA (16 platforms) |
354
+ | Trading | Polymarket, Kalshi, Betfair, Hyperliquid, Binance, Bybit, MEXC, Drift, Jupiter, Raydium, Orca, Percolator, DCA (16 platforms) |
323
355
  | Analysis | Arbitrage detection, edge finding, whale tracking, copy trading, token security audits, security shield |
324
356
  | Automation | Cron jobs, triggers, bots, webhooks |
325
357
  | AI | Memory, embeddings, multi-agent routing |
326
358
 
327
- **7 extensions** for Copilot, OpenTelemetry, LanceDB, and more.
359
+ **9 extensions** for Copilot, OpenTelemetry, LanceDB, Qwen Portal, and more.
328
360
 
329
361
  ---
330
362
 
@@ -340,16 +372,16 @@ Enable: `clodds config set ledger.enabled true`
340
372
  ▼ ▼ ▼
341
373
  ┌───────────────┐ ┌───────────────┐ ┌───────────────┐
342
374
  │ CHANNELS │ │ AGENTS │ │ FEEDS │
343
- │ (22) │ │ (4) │ │ (9+)
375
+ │ (21) │ │ (4) │ │ (12+)
344
376
  ├───────────────┤ ├───────────────┤ ├───────────────┤
345
377
  │ Telegram │ │ Main │ │ Polymarket │
346
378
  │ Discord │ │ Trading │ │ Kalshi │
347
379
  │ WhatsApp │ │ Research │ │ Betfair │
348
380
  │ Slack │ │ Alerts │ │ Manifold │
349
381
  │ Teams │ │ │ │ Crypto (10) │
350
- │ Matrix │ │ Tools (21) │ │ │
351
- │ Signal │ │ Skills (110) │ │ Arbitrage │
352
- │ +15 more │ │ Memory │ │ Detector │
382
+ │ Matrix │ │ Tools (18) │ │ │
383
+ │ Signal │ │ Skills (118) │ │ Arbitrage │
384
+ │ +14 more │ │ Memory │ │ Detector │
353
385
  └───────────────┘ └───────────────┘ └───────────────┘
354
386
  │ │ │
355
387
  └─────────────────────────┼─────────────────────────┘
@@ -443,15 +475,15 @@ docker compose up --build
443
475
 
444
476
  | Category | Count |
445
477
  |----------|------:|
446
- | Messaging Channels | **22** |
447
- | Prediction Markets | **9** |
448
- | Futures Exchanges | **5** |
449
- | AI Tools | **21** |
450
- | Skills | **103** |
451
- | LLM Providers | **6** |
452
- | Solana DEX Protocols | **5** |
478
+ | Messaging Channels | **21** |
479
+ | Prediction Markets | **10** |
480
+ | Futures Exchanges | **7** |
481
+ | AI Tools | **18** |
482
+ | Skills | **118** |
483
+ | LLM Providers | **8** |
484
+ | Solana DeFi Protocols | **9** |
453
485
  | Trading Strategies | **4** |
454
- | Extensions | **7** |
486
+ | Extensions | **9** |
455
487
 
456
488
  ---
457
489
 
@@ -2,8 +2,7 @@
2
2
  * Kalshi Handlers
3
3
  *
4
4
  * All 78 Kalshi platform handlers migrated from agents/index.ts switch cases.
5
- * Includes execution-service-based trading, no-auth exchange info,
6
- * and credential-based Python CLI handlers.
5
+ * Uses direct HTTP calls to the Kalshi REST API with RSA-PSS authentication.
7
6
  */
8
7
  import type { HandlersMap } from './types';
9
8
  export declare const kalshiHandlers: HandlersMap;