clodds 1.5.3 → 1.6.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.
Files changed (64) hide show
  1. package/README.md +2 -2
  2. package/dist/agents/index.js +5 -5
  3. package/dist/agents/index.js.map +1 -1
  4. package/dist/cli/commands/index.js +1 -1
  5. package/dist/credentials/index.js +16 -9
  6. package/dist/credentials/index.js.map +1 -1
  7. package/dist/index.js +31 -0
  8. package/dist/index.js.map +1 -1
  9. package/dist/skills/bundled/alerts/index.js +4 -1
  10. package/dist/skills/bundled/alerts/index.js.map +1 -1
  11. package/dist/skills/bundled/copy-trading/index.js +14 -5
  12. package/dist/skills/bundled/copy-trading/index.js.map +1 -1
  13. package/dist/skills/bundled/credentials/index.js +2 -2
  14. package/dist/skills/bundled/credentials/index.js.map +1 -1
  15. package/dist/skills/bundled/dca/index.js +2 -2
  16. package/dist/skills/bundled/dca/index.js.map +1 -1
  17. package/dist/skills/bundled/edge/index.js +3 -3
  18. package/dist/skills/bundled/edge/index.js.map +1 -1
  19. package/dist/skills/bundled/history/index.js +3 -2
  20. package/dist/skills/bundled/history/index.js.map +1 -1
  21. package/dist/skills/bundled/markets/index.js +2 -2
  22. package/dist/skills/bundled/markets/index.js.map +1 -1
  23. package/dist/skills/bundled/metaculus/index.js +3 -3
  24. package/dist/skills/bundled/metrics/index.js +2 -2
  25. package/dist/skills/bundled/metrics/index.js.map +1 -1
  26. package/dist/skills/bundled/mev/index.js +1 -1
  27. package/dist/skills/bundled/mev/index.js.map +1 -1
  28. package/dist/skills/bundled/monitoring/index.js +1 -1
  29. package/dist/skills/bundled/monitoring/index.js.map +1 -1
  30. package/dist/skills/bundled/pancakeswap/index.js +1 -1
  31. package/dist/skills/bundled/percolator/index.js +2 -2
  32. package/dist/skills/bundled/percolator/index.js.map +1 -1
  33. package/dist/skills/bundled/pumpfun/SKILL.md +2 -2
  34. package/dist/skills/bundled/pumpfun/index.d.ts +1 -1
  35. package/dist/skills/bundled/pumpfun/index.js +11 -11
  36. package/dist/skills/bundled/pumpfun/index.js.map +1 -1
  37. package/dist/skills/bundled/qmd/index.js +1 -1
  38. package/dist/skills/bundled/qmd/index.js.map +1 -1
  39. package/dist/skills/bundled/remote/index.js +4 -0
  40. package/dist/skills/bundled/remote/index.js.map +1 -1
  41. package/dist/skills/bundled/router/index.js +2 -1
  42. package/dist/skills/bundled/router/index.js.map +1 -1
  43. package/dist/skills/bundled/sizing/index.js +2 -2
  44. package/dist/skills/bundled/sizing/index.js.map +1 -1
  45. package/dist/skills/bundled/streaming/index.js +12 -4
  46. package/dist/skills/bundled/streaming/index.js.map +1 -1
  47. package/dist/skills/bundled/trading-solana/SKILL.md +2 -2
  48. package/dist/skills/bundled/triggers/index.js +3 -1
  49. package/dist/skills/bundled/triggers/index.js.map +1 -1
  50. package/dist/skills/bundled/tts/index.js +2 -2
  51. package/dist/skills/bundled/tts/index.js.map +1 -1
  52. package/dist/skills/bundled/x-research/SKILL.md +97 -0
  53. package/dist/skills/bundled/x-research/index.d.ts +24 -0
  54. package/dist/skills/bundled/x-research/index.js +618 -0
  55. package/dist/skills/bundled/x-research/index.js.map +1 -0
  56. package/dist/skills/executor.d.ts +1 -1
  57. package/dist/skills/executor.js +15 -1
  58. package/dist/skills/executor.js.map +1 -1
  59. package/dist/skills/help.d.ts +1 -1
  60. package/dist/skills/help.js +1 -1
  61. package/dist/solana/pumpapi.d.ts +7 -7
  62. package/dist/solana/pumpapi.js +5 -5
  63. package/dist/solana/pumpapi.js.map +1 -1
  64. package/package.json +2 -2
package/README.md CHANGED
@@ -116,7 +116,7 @@ See [docs/USER_GUIDE.md](./docs/USER_GUIDE.md) for all commands.
116
116
  | **Token Security** | GoPlus-powered audits — honeypot detection, rug-pull analysis, holder concentration, risk scoring |
117
117
  | **Security Shield** | Code scanning (75 rules), scam DB (70+ addresses), multi-chain address checking, pre-trade tx validation |
118
118
  | **Trading** | Order execution on 16+ platforms (prediction markets, futures, Solana DEXs, EVM DEXs), portfolio tracking, P&L, DCA |
119
- | **MCP Server** | Expose all 118 skills as MCP tools for Claude Desktop and Claude Code |
119
+ | **MCP Server** | Expose all 119 skills as MCP tools for Claude Desktop and Claude Code |
120
120
  | **Arbitrage** | Cross-platform detection, combinatorial analysis, semantic matching, real-time scanning |
121
121
  | **AI** | 8 LLM providers, 4 specialized agents, semantic memory, 18 tools |
122
122
  | **i18n** | 10 languages (EN, ZH, ES, JA, KO, DE, FR, PT, RU, AR) |
@@ -521,7 +521,7 @@ docker compose up --build
521
521
  | Prediction Markets | **10** |
522
522
  | Futures Exchanges | **7** |
523
523
  | AI Tools | **18** |
524
- | Skills | **118** |
524
+ | Skills | **119** |
525
525
  | LLM Providers | **8** |
526
526
  | Solana DeFi Protocols | **9** |
527
527
  | Trading Strategies | **4** |
@@ -4637,7 +4637,7 @@ function buildTools() {
4637
4637
  },
4638
4638
  {
4639
4639
  name: 'pumpfun_graduated',
4640
- description: 'Get tokens that graduated to Raydium from Pump.fun.',
4640
+ description: 'Get tokens that graduated to PumpSwap from Pump.fun.',
4641
4641
  input_schema: {
4642
4642
  type: 'object',
4643
4643
  properties: {
@@ -4898,7 +4898,7 @@ function buildTools() {
4898
4898
  },
4899
4899
  {
4900
4900
  name: 'pumpfun_graduation_check',
4901
- description: 'Check if a Pump.fun token has graduated to Raydium.',
4901
+ description: 'Check if a Pump.fun token has graduated to PumpSwap.',
4902
4902
  input_schema: {
4903
4903
  type: 'object',
4904
4904
  properties: {
@@ -4945,7 +4945,7 @@ function buildTools() {
4945
4945
  },
4946
4946
  {
4947
4947
  name: 'pumpfun_best_pool',
4948
- description: 'Determine best execution venue for a token (pump bonding curve or raydium after graduation).',
4948
+ description: 'Determine best execution venue for a token (pump bonding curve or PumpSwap after graduation).',
4949
4949
  input_schema: {
4950
4950
  type: 'object',
4951
4951
  properties: {
@@ -13126,7 +13126,7 @@ async function executeTool(toolName, toolInput, context) {
13126
13126
  return JSON.stringify({ error: 'Bonding curve not found' });
13127
13127
  }
13128
13128
  if (state.complete) {
13129
- return JSON.stringify({ error: 'Token has graduated to Raydium - use Jupiter or Raydium for swaps' });
13129
+ return JSON.stringify({ error: 'Token has graduated to PumpSwap - use Jupiter for swaps' });
13130
13130
  }
13131
13131
  const BN = (await Promise.resolve().then(() => __importStar(require('bn.js')))).default;
13132
13132
  const solAmount = new BN(Math.floor(toolInput.sol_amount * 1e9));
@@ -13153,7 +13153,7 @@ async function executeTool(toolName, toolInput, context) {
13153
13153
  return JSON.stringify({ error: 'Bonding curve not found' });
13154
13154
  }
13155
13155
  if (state.complete) {
13156
- return JSON.stringify({ error: 'Token has graduated to Raydium - use Jupiter or Raydium for swaps' });
13156
+ return JSON.stringify({ error: 'Token has graduated to PumpSwap - use Jupiter for swaps' });
13157
13157
  }
13158
13158
  const BN = (await Promise.resolve().then(() => __importStar(require('bn.js')))).default;
13159
13159
  const tokenAmount = new BN(Math.floor(toolInput.token_amount * 1e6));