/install liberfi-market
LiberFi Market Discovery
Discover trending tokens and newly launched tokens using the LiberFi CLI.
Pre-flight Checks
See bootstrap.md for CLI installation and connectivity verification.
This skill's auth requirements:
- All commands: No authentication required (public API)
Skill Routing
| If user asks about... | Route to |
|---|---|
| Specific token info, price, security, holders | liberfi-token |
| Token K-line, candlestick, price chart | liberfi-token |
| Wallet holdings, balance, PnL | liberfi-portfolio |
| Wallet activity, transaction history | liberfi-portfolio |
| Swap, trade, buy, sell tokens | liberfi-swap |
| Transaction broadcast or fee estimation | liberfi-swap |
CLI Command Index
Query Commands
| Command | Description | Auth |
|---|---|---|
lfi ranking trending \x3Cchain> \x3Cduration> |
Get trending tokens by chain and time window | No |
lfi ranking new \x3Cchain> |
Get newly listed tokens on a chain | No |
Parameter Reference
Trending command:
\x3Cchain>— Required. Chain identifier (e.g.sol,eth,bsc)\x3Cduration>— Required. Time window (e.g.1h,6h,24h)--sort-by \x3Cfield>— Sort field (e.g.volume,price_change,market_cap)--sort-dir \x3Cdir>— Sort direction:ascordesc--filters \x3Cfilters>— Comma-separated filters--launchpad-platform \x3Cplatform>— Filter by launchpad (e.g.pump.fun)--search-keywords \x3Ckeywords>— Comma-separated search keywords--exclude-keywords \x3Ckeywords>— Comma-separated keywords to exclude--cursor \x3Ccursor>— Pagination cursor--limit \x3Climit>— Max results per page--direction \x3Cdirection>— Cursor direction:nextorprev
New tokens command — same options as trending except no \x3Cduration> argument.
Operation Flow
View Trending Tokens
- Determine parameters: Ask user for chain and time window if not specified. Default:
solchain,24hduration - Fetch trending:
lfi ranking trending \x3Cchain> \x3Cduration> --limit 20 --json - Present results: Show a table with Name, Symbol, Price, Change (%), Volume, Market Cap
- Suggest next step: "Want to see details or security audit for any of these tokens?"
View Trending with Filters
- Collect filters: Launchpad platform, sort field, keywords
- Fetch:
lfi ranking trending sol 1h --launchpad-platform "pump.fun" --sort-by volume --sort-dir desc --limit 20 --json - Present: Filtered results in table format
- Suggest next step: "Want to drill into any specific token?"
Discover New Tokens
- Determine chain: Ask user if not specified. Default:
sol - Fetch new tokens:
lfi ranking new \x3Cchain> --limit 20 --json - Present: Show recently listed tokens with name, symbol, price, launch time
- Suggest next step: "Want to check the security audit before investigating further?"
Search Within Rankings
- Collect keywords: What the user is looking for
- Fetch:
lfi ranking trending \x3Cchain> \x3Cduration> --search-keywords "meme,dog" --limit 20 --json - Present: Filtered results matching the keywords
- Suggest next step: "Want to see details for any of these?"
Cross-Skill Workflows
"Show me what's trending, and research the top token"
Full flow: market → token → token → token
- market →
lfi ranking trending sol 24h --sort-by volume --sort-dir desc --limit 10 --json - token →
lfi token info sol \x3CtopTokenAddress> --json— Details on #1 token - token →
lfi token security sol \x3CtopTokenAddress> --json— Security audit - token →
lfi token holders sol \x3CtopTokenAddress> --json— Holder analysis - Present consolidated findings
"Find new pump.fun tokens and check if the hottest one is safe"
Full flow: market → token → token
- market →
lfi ranking new sol --launchpad-platform "pump.fun" --limit 10 --json - Pick the top token by volume
- token →
lfi token security sol \x3Caddress> --json— Security check - token →
lfi token info sol \x3Caddress> --json— Full details - Present safety report
"What are the top gainers on ETH? I want to buy one"
Full flow: market → token → swap
- market →
lfi ranking trending eth 24h --sort-by price_change --sort-dir desc --limit 10 --json - User selects a token
- token →
lfi token security eth \x3Caddress> --json— Mandatory security check - swap →
lfi swap quote --in \x3CinputToken> --out \x3Caddress> --amount \x3Camt> --chain-family evm --chain-id 1 --json - Present quote and wait for user confirmation
Suggest Next Steps
| Just completed | Suggest to user |
|---|---|
| Trending ranking | "Want to see details for any token?" / "需要查看某个代币的详情?" |
| New tokens list | "Want to check the security audit for any of these?" / "需要对其中某个做安全审计?" |
| Filtered ranking | "Want to drill into a specific token?" / "需要深入了解某个代币?" |
Edge Cases
- Invalid chain identifier: If the API returns an error, list supported chains (e.g.
sol,eth,bsc) and ask the user to choose - Invalid duration: Suggest valid durations:
1h,6h,24h - No trending results: Inform user: "No trending tokens found for this chain and time window. Try a different chain or longer duration."
- No new tokens: Inform user: "No newly listed tokens found. The chain may have low launch activity right now."
- Network timeout: Retry once after 3 seconds; if still fails, suggest checking connectivity via
lfi ping --json - Too many results: Default to
--limit 20; if user asks for more, paginate with--cursorand--direction next
Security Notes
See security-policy.md for global security rules.
Skill-specific rules:
- Trending and new token rankings are informational only — a token appearing in rankings does not indicate endorsement or safety
- Always recommend users run a security audit (
lfi token security) before interacting with newly discovered tokens - New tokens from launchpad platforms carry higher risk — proactively mention this when presenting results
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install liberfi-market - 安装完成后,直接呼叫该 Skill 的名称或使用
/liberfi-market触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Liberfi Market 是什么?
Discover trending tokens and newly listed tokens across supported blockchains: view trending token rankings by chain and time window, find newly launched tok... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 143 次。
如何安装 Liberfi Market?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install liberfi-market」即可一键安装,无需额外配置。
Liberfi Market 是免费的吗?
是的,Liberfi Market 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Liberfi Market 支持哪些平台?
Liberfi Market 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Liberfi Market?
由 bombmod(@bombmod)开发并维护,当前版本 v1.0.3。