skillpp 0.1.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 (208) hide show
  1. package/COMPATIBILITY.md +58 -0
  2. package/LICENSE +21 -0
  3. package/README.md +307 -0
  4. package/README.zh-CN.md +307 -0
  5. package/SKILL.md +490 -0
  6. package/adapters/binance-ai.md +22 -0
  7. package/adapters/claude.md +21 -0
  8. package/adapters/gemini.md +26 -0
  9. package/adapters/gpt.md +28 -0
  10. package/adapters/kimi.md +26 -0
  11. package/adapters/mimo.md +22 -0
  12. package/adapters/openclaw.md +29 -0
  13. package/assets/skillpp-banner.png +0 -0
  14. package/package.json +59 -0
  15. package/pipelines.md +310 -0
  16. package/prompts/newbie-mode.md +48 -0
  17. package/prompts/router-prompt.md +32 -0
  18. package/prompts/universal-system-prompt.md +41 -0
  19. package/registry.md +209 -0
  20. package/rules.md +323 -0
  21. package/schemas/audit.schema.json +67 -0
  22. package/schemas/checkpoint.schema.json +86 -0
  23. package/schemas/handoff.schema.json +82 -0
  24. package/schemas/token.schema.json +36 -0
  25. package/scripts/compatibility-check.mjs +130 -0
  26. package/scripts/selftest.mjs +384 -0
  27. package/scripts/skillpp.mjs +448 -0
  28. package/scripts/validate-skillpp.mjs +140 -0
  29. package/skillpp.manifest.json +714 -0
  30. package/skills/audit-plus/SKILL.md +612 -0
  31. package/skills/binance/binance/CHANGELOG.md +112 -0
  32. package/skills/binance/binance/LICENSE.md +9 -0
  33. package/skills/binance/binance/SKILL.md +69 -0
  34. package/skills/binance/binance/references/algo.md +21 -0
  35. package/skills/binance/binance/references/alpha.md +9 -0
  36. package/skills/binance/binance/references/auth.md +32 -0
  37. package/skills/binance/binance/references/c2c.md +5 -0
  38. package/skills/binance/binance/references/convert.md +19 -0
  39. package/skills/binance/binance/references/copy-trading.md +6 -0
  40. package/skills/binance/binance/references/crypto-loan.md +27 -0
  41. package/skills/binance/binance/references/derivatives-options-streams.md +25 -0
  42. package/skills/binance/binance/references/derivatives-options.md +85 -0
  43. package/skills/binance/binance/references/derivatives-portfolio-margin-pro-streams.md +5 -0
  44. package/skills/binance/binance/references/derivatives-portfolio-margin-pro.md +34 -0
  45. package/skills/binance/binance/references/derivatives-portfolio-margin-streams.md +5 -0
  46. package/skills/binance/binance/references/derivatives-portfolio-margin.md +146 -0
  47. package/skills/binance/binance/references/dual-investment.md +15 -0
  48. package/skills/binance/binance/references/fiat.md +9 -0
  49. package/skills/binance/binance/references/futures-coin-streams.md +29 -0
  50. package/skills/binance/binance/references/futures-coin.md +109 -0
  51. package/skills/binance/binance/references/futures-usds-streams.md +35 -0
  52. package/skills/binance/binance/references/futures-usds.md +144 -0
  53. package/skills/binance/binance/references/gift-card.md +10 -0
  54. package/skills/binance/binance/references/margin-trading-streams.md +6 -0
  55. package/skills/binance/binance/references/margin-trading.md +101 -0
  56. package/skills/binance/binance/references/mining.md +17 -0
  57. package/skills/binance/binance/references/pay.md +5 -0
  58. package/skills/binance/binance/references/rebate.md +5 -0
  59. package/skills/binance/binance/references/simple-earn.md +56 -0
  60. package/skills/binance/binance/references/spot-streams.md +25 -0
  61. package/skills/binance/binance/references/spot.md +114 -0
  62. package/skills/binance/binance/references/staking.md +59 -0
  63. package/skills/binance/binance/references/sub-account.md +67 -0
  64. package/skills/binance/binance/references/vip-loan.md +27 -0
  65. package/skills/binance/binance/references/wallet.md +75 -0
  66. package/skills/binance/fiat/CHANGELOG.md +11 -0
  67. package/skills/binance/fiat/LICENSE.md +9 -0
  68. package/skills/binance/fiat/SKILL.md +169 -0
  69. package/skills/binance/fiat/references/authentication.md +126 -0
  70. package/skills/binance/fiat/references/sapi-endpoints.md +217 -0
  71. package/skills/binance/onchain-pay/.local.md.example +10 -0
  72. package/skills/binance/onchain-pay/CHANGELOG.md +20 -0
  73. package/skills/binance/onchain-pay/LICENSE.md +9 -0
  74. package/skills/binance/onchain-pay/SKILL.md +466 -0
  75. package/skills/binance/onchain-pay/references/authentication.md +92 -0
  76. package/skills/binance/onchain-pay/scripts/sign_and_call.sh +52 -0
  77. package/skills/binance/p2p/CHANGELOG.md +33 -0
  78. package/skills/binance/p2p/LICENSE.md +9 -0
  79. package/skills/binance/p2p/SKILL.md +1082 -0
  80. package/skills/binance/p2p/references/agent-sapi-api.md +795 -0
  81. package/skills/binance/p2p/references/authentication.md +100 -0
  82. package/skills/binance/payment/SKILL.md +824 -0
  83. package/skills/binance/payment/common.py +560 -0
  84. package/skills/binance/payment/payment_skill.py +86 -0
  85. package/skills/binance/payment/receive.py +109 -0
  86. package/skills/binance/payment/references/setup-guide.md +77 -0
  87. package/skills/binance/payment/requirements.txt +4 -0
  88. package/skills/binance/payment/send.py +952 -0
  89. package/skills/binance/payment/send_extension/__init__.py +43 -0
  90. package/skills/binance/payment/send_extension/base.py +48 -0
  91. package/skills/binance/payment/send_extension/c2c.py +193 -0
  92. package/skills/binance/payment/send_extension/pix.py +316 -0
  93. package/skills/binance/square-post/README.md +62 -0
  94. package/skills/binance/square-post/SKILL.md +171 -0
  95. package/skills/binance/square-post/scripts/lib.mjs +175 -0
  96. package/skills/binance/square-post/scripts/post-image.mjs +80 -0
  97. package/skills/binance/square-post/scripts/post-text.mjs +41 -0
  98. package/skills/binance/square-post/scripts/post-video.mjs +110 -0
  99. package/skills/binance/square-post/scripts/save-key.mjs +34 -0
  100. package/skills/binance-web3/binance-agentic-wallet/SKILL.md +150 -0
  101. package/skills/binance-web3/binance-agentic-wallet/references/authentication.md +136 -0
  102. package/skills/binance-web3/binance-agentic-wallet/references/limit-order.md +204 -0
  103. package/skills/binance-web3/binance-agentic-wallet/references/market-order.md +179 -0
  104. package/skills/binance-web3/binance-agentic-wallet/references/prediction.md +489 -0
  105. package/skills/binance-web3/binance-agentic-wallet/references/preflight.md +66 -0
  106. package/skills/binance-web3/binance-agentic-wallet/references/security.md +47 -0
  107. package/skills/binance-web3/binance-agentic-wallet/references/send.md +53 -0
  108. package/skills/binance-web3/binance-agentic-wallet/references/wallet-setting.md +86 -0
  109. package/skills/binance-web3/binance-agentic-wallet/references/wallet-view.md +312 -0
  110. package/skills/binance-web3/binance-agentic-wallet/references/x402-payment.md +259 -0
  111. package/skills/binance-web3/binance-tokenized-securities-info/SKILL.md +613 -0
  112. package/skills/binance-web3/crypto-market-rank/SKILL.md +91 -0
  113. package/skills/binance-web3/crypto-market-rank/references/cli.md +219 -0
  114. package/skills/binance-web3/crypto-market-rank/scripts/cli.mjs +149 -0
  115. package/skills/binance-web3/meme-rush/SKILL.md +72 -0
  116. package/skills/binance-web3/meme-rush/references/cli.md +158 -0
  117. package/skills/binance-web3/meme-rush/scripts/cli.mjs +101 -0
  118. package/skills/binance-web3/query-address-info/SKILL.md +61 -0
  119. package/skills/binance-web3/query-address-info/references/cli.md +56 -0
  120. package/skills/binance-web3/query-address-info/scripts/cli.mjs +132 -0
  121. package/skills/binance-web3/query-token-audit/SKILL.md +162 -0
  122. package/skills/binance-web3/query-token-info/SKILL.md +83 -0
  123. package/skills/binance-web3/query-token-info/references/cli.md +135 -0
  124. package/skills/binance-web3/query-token-info/scripts/cli.mjs +112 -0
  125. package/skills/binance-web3/trading-signal/SKILL.md +66 -0
  126. package/skills/binance-web3/trading-signal/references/cli.md +90 -0
  127. package/skills/binance-web3/trading-signal/scripts/cli.mjs +92 -0
  128. package/skills/four-meme/four-guard/API-Contract-TaxToken.md +277 -0
  129. package/skills/four-meme/four-guard/API-CreateToken.02-02-2026.md +285 -0
  130. package/skills/four-meme/four-guard/API-Documents.03-03-2026.md +789 -0
  131. package/skills/four-meme/four-guard/AgentIdentifier.abi +585 -0
  132. package/skills/four-meme/four-guard/README.md +21 -0
  133. package/skills/four-meme/four-guard/SKILL.md +31 -0
  134. package/skills/four-meme/four-guard/TaxToken.abi +969 -0
  135. package/skills/four-meme/four-guard/TokenIdentifierSample.js_ +81 -0
  136. package/skills/four-meme/four-guard/TokenIdentifierSample.sol +69 -0
  137. package/skills/four-meme/four-guard/TokenManager.lite.abi +836 -0
  138. package/skills/four-meme/four-guard/TokenManager2.lite.abi +2325 -0
  139. package/skills/four-meme/four-guard/TokenManagerHelper3.abi +999 -0
  140. package/skills/four-meme/four-guard/go.mod +36 -0
  141. package/skills/four-meme/four-guard/go.sum +127 -0
  142. package/skills/four-meme/four-guard/main.go +183 -0
  143. package/skills/four-meme/four-meme-ai/SKILL.md +31 -0
  144. package/skills/four-meme/four-meme-ai/references/agent-creator-and-wallets.md +87 -0
  145. package/skills/four-meme/four-meme-ai/references/api-create-token.md +55 -0
  146. package/skills/four-meme/four-meme-ai/references/contract-addresses.md +47 -0
  147. package/skills/four-meme/four-meme-ai/references/create-token-scripts.md +131 -0
  148. package/skills/four-meme/four-meme-ai/references/errors.md +29 -0
  149. package/skills/four-meme/four-meme-ai/references/event-listening.md +75 -0
  150. package/skills/four-meme/four-meme-ai/references/execute-trade.md +31 -0
  151. package/skills/four-meme/four-meme-ai/references/tax-token-query.md +38 -0
  152. package/skills/four-meme/four-meme-ai/references/token-query-api.md +44 -0
  153. package/skills/four-meme/four-meme-ai/references/token-tax-info.md +77 -0
  154. package/skills/four-meme/four-meme-ai/scripts/8004-balance.ts +52 -0
  155. package/skills/four-meme/four-meme-ai/scripts/8004-register.ts +108 -0
  156. package/skills/four-meme/four-meme-ai/scripts/create-token-api.ts +321 -0
  157. package/skills/four-meme/four-meme-ai/scripts/create-token-chain.ts +102 -0
  158. package/skills/four-meme/four-meme-ai/scripts/create-token-instant.ts +106 -0
  159. package/skills/four-meme/four-meme-ai/scripts/execute-buy.ts +198 -0
  160. package/skills/four-meme/four-meme-ai/scripts/execute-sell.ts +150 -0
  161. package/skills/four-meme/four-meme-ai/scripts/get-public-config.ts +25 -0
  162. package/skills/four-meme/four-meme-ai/scripts/get-recent-events.ts +76 -0
  163. package/skills/four-meme/four-meme-ai/scripts/get-tax-token-info.ts +69 -0
  164. package/skills/four-meme/four-meme-ai/scripts/get-token-info.ts +94 -0
  165. package/skills/four-meme/four-meme-ai/scripts/quote-buy.ts +85 -0
  166. package/skills/four-meme/four-meme-ai/scripts/quote-sell.ts +66 -0
  167. package/skills/four-meme/four-meme-ai/scripts/send-token.ts +98 -0
  168. package/skills/four-meme/four-meme-ai/scripts/token-get.ts +31 -0
  169. package/skills/four-meme/four-meme-ai/scripts/token-list.ts +134 -0
  170. package/skills/four-meme/four-meme-ai/scripts/token-rankings.ts +162 -0
  171. package/skills/four-meme/four-meme-ai/scripts/verify-events.ts +47 -0
  172. package/skills/four-meme/four-meme-integration/SKILL.md +374 -0
  173. package/skills/four-meme/four-meme-integration/references/agent-creator-and-wallets.md +87 -0
  174. package/skills/four-meme/four-meme-integration/references/api-create-token.md +55 -0
  175. package/skills/four-meme/four-meme-integration/references/contract-addresses.md +47 -0
  176. package/skills/four-meme/four-meme-integration/references/create-token-scripts.md +131 -0
  177. package/skills/four-meme/four-meme-integration/references/errors.md +29 -0
  178. package/skills/four-meme/four-meme-integration/references/event-listening.md +75 -0
  179. package/skills/four-meme/four-meme-integration/references/execute-trade.md +31 -0
  180. package/skills/four-meme/four-meme-integration/references/tax-token-query.md +38 -0
  181. package/skills/four-meme/four-meme-integration/references/token-query-api.md +44 -0
  182. package/skills/four-meme/four-meme-integration/references/token-tax-info.md +77 -0
  183. package/skills/four-meme/four-meme-integration/scripts/8004-balance.ts +52 -0
  184. package/skills/four-meme/four-meme-integration/scripts/8004-register.ts +108 -0
  185. package/skills/four-meme/four-meme-integration/scripts/create-token-api.ts +321 -0
  186. package/skills/four-meme/four-meme-integration/scripts/create-token-chain.ts +102 -0
  187. package/skills/four-meme/four-meme-integration/scripts/create-token-instant.ts +106 -0
  188. package/skills/four-meme/four-meme-integration/scripts/execute-buy.ts +198 -0
  189. package/skills/four-meme/four-meme-integration/scripts/execute-sell.ts +150 -0
  190. package/skills/four-meme/four-meme-integration/scripts/get-public-config.ts +25 -0
  191. package/skills/four-meme/four-meme-integration/scripts/get-recent-events.ts +76 -0
  192. package/skills/four-meme/four-meme-integration/scripts/get-tax-token-info.ts +69 -0
  193. package/skills/four-meme/four-meme-integration/scripts/get-token-info.ts +94 -0
  194. package/skills/four-meme/four-meme-integration/scripts/quote-buy.ts +85 -0
  195. package/skills/four-meme/four-meme-integration/scripts/quote-sell.ts +66 -0
  196. package/skills/four-meme/four-meme-integration/scripts/send-token.ts +98 -0
  197. package/skills/four-meme/four-meme-integration/scripts/token-get.ts +31 -0
  198. package/skills/four-meme/four-meme-integration/scripts/token-list.ts +134 -0
  199. package/skills/four-meme/four-meme-integration/scripts/token-rankings.ts +162 -0
  200. package/skills/four-meme/four-meme-integration/scripts/verify-events.ts +47 -0
  201. package/skills/skillpp/contract-profiler/SKILL.md +118 -0
  202. package/skills/skillpp/newbie-tutor/SKILL.md +85 -0
  203. package/skills/skillpp/opportunity-board/SKILL.md +87 -0
  204. package/skills/skillpp/risk-fusion/SKILL.md +146 -0
  205. package/skills/skillpp/scam-pattern-lab/SKILL.md +115 -0
  206. package/skills/skillpp/wallet-doctor/SKILL.md +119 -0
  207. package/skills/skillpp/watchtower/SKILL.md +72 -0
  208. package/tests/compatibility/v0.1.0.json +117 -0
@@ -0,0 +1,714 @@
1
+ {
2
+ "$schema": "https://skillpp.ai/schemas/skillpp.manifest.schema.json",
3
+ "protocol": "skill++",
4
+ "version": "0.1.0",
5
+ "description": "Machine-readable registry of all skills available to the Skill++ scheduler.",
6
+ "skills": [
7
+ {
8
+ "name": "query-token-info",
9
+ "group": "binance-web3",
10
+ "path": "skills/binance-web3/query-token-info/",
11
+ "entry": "SKILL.md",
12
+ "execCommand": "node skills/binance-web3/query-token-info/scripts/cli.mjs",
13
+ "commands": [
14
+ "search",
15
+ "meta",
16
+ "dynamic",
17
+ "kline"
18
+ ],
19
+ "readOnly": true,
20
+ "needsCheckpoint": false,
21
+ "needsKey": false,
22
+ "chains": [
23
+ "1",
24
+ "56",
25
+ "8453",
26
+ "CT_501"
27
+ ],
28
+ "deps": [
29
+ "node"
30
+ ],
31
+ "producesSchema": "token",
32
+ "inputHint": "keyword or contract address"
33
+ },
34
+ {
35
+ "name": "query-token-audit",
36
+ "group": "binance-web3",
37
+ "path": "skills/binance-web3/query-token-audit/",
38
+ "entry": "SKILL.md",
39
+ "execCommand": "curl -X POST https://web3.binance.com/bapi/defi/v1/public/wallet-direct/security/token/audit",
40
+ "commands": [
41
+ "audit"
42
+ ],
43
+ "readOnly": true,
44
+ "needsCheckpoint": false,
45
+ "needsKey": false,
46
+ "chains": [
47
+ "1",
48
+ "56",
49
+ "8453",
50
+ "CT_501"
51
+ ],
52
+ "deps": [
53
+ "curl"
54
+ ],
55
+ "producesSchema": "audit",
56
+ "inputHint": "chainId + contractAddress"
57
+ },
58
+ {
59
+ "name": "query-address-info",
60
+ "group": "binance-web3",
61
+ "path": "skills/binance-web3/query-address-info/",
62
+ "entry": "SKILL.md",
63
+ "execCommand": "node skills/binance-web3/query-address-info/scripts/cli.mjs",
64
+ "commands": [
65
+ "positions"
66
+ ],
67
+ "readOnly": true,
68
+ "needsCheckpoint": false,
69
+ "needsKey": false,
70
+ "chains": [
71
+ "1",
72
+ "56",
73
+ "8453",
74
+ "CT_501"
75
+ ],
76
+ "deps": [
77
+ "node"
78
+ ],
79
+ "producesSchema": "wallet",
80
+ "inputHint": "wallet address + chainId"
81
+ },
82
+ {
83
+ "name": "trading-signal",
84
+ "group": "binance-web3",
85
+ "path": "skills/binance-web3/trading-signal/",
86
+ "entry": "SKILL.md",
87
+ "execCommand": "node skills/binance-web3/trading-signal/scripts/cli.mjs",
88
+ "commands": [
89
+ "smart-money"
90
+ ],
91
+ "readOnly": true,
92
+ "needsCheckpoint": false,
93
+ "needsKey": false,
94
+ "chains": [
95
+ "56",
96
+ "CT_501"
97
+ ],
98
+ "deps": [
99
+ "node"
100
+ ],
101
+ "inputHint": "chainId"
102
+ },
103
+ {
104
+ "name": "crypto-market-rank",
105
+ "group": "binance-web3",
106
+ "path": "skills/binance-web3/crypto-market-rank/",
107
+ "entry": "SKILL.md",
108
+ "execCommand": "node skills/binance-web3/crypto-market-rank/scripts/cli.mjs",
109
+ "commands": [
110
+ "social-hype",
111
+ "token-rank",
112
+ "smart-money-inflow",
113
+ "meme-rank",
114
+ "address-pnl-rank"
115
+ ],
116
+ "readOnly": true,
117
+ "needsCheckpoint": false,
118
+ "needsKey": false,
119
+ "chains": [
120
+ "1",
121
+ "56",
122
+ "8453",
123
+ "CT_501"
124
+ ],
125
+ "deps": [
126
+ "node"
127
+ ],
128
+ "inputHint": "chainId + rankType"
129
+ },
130
+ {
131
+ "name": "meme-rush",
132
+ "group": "binance-web3",
133
+ "path": "skills/binance-web3/meme-rush/",
134
+ "entry": "SKILL.md",
135
+ "execCommand": "node skills/binance-web3/meme-rush/scripts/cli.mjs",
136
+ "commands": [
137
+ "meme-rush",
138
+ "topic-rush"
139
+ ],
140
+ "readOnly": true,
141
+ "needsCheckpoint": false,
142
+ "needsKey": false,
143
+ "chains": [
144
+ "56",
145
+ "CT_501",
146
+ "8453"
147
+ ],
148
+ "deps": [
149
+ "node"
150
+ ],
151
+ "inputHint": "chainId + rankType"
152
+ },
153
+ {
154
+ "name": "binance-agentic-wallet",
155
+ "group": "binance-web3",
156
+ "path": "skills/binance-web3/binance-agentic-wallet/",
157
+ "entry": "SKILL.md",
158
+ "execCommand": "baw",
159
+ "commands": [
160
+ "auth",
161
+ "wallet",
162
+ "market-order",
163
+ "limit-order",
164
+ "prediction",
165
+ "x402-payment"
166
+ ],
167
+ "readOnly": false,
168
+ "needsCheckpoint": true,
169
+ "needsKey": true,
170
+ "keyEnv": "PRIVATE_KEY",
171
+ "chains": [
172
+ "1",
173
+ "56",
174
+ "8453",
175
+ "CT_501"
176
+ ],
177
+ "deps": [
178
+ "@binance/agentic-wallet"
179
+ ],
180
+ "installCmd": "npm i -g @binance/agentic-wallet",
181
+ "inputHint": "varies by operation"
182
+ },
183
+ {
184
+ "name": "binance-tokenized-securities-info",
185
+ "group": "binance-web3",
186
+ "path": "skills/binance-web3/binance-tokenized-securities-info/",
187
+ "entry": "SKILL.md",
188
+ "execCommand": "curl https://web3.binance.com/bapi/defi/v1/public/wallet-direct/...",
189
+ "commands": [
190
+ "list",
191
+ "meta",
192
+ "market-status",
193
+ "asset-status",
194
+ "dynamic-v2",
195
+ "kline"
196
+ ],
197
+ "readOnly": true,
198
+ "needsCheckpoint": false,
199
+ "needsKey": false,
200
+ "chains": [
201
+ "1",
202
+ "56"
203
+ ],
204
+ "deps": [
205
+ "node"
206
+ ],
207
+ "inputHint": "ticker or contractAddress"
208
+ },
209
+ {
210
+ "name": "binance",
211
+ "group": "binance",
212
+ "path": "skills/binance/binance/",
213
+ "entry": "SKILL.md",
214
+ "execCommand": "binance-cli",
215
+ "commands": [
216
+ "spot",
217
+ "futures",
218
+ "convert",
219
+ "wallet",
220
+ "..."
221
+ ],
222
+ "readOnly": false,
223
+ "needsCheckpoint": true,
224
+ "needsKey": true,
225
+ "keyEnv": "BINANCE_API_KEY",
226
+ "chains": [
227
+ "all-exchange"
228
+ ],
229
+ "deps": [
230
+ "@binance/binance-cli"
231
+ ],
232
+ "installCmd": "npm i -g @binance/binance-cli",
233
+ "inputHint": "varies by operation"
234
+ },
235
+ {
236
+ "name": "fiat",
237
+ "group": "binance",
238
+ "path": "skills/binance/fiat/",
239
+ "entry": "SKILL.md",
240
+ "execCommand": "curl https://www.binance.com/bapi/fiat/v1/public/fiatpayment/agent/...",
241
+ "commands": [
242
+ "get-capabilities",
243
+ "payment-methods",
244
+ "quote"
245
+ ],
246
+ "readOnly": true,
247
+ "needsCheckpoint": false,
248
+ "needsKey": false,
249
+ "chains": [
250
+ "fiat"
251
+ ],
252
+ "deps": [
253
+ "curl"
254
+ ],
255
+ "inputHint": "country + fiatCurrency"
256
+ },
257
+ {
258
+ "name": "p2p",
259
+ "group": "binance",
260
+ "path": "skills/binance/p2p/",
261
+ "entry": "SKILL.md",
262
+ "execCommand": "curl ...",
263
+ "commands": [
264
+ "search-ads",
265
+ "order-history",
266
+ "appeal-status"
267
+ ],
268
+ "readOnly": true,
269
+ "needsCheckpoint": false,
270
+ "needsKey": false,
271
+ "chains": [
272
+ "p2p"
273
+ ],
274
+ "deps": [
275
+ "curl"
276
+ ],
277
+ "inputHint": "fiat + asset + tradeType"
278
+ },
279
+ {
280
+ "name": "payment",
281
+ "group": "binance",
282
+ "path": "skills/binance/payment/",
283
+ "entry": "SKILL.md",
284
+ "execCommand": "python3 skills/binance/payment/payment_skill.py",
285
+ "commands": [
286
+ "purchase",
287
+ "decode_qr",
288
+ "generate_receive"
289
+ ],
290
+ "readOnly": false,
291
+ "needsCheckpoint": true,
292
+ "needsKey": false,
293
+ "chains": [
294
+ "payment"
295
+ ],
296
+ "deps": [
297
+ "python3"
298
+ ],
299
+ "inputHint": "QR code data or payment link"
300
+ },
301
+ {
302
+ "name": "square-post",
303
+ "group": "binance",
304
+ "path": "skills/binance/square-post/",
305
+ "entry": "SKILL.md",
306
+ "execCommand": "node skills/binance/square-post/scripts/post-text.mjs",
307
+ "commands": [
308
+ "post-text",
309
+ "post-image",
310
+ "post-article",
311
+ "post-video"
312
+ ],
313
+ "readOnly": false,
314
+ "needsCheckpoint": true,
315
+ "needsKey": true,
316
+ "keyEnv": "BINANCE_SQUARE_OPENAPI_KEY",
317
+ "chains": [
318
+ "square"
319
+ ],
320
+ "deps": [
321
+ "node"
322
+ ],
323
+ "inputHint": "text content + optional media"
324
+ },
325
+ {
326
+ "name": "onchain-pay",
327
+ "group": "binance",
328
+ "path": "skills/binance/onchain-pay/",
329
+ "entry": "SKILL.md",
330
+ "execCommand": "curl ...",
331
+ "commands": [
332
+ "payment-method-list",
333
+ "trading-pairs",
334
+ "estimated-quote",
335
+ "pre-order"
336
+ ],
337
+ "readOnly": false,
338
+ "needsCheckpoint": true,
339
+ "needsKey": true,
340
+ "chains": [
341
+ "fiat-to-crypto"
342
+ ],
343
+ "deps": [
344
+ "curl"
345
+ ],
346
+ "inputHint": "fiatAmount + cryptoCurrency + walletAddress"
347
+ },
348
+ {
349
+ "name": "four-meme-integration",
350
+ "group": "four-meme",
351
+ "path": "skills/four-meme/four-meme-integration/",
352
+ "entry": "SKILL.md",
353
+ "execCommand": "npx fourmeme",
354
+ "commands": [
355
+ "create-instant",
356
+ "create-api",
357
+ "create-chain",
358
+ "buy",
359
+ "sell",
360
+ "send",
361
+ "token-info",
362
+ "token-list",
363
+ "token-rankings",
364
+ "quote-buy",
365
+ "quote-sell",
366
+ "events",
367
+ "tax-info",
368
+ "8004-register",
369
+ "8004-balance"
370
+ ],
371
+ "readOnly": false,
372
+ "needsCheckpoint": true,
373
+ "needsKey": true,
374
+ "keyEnv": "PRIVATE_KEY",
375
+ "chains": [
376
+ "56"
377
+ ],
378
+ "deps": [
379
+ "@four-meme/four-meme-ai"
380
+ ],
381
+ "installCmd": "npm i -g @four-meme/four-meme-ai@latest",
382
+ "securityNotice": true,
383
+ "inputHint": "varies by operation"
384
+ },
385
+ {
386
+ "name": "four-meme-ai",
387
+ "group": "four-meme",
388
+ "path": "skills/four-meme/four-meme-ai/",
389
+ "entry": "SKILL.md",
390
+ "execCommand": "read-only documentation",
391
+ "commands": [
392
+ "docs"
393
+ ],
394
+ "readOnly": true,
395
+ "needsCheckpoint": false,
396
+ "needsKey": false,
397
+ "chains": [
398
+ "56"
399
+ ],
400
+ "deps": [],
401
+ "inputHint": "documentation query"
402
+ },
403
+ {
404
+ "name": "four-guard",
405
+ "group": "four-meme",
406
+ "path": "skills/four-meme/four-guard/",
407
+ "entry": "SKILL.md",
408
+ "execCommand": "read-only reference",
409
+ "commands": [
410
+ "abi",
411
+ "contracts",
412
+ "api-docs"
413
+ ],
414
+ "readOnly": true,
415
+ "needsCheckpoint": false,
416
+ "needsKey": false,
417
+ "chains": [
418
+ "56"
419
+ ],
420
+ "deps": [],
421
+ "inputHint": "reference query"
422
+ },
423
+ {
424
+ "name": "audit-plus",
425
+ "group": "audit",
426
+ "path": "skills/audit-plus/",
427
+ "entry": "SKILL.md",
428
+ "execCommand": "curl block-explorer-api + AI analysis",
429
+ "commands": [
430
+ "analyze",
431
+ "quick-assess"
432
+ ],
433
+ "readOnly": true,
434
+ "needsCheckpoint": true,
435
+ "needsKey": false,
436
+ "chains": [
437
+ "1",
438
+ "56",
439
+ "8453",
440
+ "137",
441
+ "43114",
442
+ "42161",
443
+ "10"
444
+ ],
445
+ "deps": [
446
+ "curl"
447
+ ],
448
+ "producesSchema": "audit",
449
+ "inputHint": "contract address or source code"
450
+ },
451
+ {
452
+ "name": "contract-profiler",
453
+ "group": "skillpp",
454
+ "path": "skills/skillpp/contract-profiler/",
455
+ "entry": "SKILL.md",
456
+ "execCommand": "AI analysis of Solidity source",
457
+ "commands": [
458
+ "profile"
459
+ ],
460
+ "readOnly": true,
461
+ "needsCheckpoint": false,
462
+ "needsKey": false,
463
+ "chains": [
464
+ "1",
465
+ "56",
466
+ "8453",
467
+ "137",
468
+ "43114",
469
+ "42161",
470
+ "10"
471
+ ],
472
+ "deps": [],
473
+ "inputHint": "solidity source code"
474
+ },
475
+ {
476
+ "name": "risk-fusion",
477
+ "group": "skillpp",
478
+ "path": "skills/skillpp/risk-fusion/",
479
+ "entry": "SKILL.md",
480
+ "execCommand": "AI aggregation of multiple risk sources",
481
+ "commands": [
482
+ "fuse"
483
+ ],
484
+ "readOnly": true,
485
+ "needsCheckpoint": false,
486
+ "needsKey": false,
487
+ "chains": [
488
+ "1",
489
+ "56",
490
+ "8453",
491
+ "137",
492
+ "43114",
493
+ "42161",
494
+ "10"
495
+ ],
496
+ "deps": [],
497
+ "producesSchema": "audit",
498
+ "inputHint": "multiple audit/market data sources"
499
+ },
500
+ {
501
+ "name": "wallet-doctor",
502
+ "group": "skillpp",
503
+ "path": "skills/skillpp/wallet-doctor/",
504
+ "entry": "SKILL.md",
505
+ "execCommand": "AI analysis aggregating query-address-info + query-token-audit",
506
+ "commands": [
507
+ "diagnose"
508
+ ],
509
+ "readOnly": true,
510
+ "needsCheckpoint": false,
511
+ "needsKey": false,
512
+ "chains": [
513
+ "1",
514
+ "56",
515
+ "8453",
516
+ "CT_501"
517
+ ],
518
+ "deps": [],
519
+ "inputHint": "wallet address + chainId"
520
+ },
521
+ {
522
+ "name": "newbie-tutor",
523
+ "group": "skillpp",
524
+ "path": "skills/skillpp/newbie-tutor/",
525
+ "entry": "SKILL.md",
526
+ "execCommand": "Context-bound term explanations",
527
+ "commands": [
528
+ "explain"
529
+ ],
530
+ "readOnly": true,
531
+ "needsCheckpoint": false,
532
+ "needsKey": false,
533
+ "chains": [
534
+ "all"
535
+ ],
536
+ "deps": [],
537
+ "inputHint": "term or concept to explain (with current context)"
538
+ },
539
+ {
540
+ "name": "watchtower",
541
+ "group": "skillpp",
542
+ "path": "skills/skillpp/watchtower/",
543
+ "entry": "SKILL.md",
544
+ "execCommand": "AI monitoring via BSCScan/etherscan API polling",
545
+ "commands": [
546
+ "watch",
547
+ "start",
548
+ "status",
549
+ "stop"
550
+ ],
551
+ "readOnly": true,
552
+ "needsCheckpoint": false,
553
+ "needsKey": false,
554
+ "chains": [
555
+ "1",
556
+ "56",
557
+ "8453"
558
+ ],
559
+ "deps": [
560
+ "curl"
561
+ ],
562
+ "inputHint": "contract address + conditions"
563
+ },
564
+ {
565
+ "name": "opportunity-board",
566
+ "group": "skillpp",
567
+ "path": "skills/skillpp/opportunity-board/",
568
+ "entry": "SKILL.md",
569
+ "execCommand": "AI cross-reference aggregation",
570
+ "commands": [
571
+ "board"
572
+ ],
573
+ "readOnly": true,
574
+ "needsCheckpoint": false,
575
+ "needsKey": false,
576
+ "chains": [
577
+ "56",
578
+ "CT_501",
579
+ "8453"
580
+ ],
581
+ "deps": [],
582
+ "inputHint": "chainId"
583
+ },
584
+ {
585
+ "name": "scam-pattern-lab",
586
+ "group": "skillpp",
587
+ "path": "skills/skillpp/scam-pattern-lab/",
588
+ "entry": "SKILL.md",
589
+ "execCommand": "AI pattern matching reference",
590
+ "commands": [
591
+ "check"
592
+ ],
593
+ "readOnly": true,
594
+ "needsCheckpoint": false,
595
+ "needsKey": false,
596
+ "chains": [
597
+ "all-evm"
598
+ ],
599
+ "deps": [],
600
+ "inputHint": "pattern id or contract code"
601
+ }
602
+ ],
603
+ "pipelines": [
604
+ {
605
+ "id": "P_TOKEN_ANALYSIS",
606
+ "name": "代币深度分析",
607
+ "skills": [
608
+ "query-token-info",
609
+ "query-token-audit",
610
+ "trading-signal",
611
+ "risk-fusion"
612
+ ],
613
+ "checkpoints": [
614
+ "AUDIT_RESULT"
615
+ ]
616
+ },
617
+ {
618
+ "id": "P_CHAIN_SCAN",
619
+ "name": "扫链找机会",
620
+ "skills": [
621
+ "meme-rush",
622
+ "crypto-market-rank",
623
+ "risk-fusion",
624
+ "opportunity-board"
625
+ ],
626
+ "checkpoints": []
627
+ },
628
+ {
629
+ "id": "P_TRADE_SAFETY",
630
+ "name": "安全交易前置",
631
+ "skills": [
632
+ "query-token-audit",
633
+ "audit-plus",
634
+ "risk-fusion"
635
+ ],
636
+ "checkpoints": [
637
+ "AUDIT_RESULT",
638
+ "TRADE_CONFIRM"
639
+ ]
640
+ },
641
+ {
642
+ "id": "P_WALLET_XRAY",
643
+ "name": "钱包持仓分析",
644
+ "skills": [
645
+ "query-address-info",
646
+ "query-token-audit",
647
+ "wallet-doctor"
648
+ ],
649
+ "checkpoints": []
650
+ },
651
+ {
652
+ "id": "P_SMART_MONEY",
653
+ "name": "聪明钱追踪",
654
+ "skills": [
655
+ "trading-signal",
656
+ "query-token-audit",
657
+ "risk-fusion"
658
+ ],
659
+ "checkpoints": []
660
+ },
661
+ {
662
+ "id": "P_FOURMEME_CREATE",
663
+ "name": "Four.meme 发币",
664
+ "skills": [
665
+ "four-meme-integration"
666
+ ],
667
+ "checkpoints": [
668
+ "SECURITY_NOTICE",
669
+ "CREATE_CONFIRM"
670
+ ]
671
+ },
672
+ {
673
+ "id": "P_DEEP_AUDIT",
674
+ "name": "合约深度审计",
675
+ "skills": [
676
+ "query-token-info",
677
+ "query-token-audit",
678
+ "contract-profiler",
679
+ "audit-plus",
680
+ "risk-fusion"
681
+ ],
682
+ "checkpoints": [
683
+ "AUDIT_REPORT"
684
+ ]
685
+ }
686
+ ],
687
+ "checkpoints": [
688
+ {
689
+ "id": "AUDIT_RESULT",
690
+ "securityLevel": "BLOCKING",
691
+ "canBypass": false
692
+ },
693
+ {
694
+ "id": "TRADE_CONFIRM",
695
+ "securityLevel": "BLOCKING",
696
+ "canBypass": false
697
+ },
698
+ {
699
+ "id": "SECURITY_NOTICE",
700
+ "securityLevel": "BLOCKING",
701
+ "canBypass": false
702
+ },
703
+ {
704
+ "id": "CREATE_CONFIRM",
705
+ "securityLevel": "BLOCKING",
706
+ "canBypass": false
707
+ },
708
+ {
709
+ "id": "AUDIT_REPORT",
710
+ "securityLevel": "ADVISORY",
711
+ "canBypass": true
712
+ }
713
+ ]
714
+ }