shll-skills 3.0.0 → 3.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 (2) hide show
  1. package/SKILL.md +23 -3
  2. package/package.json +1 -1
package/SKILL.md CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: shll-run
3
3
  description: Execute DeFi transactions on BSC via SHLL AgentNFA. The AI handles all commands — users only need to chat.
4
- version: 4.1.0
4
+ version: 5.0.0
5
5
  author: SHLL Team
6
6
  website: https://shll.run
7
7
  twitter: https://twitter.com/shllrun
@@ -144,6 +144,9 @@ Examples:
144
144
  - "Swap 0.1 BNB for USDC"
145
145
  - "What's my portfolio?"
146
146
  - "What's the price of CAKE?"
147
+ - "Lend 10 USDT on Venus"
148
+ - "How much am I earning on Venus?"
149
+ - "Redeem my USDT from Venus"
147
150
 
148
151
  ---
149
152
 
@@ -161,12 +164,22 @@ Examples:
161
164
  ### Trading
162
165
  | Command | What it does |
163
166
  |---------|-------------|
164
- | `shll-run swap -f <FROM> -t <TO> -a <AMT> -k <ID>` | Token swap on PancakeSwap |
167
+ | `shll-run swap -f <FROM> -t <TO> -a <AMT> -k <ID>` | Token swap (auto-routes PancakeSwap V2/V3) |
168
+ | `shll-run swap ... --dex v3 --fee 500` | Force V3 with 0.05% fee tier |
165
169
  | `shll-run wrap -a <BNB> -k <ID>` | BNB -> WBNB |
166
170
  | `shll-run unwrap -a <BNB> -k <ID>` | WBNB -> BNB |
167
171
  | `shll-run transfer --token <SYM> -a <AMT> --to <ADDR> -k <ID>` | Send tokens from vault |
168
172
  | `shll-run raw --target <ADDR> --data <HEX> -k <ID>` | Raw calldata |
169
173
 
174
+ ### Lending (Venus Protocol)
175
+ | Command | What it does |
176
+ |---------|-------------|
177
+ | `shll-run lend -t <TOKEN> -a <AMT> -k <ID>` | Supply tokens to Venus to earn yield |
178
+ | `shll-run redeem -t <TOKEN> -a <AMT> -k <ID>` | Withdraw supplied tokens from Venus |
179
+ | `shll-run lending-info -k <ID>` | Show supply balances + APY across Venus markets |
180
+
181
+ Supported lending tokens: **BNB, USDT, USDC, BUSD**
182
+
170
183
  ### Market Data (read-only)
171
184
  | Command | What it does |
172
185
  |---------|-------------|
@@ -185,6 +198,9 @@ Examples:
185
198
 
186
199
  **Supported tokens:** BNB, USDC, USDT, WBNB, CAKE, ETH, BTCB, DAI, BUSD, or any 0x address.
187
200
 
201
+ **Swap routing modes:** `--dex auto` (default: compares V2/V3 quotes), `--dex v2`, `--dex v3`.
202
+ **V3 fee tiers:** `--fee 100` (0.01%), `--fee 500` (0.05%), `--fee 2500` (0.25%, default), `--fee 10000` (1%).
203
+
188
204
  ---
189
205
 
190
206
  ## HOW TO EXPLAIN THINGS TO USERS
@@ -201,7 +217,11 @@ Examples:
201
217
  ### "What are policies?"
202
218
  *"Policies are on-chain safety rules: how much you can spend per transaction, how often you can trade, which DEXs are allowed, etc. You can tighten these rules but never loosen them beyond the template ceiling."*
203
219
 
204
- ---
220
+ ### "What is Venus Protocol?"
221
+ *"Venus is a decentralized lending protocol on BSC. When you 'lend' tokens to Venus, you deposit them into a supply pool and earn interest (APY). Other users borrow from the same pool and pay interest. You can withdraw (redeem) your tokens plus earned interest at any time. Your tokens stay on-chain in Venus smart contracts — SHLL does not hold them."*
222
+
223
+ ### "Is lending safe?"
224
+ *"Venus is one of the most established protocols on BSC with over $1B TVL. However, DeFi lending always carries smart contract risk and market risk. Only lend amounts you're comfortable with. Your agent's DeFiGuard policy ensures only approved lending operations can be executed."*
205
225
 
206
226
  ## OUTPUT FORMAT
207
227
  All commands output JSON:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shll-skills",
3
- "version": "3.0.0",
3
+ "version": "3.1.0",
4
4
  "description": "SHLL Agent Runtime Skill for OpenClaw",
5
5
  "main": "dist/index.js",
6
6
  "bin": {