2 commands for viewing DeFi positions and holdings across protocols and chains.
Works with
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versionokx-defi-portfolioExecute the skills CLI command in your project's root directory to begin installation:
Fetches okx-defi-portfolio from okx/onchainos-skills and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate okx-defi-portfolio. Access via /okx-defi-portfolio in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Create detailed user stories, acceptance criteria, and feature specs
Example
Generate user stories for 'password reset feature' with acceptance criteria, edge cases, and test scenarios
Reduce spec writing time by 50%, ensure comprehensive coverage
Research competitors, compare features, identify gaps
Example
Analyze 5 competitor products, create feature comparison matrix, suggest differentiation opportunities
Complete competitive research in 2 hours instead of 2 days
Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs
Example
Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale
0
total installs
0
this week
188
GitHub stars
0
upvotes
Run in your terminal
0
installs
0
this week
188
stars
2 commands for viewing DeFi positions and holdings across protocols and chains.
okx-defi-investokx-dex-marketokx-wallet-portfoliookx-dex-swap# Get DeFi holdings overview across chains
onchainos defi positions \
--address 0xYourWallet \
--chains ethereum,bsc,solana
# Get detailed holdings for a specific protocol (analysisPlatformId from positions output)
onchainos defi position-detail \
--address 0xYourWallet \
--chain ethereum \
--platform-id 67890
| # | Command | Description |
|---|---|---|
| 1 | onchainos defi support-chains |
Get supported chains for DeFi |
| 2 | onchainos defi support-platforms |
Get supported platforms for DeFi |
| 3 | onchainos defi positions --address <addr> --chains <chains> |
Get user DeFi holdings overview |
| 4 | onchainos defi position-detail --address <addr> --chain <chain> --platform-id <id> |
Get detailed holdings for a protocol |
| Chain | Name / Aliases | chainIndex |
|---|---|---|
| Ethereum | ethereum, eth |
1 |
| BSC | bsc, bnb |
56 |
| Polygon | polygon, matic |
137 |
| Arbitrum | arbitrum, arb |
42161 |
| Base | base |
8453 |
| X Layer | xlayer, okb |
196 |
| Avalanche | avalanche, avax |
43114 |
| Optimism | optimism, op |
10 |
| Fantom | fantom, ftm |
250 |
| Sui | sui |
784 |
| Tron | tron, trx |
195 |
| TON | ton |
607 |
| Linea | linea |
59144 |
| Scroll | scroll |
534352 |
| zkSync | zksync |
324 |
| Solana | solana, sol |
501 |
When the user does NOT provide a wallet address, resolve it automatically from the Agentic Wallet before running any defi command:
1. onchainos wallet status → check if logged in, get active account
2. onchainos wallet addresses → get addresses grouped by chain category:
- XLayer addresses
- EVM addresses (Ethereum, BSC, Polygon, etc.)
- Solana addresses
3. Match address to target chain:
- EVM chains → use EVM address
- Solana → use Solana address
- XLayer → use XLayer address
Rules:
okx-agentic-wallet) or provide an address manuallywallet balance --all to get all account IDs, then wallet switch <id> + wallet addresses for each account, and query positions for each| User says | Action |
|---|---|
| View positions / portfolio / holdings | onchainos defi positions |
| View detail for a protocol | onchainos defi position-detail |
| Redeem / claim after viewing | Suggest → use okx-defi-invest |
defi positions first to get analysisPlatformIdWhen displaying defi positions output, you MUST use exactly these columns in this order — no substitutions, no omissions:
| # | Platform | analysisPlatformId | Chains | Positions | Value(USD) |
|---|---|---|---|---|---|
| 1 | Aave V3 | 12345 | ETH,BSC | 2 | $120.00 |
Rules:
analysisPlatformId is MANDATORY in every row — users must copy this value to run position-detailanalysisPlatformId with any other fieldwalletIdPlatformList[*].platformList[*] — each element is one platform row
platformName → PlatformanalysisPlatformId → analysisPlatformIdnetworkBalanceList[*].network → Chains (join with comma)investmentCount → PositionscurrencyAmount → Value(USD)Output shape: { "ok": true, "data": [ { "walletIdPlatformDetailList": [...] }, ... ] } — data is an array. Never call .get() on data directly; iterate over it as a list.
When displaying defi position-detail output, render all tokens in a single flat table with these exact columns:
| Type | Asset | Amount | Value(USD) | investmentId | aggregateProductId | Token Contract | Rewards |
|---|---|---|---|---|---|---|---|
| Supply | USDT | 1.002285 | $1.0025 | 127 | 71931 | 0x970223...7 | 0.000080 AVAX |
| Pending | sAVAX | 0.00000091 | $0.000012 | – | – | – | Platform reward |
Rules:
investmentId and aggregateProductId from its parent investment entryinvestmentId is MANDATORY in every row — users need it for redeem/claim (via okx-defi-invest)aggregateProductId — show if present, otherwise –– if native/empty– if none; for platform rewards show Platform rewardPendinghealthRate < 1.5| investType | Description |
|---|---|
| 1 | Save (savings/yield) |
| 2 | Pool (liquidity pool) |
| 3 | Farm (yield farming) |
| 4 | Vaults |
| 5 | Stake |
| 6 | Borrow |
| 7 | Staking |
| 8 | Locked |
| 9 | Deposit |
| 10 | Vesting |
| Just completed | Suggest |
|---|---|
defi positions |
1. View detail → defi position-detail 2. Redeem → okx-defi-invest 3. Claim rewards → okx-defi-invest |
defi position-detail |
1. Redeem position → use okx-defi-invest with investmentId from table 2. Claim rewards → use okx-defi-invest 3. Add more → use okx-defi-invest |
--address and --chains parameters must be compatible. EVM addresses (0x…) can only query EVM chains; Solana addresses (base58) can only query solana. Never mix them in a single call — the API will return error 84019 (Address format error).
0x… address → only pass EVM chains: ethereum,bsc,polygon,arbitrum,base,xlayer,avalanche,optimism,fantom,linea,scroll,zksyncsolanasuiT…) → only pass trontondefi positions uses --chains (plural, comma-separated, e.g. --chains ethereum,bsc) — do NOT use --chaindefi position-detail uses --chain (singular) — do NOT use --chains--address for both commandsposition-detail requires analysisPlatformId from positions output as --platform-idethereum → 1, bsc → 56, solana → 501)Make data-driven prioritization decisions faster
Draft PRDs, status updates, and stakeholder presentations
Example
Create executive summary of Q3 roadmap, monthly progress report, feature launch announcement
Save 3-5 hours/week on communication overhead
Prerequisites
Time Estimate
30-60 minutes to see productivity improvements
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use for user story writing, competitive research, roadmap prioritization, stakeholder communication, and PRD drafting. Best for reducing repetitive documentation and research work.
✗ Avoid when
Avoid for strategic product vision (requires deep customer empathy), pricing decisions (needs market and financial expertise), or when face-to-face customer discovery is more valuable than speed.
mattpocock/skills
parcadei/continuous-claude-v3
cursor/plugins
ailabs-393/ai-labs-claude-skills
pproenca/dot-skills
mattpocock/skills
Useful defaults in okx-defi-portfolio — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
I recommend okx-defi-portfolio for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
okx-defi-portfolio fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
okx-defi-portfolio is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
okx-defi-portfolio is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
okx-defi-portfolio fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
okx-defi-portfolio reduced setup friction for our internal harness; good balance of opinion and flexibility.
I recommend okx-defi-portfolio for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
Useful defaults in okx-defi-portfolio — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
Solid pick for teams standardizing on skills: okx-defi-portfolio is focused, and the summary matches what you get after install.
showing 1-10 of 50