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.
- package/COMPATIBILITY.md +58 -0
- package/LICENSE +21 -0
- package/README.md +307 -0
- package/README.zh-CN.md +307 -0
- package/SKILL.md +490 -0
- package/adapters/binance-ai.md +22 -0
- package/adapters/claude.md +21 -0
- package/adapters/gemini.md +26 -0
- package/adapters/gpt.md +28 -0
- package/adapters/kimi.md +26 -0
- package/adapters/mimo.md +22 -0
- package/adapters/openclaw.md +29 -0
- package/assets/skillpp-banner.png +0 -0
- package/package.json +59 -0
- package/pipelines.md +310 -0
- package/prompts/newbie-mode.md +48 -0
- package/prompts/router-prompt.md +32 -0
- package/prompts/universal-system-prompt.md +41 -0
- package/registry.md +209 -0
- package/rules.md +323 -0
- package/schemas/audit.schema.json +67 -0
- package/schemas/checkpoint.schema.json +86 -0
- package/schemas/handoff.schema.json +82 -0
- package/schemas/token.schema.json +36 -0
- package/scripts/compatibility-check.mjs +130 -0
- package/scripts/selftest.mjs +384 -0
- package/scripts/skillpp.mjs +448 -0
- package/scripts/validate-skillpp.mjs +140 -0
- package/skillpp.manifest.json +714 -0
- package/skills/audit-plus/SKILL.md +612 -0
- package/skills/binance/binance/CHANGELOG.md +112 -0
- package/skills/binance/binance/LICENSE.md +9 -0
- package/skills/binance/binance/SKILL.md +69 -0
- package/skills/binance/binance/references/algo.md +21 -0
- package/skills/binance/binance/references/alpha.md +9 -0
- package/skills/binance/binance/references/auth.md +32 -0
- package/skills/binance/binance/references/c2c.md +5 -0
- package/skills/binance/binance/references/convert.md +19 -0
- package/skills/binance/binance/references/copy-trading.md +6 -0
- package/skills/binance/binance/references/crypto-loan.md +27 -0
- package/skills/binance/binance/references/derivatives-options-streams.md +25 -0
- package/skills/binance/binance/references/derivatives-options.md +85 -0
- package/skills/binance/binance/references/derivatives-portfolio-margin-pro-streams.md +5 -0
- package/skills/binance/binance/references/derivatives-portfolio-margin-pro.md +34 -0
- package/skills/binance/binance/references/derivatives-portfolio-margin-streams.md +5 -0
- package/skills/binance/binance/references/derivatives-portfolio-margin.md +146 -0
- package/skills/binance/binance/references/dual-investment.md +15 -0
- package/skills/binance/binance/references/fiat.md +9 -0
- package/skills/binance/binance/references/futures-coin-streams.md +29 -0
- package/skills/binance/binance/references/futures-coin.md +109 -0
- package/skills/binance/binance/references/futures-usds-streams.md +35 -0
- package/skills/binance/binance/references/futures-usds.md +144 -0
- package/skills/binance/binance/references/gift-card.md +10 -0
- package/skills/binance/binance/references/margin-trading-streams.md +6 -0
- package/skills/binance/binance/references/margin-trading.md +101 -0
- package/skills/binance/binance/references/mining.md +17 -0
- package/skills/binance/binance/references/pay.md +5 -0
- package/skills/binance/binance/references/rebate.md +5 -0
- package/skills/binance/binance/references/simple-earn.md +56 -0
- package/skills/binance/binance/references/spot-streams.md +25 -0
- package/skills/binance/binance/references/spot.md +114 -0
- package/skills/binance/binance/references/staking.md +59 -0
- package/skills/binance/binance/references/sub-account.md +67 -0
- package/skills/binance/binance/references/vip-loan.md +27 -0
- package/skills/binance/binance/references/wallet.md +75 -0
- package/skills/binance/fiat/CHANGELOG.md +11 -0
- package/skills/binance/fiat/LICENSE.md +9 -0
- package/skills/binance/fiat/SKILL.md +169 -0
- package/skills/binance/fiat/references/authentication.md +126 -0
- package/skills/binance/fiat/references/sapi-endpoints.md +217 -0
- package/skills/binance/onchain-pay/.local.md.example +10 -0
- package/skills/binance/onchain-pay/CHANGELOG.md +20 -0
- package/skills/binance/onchain-pay/LICENSE.md +9 -0
- package/skills/binance/onchain-pay/SKILL.md +466 -0
- package/skills/binance/onchain-pay/references/authentication.md +92 -0
- package/skills/binance/onchain-pay/scripts/sign_and_call.sh +52 -0
- package/skills/binance/p2p/CHANGELOG.md +33 -0
- package/skills/binance/p2p/LICENSE.md +9 -0
- package/skills/binance/p2p/SKILL.md +1082 -0
- package/skills/binance/p2p/references/agent-sapi-api.md +795 -0
- package/skills/binance/p2p/references/authentication.md +100 -0
- package/skills/binance/payment/SKILL.md +824 -0
- package/skills/binance/payment/common.py +560 -0
- package/skills/binance/payment/payment_skill.py +86 -0
- package/skills/binance/payment/receive.py +109 -0
- package/skills/binance/payment/references/setup-guide.md +77 -0
- package/skills/binance/payment/requirements.txt +4 -0
- package/skills/binance/payment/send.py +952 -0
- package/skills/binance/payment/send_extension/__init__.py +43 -0
- package/skills/binance/payment/send_extension/base.py +48 -0
- package/skills/binance/payment/send_extension/c2c.py +193 -0
- package/skills/binance/payment/send_extension/pix.py +316 -0
- package/skills/binance/square-post/README.md +62 -0
- package/skills/binance/square-post/SKILL.md +171 -0
- package/skills/binance/square-post/scripts/lib.mjs +175 -0
- package/skills/binance/square-post/scripts/post-image.mjs +80 -0
- package/skills/binance/square-post/scripts/post-text.mjs +41 -0
- package/skills/binance/square-post/scripts/post-video.mjs +110 -0
- package/skills/binance/square-post/scripts/save-key.mjs +34 -0
- package/skills/binance-web3/binance-agentic-wallet/SKILL.md +150 -0
- package/skills/binance-web3/binance-agentic-wallet/references/authentication.md +136 -0
- package/skills/binance-web3/binance-agentic-wallet/references/limit-order.md +204 -0
- package/skills/binance-web3/binance-agentic-wallet/references/market-order.md +179 -0
- package/skills/binance-web3/binance-agentic-wallet/references/prediction.md +489 -0
- package/skills/binance-web3/binance-agentic-wallet/references/preflight.md +66 -0
- package/skills/binance-web3/binance-agentic-wallet/references/security.md +47 -0
- package/skills/binance-web3/binance-agentic-wallet/references/send.md +53 -0
- package/skills/binance-web3/binance-agentic-wallet/references/wallet-setting.md +86 -0
- package/skills/binance-web3/binance-agentic-wallet/references/wallet-view.md +312 -0
- package/skills/binance-web3/binance-agentic-wallet/references/x402-payment.md +259 -0
- package/skills/binance-web3/binance-tokenized-securities-info/SKILL.md +613 -0
- package/skills/binance-web3/crypto-market-rank/SKILL.md +91 -0
- package/skills/binance-web3/crypto-market-rank/references/cli.md +219 -0
- package/skills/binance-web3/crypto-market-rank/scripts/cli.mjs +149 -0
- package/skills/binance-web3/meme-rush/SKILL.md +72 -0
- package/skills/binance-web3/meme-rush/references/cli.md +158 -0
- package/skills/binance-web3/meme-rush/scripts/cli.mjs +101 -0
- package/skills/binance-web3/query-address-info/SKILL.md +61 -0
- package/skills/binance-web3/query-address-info/references/cli.md +56 -0
- package/skills/binance-web3/query-address-info/scripts/cli.mjs +132 -0
- package/skills/binance-web3/query-token-audit/SKILL.md +162 -0
- package/skills/binance-web3/query-token-info/SKILL.md +83 -0
- package/skills/binance-web3/query-token-info/references/cli.md +135 -0
- package/skills/binance-web3/query-token-info/scripts/cli.mjs +112 -0
- package/skills/binance-web3/trading-signal/SKILL.md +66 -0
- package/skills/binance-web3/trading-signal/references/cli.md +90 -0
- package/skills/binance-web3/trading-signal/scripts/cli.mjs +92 -0
- package/skills/four-meme/four-guard/API-Contract-TaxToken.md +277 -0
- package/skills/four-meme/four-guard/API-CreateToken.02-02-2026.md +285 -0
- package/skills/four-meme/four-guard/API-Documents.03-03-2026.md +789 -0
- package/skills/four-meme/four-guard/AgentIdentifier.abi +585 -0
- package/skills/four-meme/four-guard/README.md +21 -0
- package/skills/four-meme/four-guard/SKILL.md +31 -0
- package/skills/four-meme/four-guard/TaxToken.abi +969 -0
- package/skills/four-meme/four-guard/TokenIdentifierSample.js_ +81 -0
- package/skills/four-meme/four-guard/TokenIdentifierSample.sol +69 -0
- package/skills/four-meme/four-guard/TokenManager.lite.abi +836 -0
- package/skills/four-meme/four-guard/TokenManager2.lite.abi +2325 -0
- package/skills/four-meme/four-guard/TokenManagerHelper3.abi +999 -0
- package/skills/four-meme/four-guard/go.mod +36 -0
- package/skills/four-meme/four-guard/go.sum +127 -0
- package/skills/four-meme/four-guard/main.go +183 -0
- package/skills/four-meme/four-meme-ai/SKILL.md +31 -0
- package/skills/four-meme/four-meme-ai/references/agent-creator-and-wallets.md +87 -0
- package/skills/four-meme/four-meme-ai/references/api-create-token.md +55 -0
- package/skills/four-meme/four-meme-ai/references/contract-addresses.md +47 -0
- package/skills/four-meme/four-meme-ai/references/create-token-scripts.md +131 -0
- package/skills/four-meme/four-meme-ai/references/errors.md +29 -0
- package/skills/four-meme/four-meme-ai/references/event-listening.md +75 -0
- package/skills/four-meme/four-meme-ai/references/execute-trade.md +31 -0
- package/skills/four-meme/four-meme-ai/references/tax-token-query.md +38 -0
- package/skills/four-meme/four-meme-ai/references/token-query-api.md +44 -0
- package/skills/four-meme/four-meme-ai/references/token-tax-info.md +77 -0
- package/skills/four-meme/four-meme-ai/scripts/8004-balance.ts +52 -0
- package/skills/four-meme/four-meme-ai/scripts/8004-register.ts +108 -0
- package/skills/four-meme/four-meme-ai/scripts/create-token-api.ts +321 -0
- package/skills/four-meme/four-meme-ai/scripts/create-token-chain.ts +102 -0
- package/skills/four-meme/four-meme-ai/scripts/create-token-instant.ts +106 -0
- package/skills/four-meme/four-meme-ai/scripts/execute-buy.ts +198 -0
- package/skills/four-meme/four-meme-ai/scripts/execute-sell.ts +150 -0
- package/skills/four-meme/four-meme-ai/scripts/get-public-config.ts +25 -0
- package/skills/four-meme/four-meme-ai/scripts/get-recent-events.ts +76 -0
- package/skills/four-meme/four-meme-ai/scripts/get-tax-token-info.ts +69 -0
- package/skills/four-meme/four-meme-ai/scripts/get-token-info.ts +94 -0
- package/skills/four-meme/four-meme-ai/scripts/quote-buy.ts +85 -0
- package/skills/four-meme/four-meme-ai/scripts/quote-sell.ts +66 -0
- package/skills/four-meme/four-meme-ai/scripts/send-token.ts +98 -0
- package/skills/four-meme/four-meme-ai/scripts/token-get.ts +31 -0
- package/skills/four-meme/four-meme-ai/scripts/token-list.ts +134 -0
- package/skills/four-meme/four-meme-ai/scripts/token-rankings.ts +162 -0
- package/skills/four-meme/four-meme-ai/scripts/verify-events.ts +47 -0
- package/skills/four-meme/four-meme-integration/SKILL.md +374 -0
- package/skills/four-meme/four-meme-integration/references/agent-creator-and-wallets.md +87 -0
- package/skills/four-meme/four-meme-integration/references/api-create-token.md +55 -0
- package/skills/four-meme/four-meme-integration/references/contract-addresses.md +47 -0
- package/skills/four-meme/four-meme-integration/references/create-token-scripts.md +131 -0
- package/skills/four-meme/four-meme-integration/references/errors.md +29 -0
- package/skills/four-meme/four-meme-integration/references/event-listening.md +75 -0
- package/skills/four-meme/four-meme-integration/references/execute-trade.md +31 -0
- package/skills/four-meme/four-meme-integration/references/tax-token-query.md +38 -0
- package/skills/four-meme/four-meme-integration/references/token-query-api.md +44 -0
- package/skills/four-meme/four-meme-integration/references/token-tax-info.md +77 -0
- package/skills/four-meme/four-meme-integration/scripts/8004-balance.ts +52 -0
- package/skills/four-meme/four-meme-integration/scripts/8004-register.ts +108 -0
- package/skills/four-meme/four-meme-integration/scripts/create-token-api.ts +321 -0
- package/skills/four-meme/four-meme-integration/scripts/create-token-chain.ts +102 -0
- package/skills/four-meme/four-meme-integration/scripts/create-token-instant.ts +106 -0
- package/skills/four-meme/four-meme-integration/scripts/execute-buy.ts +198 -0
- package/skills/four-meme/four-meme-integration/scripts/execute-sell.ts +150 -0
- package/skills/four-meme/four-meme-integration/scripts/get-public-config.ts +25 -0
- package/skills/four-meme/four-meme-integration/scripts/get-recent-events.ts +76 -0
- package/skills/four-meme/four-meme-integration/scripts/get-tax-token-info.ts +69 -0
- package/skills/four-meme/four-meme-integration/scripts/get-token-info.ts +94 -0
- package/skills/four-meme/four-meme-integration/scripts/quote-buy.ts +85 -0
- package/skills/four-meme/four-meme-integration/scripts/quote-sell.ts +66 -0
- package/skills/four-meme/four-meme-integration/scripts/send-token.ts +98 -0
- package/skills/four-meme/four-meme-integration/scripts/token-get.ts +31 -0
- package/skills/four-meme/four-meme-integration/scripts/token-list.ts +134 -0
- package/skills/four-meme/four-meme-integration/scripts/token-rankings.ts +162 -0
- package/skills/four-meme/four-meme-integration/scripts/verify-events.ts +47 -0
- package/skills/skillpp/contract-profiler/SKILL.md +118 -0
- package/skills/skillpp/newbie-tutor/SKILL.md +85 -0
- package/skills/skillpp/opportunity-board/SKILL.md +87 -0
- package/skills/skillpp/risk-fusion/SKILL.md +146 -0
- package/skills/skillpp/scam-pattern-lab/SKILL.md +115 -0
- package/skills/skillpp/wallet-doctor/SKILL.md +119 -0
- package/skills/skillpp/watchtower/SKILL.md +72 -0
- package/tests/compatibility/v0.1.0.json +117 -0
package/COMPATIBILITY.md
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
# Skill++ Compatibility Contract
|
|
2
|
+
|
|
3
|
+
Skill++ treats routing, schemas, checkpoints, and CLI commands as a public protocol. New skills can be added, but existing v0.1 behavior must remain available unless the package opens a new compatibility baseline.
|
|
4
|
+
|
|
5
|
+
## Public Contract
|
|
6
|
+
|
|
7
|
+
The following surfaces are stable within the v0.1 line:
|
|
8
|
+
|
|
9
|
+
- npm package name: `skillpp`
|
|
10
|
+
- CLI command: `skillpp`
|
|
11
|
+
- AI entry point: `SKILL.md`
|
|
12
|
+
- machine registry: `skillpp.manifest.json`
|
|
13
|
+
- schema files: `handoff`, `token`, `audit`, and `checkpoint`
|
|
14
|
+
- pipeline IDs beginning with `P_`
|
|
15
|
+
- checkpoint IDs and blocking semantics
|
|
16
|
+
- command routes for `analyze`, `scan`, `trade`, `audit`, `wallet`, `signals`, and `create`
|
|
17
|
+
- default private-path redaction in `skillpp doctor`
|
|
18
|
+
|
|
19
|
+
## Update Rules
|
|
20
|
+
|
|
21
|
+
Use additive changes for v0.1:
|
|
22
|
+
|
|
23
|
+
- Add a new skill without renaming or removing existing skill names.
|
|
24
|
+
- Add a new pipeline without changing existing pipeline IDs.
|
|
25
|
+
- Add fields to schemas without removing required fields.
|
|
26
|
+
- Add optional commands without changing existing command meanings.
|
|
27
|
+
- Add richer adapters and prompts while keeping `SKILL.md` as the primary AI entry.
|
|
28
|
+
|
|
29
|
+
Treat these as breaking changes:
|
|
30
|
+
|
|
31
|
+
- Removing or renaming an existing skill, pipeline ID, checkpoint ID, schema file, or CLI command.
|
|
32
|
+
- Reordering a pipeline in a way that changes the required v0.1 sequence.
|
|
33
|
+
- Changing a blocking checkpoint into a non-blocking checkpoint.
|
|
34
|
+
- Exposing absolute local paths in default `skillpp doctor` output.
|
|
35
|
+
- Making write operations run without explicit checkpoint confirmation.
|
|
36
|
+
|
|
37
|
+
Breaking changes require a new compatibility baseline. After Skill++ reaches `1.0.0`, breaking protocol changes also require a new major package version.
|
|
38
|
+
|
|
39
|
+
## Compatibility Tests
|
|
40
|
+
|
|
41
|
+
The v0.1 baseline is stored in `tests/compatibility/v0.1.0.json`.
|
|
42
|
+
|
|
43
|
+
Run:
|
|
44
|
+
|
|
45
|
+
```bash
|
|
46
|
+
npm run compatibility
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
The check verifies that:
|
|
50
|
+
|
|
51
|
+
- all required v0.1 skills still exist
|
|
52
|
+
- all required v0.1 pipeline IDs still exist
|
|
53
|
+
- existing pipeline sequences remain in order
|
|
54
|
+
- blocking checkpoint behavior remains blocking
|
|
55
|
+
- CLI commands still route to the same pipeline IDs
|
|
56
|
+
- package metadata still exposes the same npm command and core files
|
|
57
|
+
|
|
58
|
+
The baseline is intentionally separate from implementation details. It allows Skill++ to keep growing while protecting the protocol users already rely on.
|
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Skill++
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,307 @@
|
|
|
1
|
+
# Skill++
|
|
2
|
+
|
|
3
|
+
**A multi-agent skill orchestration protocol for on-chain intelligence.**
|
|
4
|
+
|
|
5
|
+

|
|
6
|
+
|
|
7
|
+
Skill++ turns isolated AI skills into coordinated workflows for token research, wallet review, smart-contract audit, smart-money tracking, chain scanning, and guarded write-operation handoff.
|
|
8
|
+
|
|
9
|
+
[简体中文](README.zh-CN.md) | [Website](https://skillpp.ai) | [X](https://x.com/SkillppAI) | [GitHub](https://github.com/skillpp/skillpp)
|
|
10
|
+
|
|
11
|
+

|
|
12
|
+

|
|
13
|
+

|
|
14
|
+

|
|
15
|
+

|
|
16
|
+

|
|
17
|
+

|
|
18
|
+

|
|
19
|
+

|
|
20
|
+

|
|
21
|
+

|
|
22
|
+

|
|
23
|
+
|
|
24
|
+
## Overview
|
|
25
|
+
|
|
26
|
+
Current status: v0.1 public npm release.
|
|
27
|
+
|
|
28
|
+
AI skills are useful on their own, but production-grade on-chain analysis needs routing, sequencing, cross-checking, safety gates, and structured handoff. Skill++ provides that coordination layer.
|
|
29
|
+
|
|
30
|
+
Skill++ is a protocol-first AI skill package. Some skills run local read-only CLIs; some call public read-only APIs; others emit structured handoff for agent-side execution. It is not a wallet, exchange, or Four.meme SDK, and it must not report a write operation as complete unless the required external tool actually ran.
|
|
31
|
+
|
|
32
|
+
| Layer | What Skill++ Provides |
|
|
33
|
+
|---|---|
|
|
34
|
+
| Router | Parses URLs, addresses, symbols, source snippets, wallets, and natural-language intents |
|
|
35
|
+
| Pipeline Protocol | Maps requests to 7 stable pipeline IDs |
|
|
36
|
+
| Skill Registry | Registers 25 skills across Binance Web3, Binance Exchange, Four.meme, audit-plus, and Skill++ modules |
|
|
37
|
+
| Handoff | Emits structured JSON so downstream skills can continue without losing context |
|
|
38
|
+
| Risk Fusion | Cross-checks quick audit, deep audit, market data, smart-money signals, and wallet exposure |
|
|
39
|
+
| Safety | Blocks sensitive actions behind checkpoints and explicit user confirmation |
|
|
40
|
+
| Agent Adapters | Provides loading guidance for BinanceAI, Claude, GPT, Gemini, Kimi, Mimo, OpenClaw, and Codex |
|
|
41
|
+
|
|
42
|
+
Skill++ is designed for both expert agents and users who do not know Web3 terminology. The agent can explain risk in plain language while still preserving machine-readable execution state.
|
|
43
|
+
|
|
44
|
+
## Install
|
|
45
|
+
|
|
46
|
+
Install from npm:
|
|
47
|
+
|
|
48
|
+
```bash
|
|
49
|
+
npm install -g skillpp
|
|
50
|
+
skillpp doctor
|
|
51
|
+
skillpp skills
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
GitHub source install:
|
|
55
|
+
|
|
56
|
+
```bash
|
|
57
|
+
npm install -g github:skillpp/skillpp
|
|
58
|
+
skillpp doctor
|
|
59
|
+
skillpp skills
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
Local repository use:
|
|
63
|
+
|
|
64
|
+
```bash
|
|
65
|
+
git clone https://github.com/skillpp/skillpp.git
|
|
66
|
+
cd skillpp
|
|
67
|
+
npm install -g .
|
|
68
|
+
skillpp doctor
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
## Use With AI Agents
|
|
72
|
+
|
|
73
|
+
Skill++ is a skill package, not only a CLI. After installation or cloning, point the AI agent at the package root and ask it to read `SKILL.md` first. If an agent only reads this README, it has seen the product overview but has not loaded the Skill++ protocol.
|
|
74
|
+
|
|
75
|
+
Minimum loading prompt:
|
|
76
|
+
|
|
77
|
+
```text
|
|
78
|
+
Use Skill++ from this repository. Read SKILL.md first, then skillpp.manifest.json and the matching adapter under adapters/ for your runtime. Use scripts/skillpp.mjs --dry-run when deterministic routing is available.
|
|
79
|
+
```
|
|
80
|
+
|
|
81
|
+
The npm package includes `SKILL.md`, `skillpp.manifest.json`, `schemas/`, `adapters/`, `prompts/`, `skills/`, and the `skillpp` CLI, so compatible agents can learn the protocol directly from the installed package or the GitHub repository.
|
|
82
|
+
|
|
83
|
+
## Quick Start
|
|
84
|
+
|
|
85
|
+
```bash
|
|
86
|
+
# Token analysis: metadata -> quick audit -> smart-money signal -> risk fusion
|
|
87
|
+
skillpp analyze "0x55d398326f99059ff775485246999027b3197955" --dry-run
|
|
88
|
+
|
|
89
|
+
# Chain scan: launchpad signals -> market rankings -> risk filtering -> opportunity board
|
|
90
|
+
skillpp scan 56 --dry-run
|
|
91
|
+
|
|
92
|
+
# Pre-trade safety check: audit -> risk fusion -> confirmation checkpoint
|
|
93
|
+
skillpp trade "0x55d398326f99059ff775485246999027b3197955" --dry-run
|
|
94
|
+
|
|
95
|
+
# Four.meme creation flow: safety notice -> creation checkpoint
|
|
96
|
+
skillpp create "create a meme token on four.meme" --dry-run
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
Minimal expected output shape:
|
|
100
|
+
|
|
101
|
+
```text
|
|
102
|
+
$ skillpp parse "0x55d398326f99059ff775485246999027b3197955"
|
|
103
|
+
{
|
|
104
|
+
"command": "parse",
|
|
105
|
+
"parsed": {
|
|
106
|
+
"type": "address",
|
|
107
|
+
"contractAddress": "0x55d398326f99059ff775485246999027b3197955"
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
$ skillpp analyze "0x55d398326f99059ff775485246999027b3197955" --dry-run
|
|
112
|
+
Pipeline: P_TOKEN_ANALYSIS
|
|
113
|
+
Steps: query-token-info -> query-token-audit -> trading-signal -> risk-fusion
|
|
114
|
+
Checkpoint: AUDIT_RESULT
|
|
115
|
+
Handoff: { "_meta": { "pipeline": "P_TOKEN_ANALYSIS" }, "results": { ... } }
|
|
116
|
+
```
|
|
117
|
+
|
|
118
|
+
## Privacy-Safe Doctor
|
|
119
|
+
|
|
120
|
+
`skillpp doctor` is safe to paste into public issues by default. It reports package health without exposing absolute local paths.
|
|
121
|
+
|
|
122
|
+
```bash
|
|
123
|
+
skillpp doctor
|
|
124
|
+
```
|
|
125
|
+
|
|
126
|
+
Default output redacts local paths:
|
|
127
|
+
|
|
128
|
+
```json
|
|
129
|
+
{
|
|
130
|
+
"command": "doctor",
|
|
131
|
+
"packageRoot": "<redacted>",
|
|
132
|
+
"checks": {
|
|
133
|
+
"skillsDir": { "path": "skills", "exists": true }
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
```
|
|
137
|
+
|
|
138
|
+
Use absolute paths only in a private local session:
|
|
139
|
+
|
|
140
|
+
```bash
|
|
141
|
+
skillpp doctor --show-paths
|
|
142
|
+
```
|
|
143
|
+
|
|
144
|
+
Do not paste `--show-paths` output into public GitHub issues, chat logs, or bug reports.
|
|
145
|
+
|
|
146
|
+
## Naming
|
|
147
|
+
|
|
148
|
+
The formal name is **Skill Plus Plus (Skill++)**.
|
|
149
|
+
|
|
150
|
+
| Name | Use |
|
|
151
|
+
|---|---|
|
|
152
|
+
| Skill++ | Product name and documentation name |
|
|
153
|
+
| Skill Plus Plus | Plain-English full name |
|
|
154
|
+
| `skillpp` | npm package name and CLI command |
|
|
155
|
+
| `skillpp/` | Recommended repository or local folder name |
|
|
156
|
+
|
|
157
|
+
## Architecture
|
|
158
|
+
|
|
159
|
+
```text
|
|
160
|
+
User input
|
|
161
|
+
URL / address / symbol / source code / wallet / natural language
|
|
162
|
+
|
|
|
163
|
+
v
|
|
164
|
+
Skill++ scheduler
|
|
165
|
+
1. Parse input type, chain, and address
|
|
166
|
+
2. Check tools and dependencies
|
|
167
|
+
3. Match a stable pipeline ID
|
|
168
|
+
4. Run CLI, API, or text-based AI skills
|
|
169
|
+
5. Trigger safety checkpoints
|
|
170
|
+
6. Emit handoff JSON
|
|
171
|
+
7. Recommend next routes
|
|
172
|
+
|
|
|
173
|
+
v
|
|
174
|
+
25 coordinated skills
|
|
175
|
+
Binance Web3 / Binance Exchange / Four.meme / audit-plus / Skill++ Library
|
|
176
|
+
```
|
|
177
|
+
|
|
178
|
+
## Pipelines
|
|
179
|
+
|
|
180
|
+
| ID | Purpose | Sequence |
|
|
181
|
+
|---|---|---|
|
|
182
|
+
| `P_TOKEN_ANALYSIS` | Token analysis | token info -> token audit -> smart-money signal -> risk fusion |
|
|
183
|
+
| `P_CHAIN_SCAN` | Chain opportunity scan | meme rush -> market rank -> risk fusion -> opportunity board |
|
|
184
|
+
| `P_TRADE_SAFETY` | Pre-trade safety | token audit -> audit-plus -> risk fusion |
|
|
185
|
+
| `P_WALLET_XRAY` | Wallet analysis | wallet positions -> per-token risk -> wallet-doctor |
|
|
186
|
+
| `P_SMART_MONEY` | Smart-money tracking | trading signal -> token risk -> risk fusion |
|
|
187
|
+
| `P_FOURMEME_CREATE` | Four.meme creation | integration flow -> safety checkpoint |
|
|
188
|
+
| `P_DEEP_AUDIT` | Deep contract audit | token info -> token audit -> contract-profiler -> audit-plus -> risk fusion |
|
|
189
|
+
|
|
190
|
+
Pipeline IDs are stable protocol identifiers. Skill++ does not rely on drifting numbered pipeline labels.
|
|
191
|
+
|
|
192
|
+
## Skill Inventory
|
|
193
|
+
|
|
194
|
+
| Group | Skills |
|
|
195
|
+
|---|---|
|
|
196
|
+
| Binance Web3 | `query-token-info`, `query-token-audit`, `query-address-info`, `trading-signal`, `crypto-market-rank`, `meme-rush`, `binance-agentic-wallet`, `binance-tokenized-securities-info` |
|
|
197
|
+
| Binance Exchange and Payments | `binance`, `fiat`, `p2p`, `payment`, `square-post`, `onchain-pay` |
|
|
198
|
+
| Four.meme | `four-meme-integration`, `four-meme-ai`, `four-guard` |
|
|
199
|
+
| Audit Core | `audit-plus` |
|
|
200
|
+
| Skill++ Library | `contract-profiler`, `risk-fusion`, `wallet-doctor`, `newbie-tutor`, `watchtower`, `opportunity-board`, `scam-pattern-lab` |
|
|
201
|
+
|
|
202
|
+
## Compatibility
|
|
203
|
+
|
|
204
|
+
Skill++ treats pipeline IDs, command routes, schemas, checkpoints, and default safety behavior as a public protocol. The v0.1 compatibility contract is documented in [COMPATIBILITY.md](COMPATIBILITY.md) and enforced by CI.
|
|
205
|
+
|
|
206
|
+
For v0.1 updates, add new skills, fields, prompts, adapters, or pipelines without renaming or removing existing public identifiers. Breaking changes require a new compatibility baseline; after `1.0.0`, they also require a new major version.
|
|
207
|
+
|
|
208
|
+
## Skill++ Library Modules
|
|
209
|
+
|
|
210
|
+
| Module | Role |
|
|
211
|
+
|---|---|
|
|
212
|
+
| `contract-profiler` | Profiles contract structure before deep audit |
|
|
213
|
+
| `risk-fusion` | Combines token audit, audit-plus, market, smart-money, wallet, and social signals |
|
|
214
|
+
| `wallet-doctor` | Diagnoses wallet portfolio health and exposure |
|
|
215
|
+
| `newbie-tutor` | Explains on-chain and audit terms using current context only |
|
|
216
|
+
| `watchtower` | Designs monitoring rules for addresses, contracts, and events |
|
|
217
|
+
| `opportunity-board` | Aggregates scan, ranking, smart-money, and risk-filtered candidates |
|
|
218
|
+
| `scam-pattern-lab` | Maps audit evidence to known on-chain scam patterns |
|
|
219
|
+
|
|
220
|
+
## AI Agent Compatibility
|
|
221
|
+
|
|
222
|
+
Skill++ uses `SKILL.md` as the primary AI entry point. Adapters and prompts are included for agent-specific loading.
|
|
223
|
+
|
|
224
|
+
| AI / Agent | Loading Path |
|
|
225
|
+
|---|---|
|
|
226
|
+
| BinanceAI | Read `SKILL.md`, then use `adapters/binance-ai.md` |
|
|
227
|
+
| Claude / Claude Code / Claude Opus | Read `SKILL.md`, then use `adapters/claude.md` |
|
|
228
|
+
| GPT / ChatGPT / Custom GPT | Use `adapters/gpt.md` or `prompts/universal-system-prompt.md` |
|
|
229
|
+
| Gemini | Use `adapters/gemini.md` |
|
|
230
|
+
| Kimi | Use `adapters/kimi.md` |
|
|
231
|
+
| Mimo | Use `adapters/mimo.md` |
|
|
232
|
+
| OpenClaw | Use `adapters/openclaw.md` |
|
|
233
|
+
| Codex | Read `SKILL.md`; run `scripts/skillpp.mjs` for deterministic routing |
|
|
234
|
+
|
|
235
|
+
## Write-Operation Boundary
|
|
236
|
+
|
|
237
|
+
The `skillpp` package includes the scheduler, protocol files, schemas, adapters, prompts, and bundled read-only helper scripts. It does not silently install wallet, exchange, or Four.meme write-operation tools.
|
|
238
|
+
|
|
239
|
+
Write-operation flows are checkpointed handoffs unless the user installs and explicitly invokes the matching external CLI.
|
|
240
|
+
|
|
241
|
+
Install external write-operation CLIs only when needed:
|
|
242
|
+
|
|
243
|
+
```bash
|
|
244
|
+
npm i -g @binance/agentic-wallet
|
|
245
|
+
npm i -g @binance/binance-cli
|
|
246
|
+
npm i -g @four-meme/four-meme-ai@latest
|
|
247
|
+
```
|
|
248
|
+
|
|
249
|
+
These provide `baw`, `binance-cli`, and `fourmeme`.
|
|
250
|
+
|
|
251
|
+
Without these tools, Skill++ can still parse, route, run read-only checks, audit, fuse risk signals, and emit checkpoints. It must not claim that a write operation succeeded when the required external CLI is unavailable.
|
|
252
|
+
|
|
253
|
+
## Safety Model
|
|
254
|
+
|
|
255
|
+
Skill++ can execute read-only Node CLIs for token lookup, rankings, smart-money data, and wallet positions. It does not silently execute operations involving:
|
|
256
|
+
|
|
257
|
+
- private keys, API keys, login state, transfers, swaps, orders, publishing, or posting
|
|
258
|
+
- high risk, conflicting results, or insufficient evidence
|
|
259
|
+
- any action where the user carries funds or identity risk
|
|
260
|
+
|
|
261
|
+
Sensitive actions produce structured checkpoints and require explicit user confirmation. Blocking checkpoints exit with code `10` in `scripts/skillpp.mjs`.
|
|
262
|
+
|
|
263
|
+
Skill++ output is for research and risk review only. It is not financial advice.
|
|
264
|
+
|
|
265
|
+
## Repository Layout
|
|
266
|
+
|
|
267
|
+
```text
|
|
268
|
+
skillpp/
|
|
269
|
+
├── README.md
|
|
270
|
+
├── README.zh-CN.md
|
|
271
|
+
├── COMPATIBILITY.md
|
|
272
|
+
├── package.json
|
|
273
|
+
├── SKILL.md
|
|
274
|
+
├── registry.md
|
|
275
|
+
├── pipelines.md
|
|
276
|
+
├── rules.md
|
|
277
|
+
├── skillpp.manifest.json
|
|
278
|
+
├── schemas/
|
|
279
|
+
├── scripts/
|
|
280
|
+
├── adapters/
|
|
281
|
+
├── prompts/
|
|
282
|
+
├── assets/
|
|
283
|
+
├── tests/
|
|
284
|
+
└── skills/
|
|
285
|
+
├── binance-web3/
|
|
286
|
+
├── binance/
|
|
287
|
+
├── four-meme/
|
|
288
|
+
├── audit-plus/
|
|
289
|
+
└── skillpp/
|
|
290
|
+
```
|
|
291
|
+
|
|
292
|
+
Skill paths use `skills/<group>/<skill-name>/`.
|
|
293
|
+
|
|
294
|
+
## Release Checks
|
|
295
|
+
|
|
296
|
+
```bash
|
|
297
|
+
npm test
|
|
298
|
+
npm run validate
|
|
299
|
+
npm run compatibility
|
|
300
|
+
npm pack --dry-run
|
|
301
|
+
```
|
|
302
|
+
|
|
303
|
+
GitHub Actions runs the same checks on push, pull request, and manual dispatch.
|
|
304
|
+
|
|
305
|
+
## License
|
|
306
|
+
|
|
307
|
+
[MIT](LICENSE)
|
package/README.zh-CN.md
ADDED
|
@@ -0,0 +1,307 @@
|
|
|
1
|
+
# Skill++
|
|
2
|
+
|
|
3
|
+
**面向链上情报的多智能体 Skill 调度协议。**
|
|
4
|
+
|
|
5
|
+

|
|
6
|
+
|
|
7
|
+
Skill++ 把孤立的 AI skills 组织成可调度的工作流,用于代币研究、钱包体检、合约审计、聪明钱追踪、扫链分析和带安全检查点的写操作交接。
|
|
8
|
+
|
|
9
|
+
[English](README.md) | [官网](https://skillpp.ai) | [X](https://x.com/SkillppAI) | [GitHub](https://github.com/skillpp/skillpp)
|
|
10
|
+
|
|
11
|
+

|
|
12
|
+

|
|
13
|
+

|
|
14
|
+

|
|
15
|
+

|
|
16
|
+

|
|
17
|
+

|
|
18
|
+

|
|
19
|
+

|
|
20
|
+

|
|
21
|
+

|
|
22
|
+

|
|
23
|
+
|
|
24
|
+
## 概览
|
|
25
|
+
|
|
26
|
+
当前状态:v0.1 公开 npm 发布版。
|
|
27
|
+
|
|
28
|
+
单个 AI skill 可以解决局部问题,但真正的链上分析需要路由、排序、交叉验证、安全闸门和结构化交接。Skill++ 提供这层调度协议。
|
|
29
|
+
|
|
30
|
+
Skill++ 是协议优先的 AI skill 包。部分 skill 会运行本地只读 CLI,部分会调用公开只读 API,另一些会输出结构化 handoff 交给智能体继续执行。它不是钱包、交易所或 Four.meme SDK;除非所需外部工具真实执行成功,否则不能声称写操作已完成。
|
|
31
|
+
|
|
32
|
+
| 层级 | Skill++ 提供什么 |
|
|
33
|
+
|---|---|
|
|
34
|
+
| Router | 解析链接、地址、符号、源码片段、钱包和自然语言意图 |
|
|
35
|
+
| Pipeline Protocol | 把请求映射到 7 条稳定流水线 ID |
|
|
36
|
+
| Skill Registry | 注册 Binance Web3、Binance Exchange、Four.meme、audit-plus 和 Skill++ 模块共 25 个 skill |
|
|
37
|
+
| Handoff | 输出结构化 JSON,让下游 skill 不丢上下文 |
|
|
38
|
+
| Risk Fusion | 交叉验证快速审计、深度审计、市场数据、聪明钱信号和钱包风险 |
|
|
39
|
+
| Safety | 对敏感动作强制检查点和用户确认 |
|
|
40
|
+
| Agent Adapters | 适配 BinanceAI、Claude、GPT、Gemini、Kimi、Mimo、OpenClaw 和 Codex |
|
|
41
|
+
|
|
42
|
+
Skill++ 同时面向专业智能体和不熟悉 Web3 的用户。它可以用人话解释风险,也保留机器可读的执行状态。
|
|
43
|
+
|
|
44
|
+
## 安装
|
|
45
|
+
|
|
46
|
+
npm 安装:
|
|
47
|
+
|
|
48
|
+
```bash
|
|
49
|
+
npm install -g skillpp
|
|
50
|
+
skillpp doctor
|
|
51
|
+
skillpp skills
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
GitHub 源码安装:
|
|
55
|
+
|
|
56
|
+
```bash
|
|
57
|
+
npm install -g github:skillpp/skillpp
|
|
58
|
+
skillpp doctor
|
|
59
|
+
skillpp skills
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
本地仓库使用:
|
|
63
|
+
|
|
64
|
+
```bash
|
|
65
|
+
git clone https://github.com/skillpp/skillpp.git
|
|
66
|
+
cd skillpp
|
|
67
|
+
npm install -g .
|
|
68
|
+
skillpp doctor
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
## 给 AI 智能体使用
|
|
72
|
+
|
|
73
|
+
Skill++ 不只是 CLI,也是一个 skill 包。安装或克隆后,把包根目录交给 AI 智能体,并要求它先读取 `SKILL.md`。如果智能体只读 README,它只看到了项目概览,还没有真正加载 Skill++ 协议。
|
|
74
|
+
|
|
75
|
+
最小加载提示词:
|
|
76
|
+
|
|
77
|
+
```text
|
|
78
|
+
Use Skill++ from this repository. Read SKILL.md first, then skillpp.manifest.json and the matching adapter under adapters/ for your runtime. Use scripts/skillpp.mjs --dry-run when deterministic routing is available.
|
|
79
|
+
```
|
|
80
|
+
|
|
81
|
+
npm 包会包含 `SKILL.md`、`skillpp.manifest.json`、`schemas/`、`adapters/`、`prompts/`、`skills/` 和 `skillpp` CLI,因此兼容的智能体可以直接从已安装包或 GitHub 仓库学习协议。
|
|
82
|
+
|
|
83
|
+
## 快速开始
|
|
84
|
+
|
|
85
|
+
```bash
|
|
86
|
+
# 代币分析:基础信息 -> 快速审计 -> 聪明钱信号 -> 风险融合
|
|
87
|
+
skillpp analyze "0x55d398326f99059ff775485246999027b3197955" --dry-run
|
|
88
|
+
|
|
89
|
+
# 扫链:发射台信号 -> 市场榜单 -> 风险过滤 -> 机会看板
|
|
90
|
+
skillpp scan 56 --dry-run
|
|
91
|
+
|
|
92
|
+
# 交易前安全检查:审计 -> 风险融合 -> 确认检查点
|
|
93
|
+
skillpp trade "0x55d398326f99059ff775485246999027b3197955" --dry-run
|
|
94
|
+
|
|
95
|
+
# Four.meme 创建流程:安全提示 -> 创建检查点
|
|
96
|
+
skillpp create "create a meme token on four.meme" --dry-run
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
最小输出形态:
|
|
100
|
+
|
|
101
|
+
```text
|
|
102
|
+
$ skillpp parse "0x55d398326f99059ff775485246999027b3197955"
|
|
103
|
+
{
|
|
104
|
+
"command": "parse",
|
|
105
|
+
"parsed": {
|
|
106
|
+
"type": "address",
|
|
107
|
+
"contractAddress": "0x55d398326f99059ff775485246999027b3197955"
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
$ skillpp analyze "0x55d398326f99059ff775485246999027b3197955" --dry-run
|
|
112
|
+
Pipeline: P_TOKEN_ANALYSIS
|
|
113
|
+
Steps: query-token-info -> query-token-audit -> trading-signal -> risk-fusion
|
|
114
|
+
Checkpoint: AUDIT_RESULT
|
|
115
|
+
Handoff: { "_meta": { "pipeline": "P_TOKEN_ANALYSIS" }, "results": { ... } }
|
|
116
|
+
```
|
|
117
|
+
|
|
118
|
+
## 隐私安全自检
|
|
119
|
+
|
|
120
|
+
`skillpp doctor` 默认可以安全粘贴到公开 issue。它会报告包健康状态,但不会暴露本机绝对路径。
|
|
121
|
+
|
|
122
|
+
```bash
|
|
123
|
+
skillpp doctor
|
|
124
|
+
```
|
|
125
|
+
|
|
126
|
+
默认输出会隐藏本机路径:
|
|
127
|
+
|
|
128
|
+
```json
|
|
129
|
+
{
|
|
130
|
+
"command": "doctor",
|
|
131
|
+
"packageRoot": "<redacted>",
|
|
132
|
+
"checks": {
|
|
133
|
+
"skillsDir": { "path": "skills", "exists": true }
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
```
|
|
137
|
+
|
|
138
|
+
只有在本地私有会话中才使用:
|
|
139
|
+
|
|
140
|
+
```bash
|
|
141
|
+
skillpp doctor --show-paths
|
|
142
|
+
```
|
|
143
|
+
|
|
144
|
+
不要把 `--show-paths` 输出粘贴到公开 GitHub issue、聊天记录或问题报告。
|
|
145
|
+
|
|
146
|
+
## 命名
|
|
147
|
+
|
|
148
|
+
正式名称是 **Skill Plus Plus(Skill++)**。
|
|
149
|
+
|
|
150
|
+
| 名称 | 用途 |
|
|
151
|
+
|---|---|
|
|
152
|
+
| Skill++ | 产品名和文档名 |
|
|
153
|
+
| Skill Plus Plus | 不使用符号时的英文全称 |
|
|
154
|
+
| `skillpp` | npm 包名和 CLI 命令 |
|
|
155
|
+
| `skillpp/` | 推荐的仓库名或本地目录名 |
|
|
156
|
+
|
|
157
|
+
## 架构
|
|
158
|
+
|
|
159
|
+
```text
|
|
160
|
+
用户输入
|
|
161
|
+
链接 / 地址 / 符号 / 源码 / 钱包 / 自然语言
|
|
162
|
+
|
|
|
163
|
+
v
|
|
164
|
+
Skill++ 调度器
|
|
165
|
+
1. 解析输入类型、链和地址
|
|
166
|
+
2. 检查工具和依赖
|
|
167
|
+
3. 匹配稳定流水线 ID
|
|
168
|
+
4. 执行 CLI、API 或文本型 AI skill
|
|
169
|
+
5. 触发安全检查点
|
|
170
|
+
6. 输出 handoff JSON
|
|
171
|
+
7. 推荐下一步路由
|
|
172
|
+
|
|
|
173
|
+
v
|
|
174
|
+
25 个 skill 协同工作
|
|
175
|
+
Binance Web3 / Binance Exchange / Four.meme / audit-plus / Skill++ Library
|
|
176
|
+
```
|
|
177
|
+
|
|
178
|
+
## 流水线
|
|
179
|
+
|
|
180
|
+
| ID | 用途 | 顺序 |
|
|
181
|
+
|---|---|---|
|
|
182
|
+
| `P_TOKEN_ANALYSIS` | 代币分析 | token info -> token audit -> smart-money signal -> risk fusion |
|
|
183
|
+
| `P_CHAIN_SCAN` | 扫链找机会 | meme rush -> market rank -> risk fusion -> opportunity board |
|
|
184
|
+
| `P_TRADE_SAFETY` | 交易前安全 | token audit -> audit-plus -> risk fusion |
|
|
185
|
+
| `P_WALLET_XRAY` | 钱包分析 | wallet positions -> per-token risk -> wallet-doctor |
|
|
186
|
+
| `P_SMART_MONEY` | 聪明钱追踪 | trading signal -> token risk -> risk fusion |
|
|
187
|
+
| `P_FOURMEME_CREATE` | Four.meme 创建 | integration flow -> safety checkpoint |
|
|
188
|
+
| `P_DEEP_AUDIT` | 合约深度审计 | token info -> token audit -> contract-profiler -> audit-plus -> risk fusion |
|
|
189
|
+
|
|
190
|
+
流水线 ID 是稳定协议标识,不依赖容易漂移的数字编号。
|
|
191
|
+
|
|
192
|
+
## Skill 清单
|
|
193
|
+
|
|
194
|
+
| 分组 | Skills |
|
|
195
|
+
|---|---|
|
|
196
|
+
| Binance Web3 | `query-token-info`, `query-token-audit`, `query-address-info`, `trading-signal`, `crypto-market-rank`, `meme-rush`, `binance-agentic-wallet`, `binance-tokenized-securities-info` |
|
|
197
|
+
| Binance Exchange and Payments | `binance`, `fiat`, `p2p`, `payment`, `square-post`, `onchain-pay` |
|
|
198
|
+
| Four.meme | `four-meme-integration`, `four-meme-ai`, `four-guard` |
|
|
199
|
+
| Audit Core | `audit-plus` |
|
|
200
|
+
| Skill++ Library | `contract-profiler`, `risk-fusion`, `wallet-doctor`, `newbie-tutor`, `watchtower`, `opportunity-board`, `scam-pattern-lab` |
|
|
201
|
+
|
|
202
|
+
## 兼容性
|
|
203
|
+
|
|
204
|
+
Skill++ 把 pipeline ID、命令路由、schema、checkpoint 和默认安全行为都视为公开协议。v0.1 兼容性合约写在 [COMPATIBILITY.md](COMPATIBILITY.md),并由 CI 自动检查。
|
|
205
|
+
|
|
206
|
+
v0.1 更新应采用增量方式:可以添加新 skill、新字段、新 prompt、新 adapter 或新 pipeline,但不能重命名或删除已有公开标识。破坏性变更需要新的兼容性基线;`1.0.0` 之后还需要新的 major 版本。
|
|
207
|
+
|
|
208
|
+
## Skill++ 库模块
|
|
209
|
+
|
|
210
|
+
| 模块 | 作用 |
|
|
211
|
+
|---|---|
|
|
212
|
+
| `contract-profiler` | 深度审计前提取合约结构 |
|
|
213
|
+
| `risk-fusion` | 融合 token audit、audit-plus、市场、聪明钱、钱包和社交信号 |
|
|
214
|
+
| `wallet-doctor` | 诊断钱包持仓健康度和风险暴露 |
|
|
215
|
+
| `newbie-tutor` | 只基于当前上下文解释链上和审计术语 |
|
|
216
|
+
| `watchtower` | 为地址、合约和事件设计监控规则 |
|
|
217
|
+
| `opportunity-board` | 聚合扫链、榜单、聪明钱和风险过滤候选 |
|
|
218
|
+
| `scam-pattern-lab` | 把审计证据映射到常见链上骗局模式 |
|
|
219
|
+
|
|
220
|
+
## AI 兼容性
|
|
221
|
+
|
|
222
|
+
Skill++ 以 `SKILL.md` 作为主要 AI 入口,并提供不同 agent 的 adapter 和 prompt。
|
|
223
|
+
|
|
224
|
+
| AI / Agent | 加载方式 |
|
|
225
|
+
|---|---|
|
|
226
|
+
| BinanceAI | 读取 `SKILL.md`,再使用 `adapters/binance-ai.md` |
|
|
227
|
+
| Claude / Claude Code / Claude Opus | 读取 `SKILL.md`,再使用 `adapters/claude.md` |
|
|
228
|
+
| GPT / ChatGPT / Custom GPT | 使用 `adapters/gpt.md` 或 `prompts/universal-system-prompt.md` |
|
|
229
|
+
| Gemini | 使用 `adapters/gemini.md` |
|
|
230
|
+
| Kimi | 使用 `adapters/kimi.md` |
|
|
231
|
+
| Mimo | 使用 `adapters/mimo.md` |
|
|
232
|
+
| OpenClaw | 使用 `adapters/openclaw.md` |
|
|
233
|
+
| Codex | 读取 `SKILL.md`;需要确定性路由时运行 `scripts/skillpp.mjs` |
|
|
234
|
+
|
|
235
|
+
## 写操作边界
|
|
236
|
+
|
|
237
|
+
`skillpp` 包包含调度器、协议文件、schemas、adapters、prompts 和随包只读辅助脚本。它不会静默安装钱包、交易所或 Four.meme 写操作工具。
|
|
238
|
+
|
|
239
|
+
写操作流程默认是带检查点的 handoff;只有用户安装并明确调用匹配的外部 CLI 后,才进入真实写操作执行。
|
|
240
|
+
|
|
241
|
+
只有需要写操作时才安装外部 CLI:
|
|
242
|
+
|
|
243
|
+
```bash
|
|
244
|
+
npm i -g @binance/agentic-wallet
|
|
245
|
+
npm i -g @binance/binance-cli
|
|
246
|
+
npm i -g @four-meme/four-meme-ai@latest
|
|
247
|
+
```
|
|
248
|
+
|
|
249
|
+
这些包提供 `baw`、`binance-cli` 和 `fourmeme`。
|
|
250
|
+
|
|
251
|
+
没有这些工具时,Skill++ 仍可解析、路由、执行只读检查、审计、风险融合和检查点输出,但不能声称写操作已经成功。
|
|
252
|
+
|
|
253
|
+
## 安全模型
|
|
254
|
+
|
|
255
|
+
Skill++ 可以直接执行部分只读 Node CLI,例如 token 查询、榜单、聪明钱数据和钱包持仓。它不会静默执行以下操作:
|
|
256
|
+
|
|
257
|
+
- 私钥、API key、登录态、转账、swap、下单、发布或发文
|
|
258
|
+
- 高风险、结果冲突或证据不足
|
|
259
|
+
- 任何需要用户承担资金或身份风险的动作
|
|
260
|
+
|
|
261
|
+
敏感动作会输出结构化检查点,并要求用户明确确认。`scripts/skillpp.mjs` 对 blocking checkpoint 使用 exit code `10`。
|
|
262
|
+
|
|
263
|
+
Skill++ 输出仅用于研究和风险提示,不构成投资建议。
|
|
264
|
+
|
|
265
|
+
## 目录结构
|
|
266
|
+
|
|
267
|
+
```text
|
|
268
|
+
skillpp/
|
|
269
|
+
├── README.md
|
|
270
|
+
├── README.zh-CN.md
|
|
271
|
+
├── COMPATIBILITY.md
|
|
272
|
+
├── package.json
|
|
273
|
+
├── SKILL.md
|
|
274
|
+
├── registry.md
|
|
275
|
+
├── pipelines.md
|
|
276
|
+
├── rules.md
|
|
277
|
+
├── skillpp.manifest.json
|
|
278
|
+
├── schemas/
|
|
279
|
+
├── scripts/
|
|
280
|
+
├── adapters/
|
|
281
|
+
├── prompts/
|
|
282
|
+
├── assets/
|
|
283
|
+
├── tests/
|
|
284
|
+
└── skills/
|
|
285
|
+
├── binance-web3/
|
|
286
|
+
├── binance/
|
|
287
|
+
├── four-meme/
|
|
288
|
+
├── audit-plus/
|
|
289
|
+
└── skillpp/
|
|
290
|
+
```
|
|
291
|
+
|
|
292
|
+
Skill 路径统一使用 `skills/<group>/<skill-name>/`。
|
|
293
|
+
|
|
294
|
+
## 发布检查
|
|
295
|
+
|
|
296
|
+
```bash
|
|
297
|
+
npm test
|
|
298
|
+
npm run validate
|
|
299
|
+
npm run compatibility
|
|
300
|
+
npm pack --dry-run
|
|
301
|
+
```
|
|
302
|
+
|
|
303
|
+
GitHub Actions 会在 push、pull request 和手动触发时运行同样检查。
|
|
304
|
+
|
|
305
|
+
## License
|
|
306
|
+
|
|
307
|
+
[MIT](LICENSE)
|