← 返回 Skills 市场
lopushok9

market pulse

作者 Yuri · GitHub ↗ · v1.0.2
cross-platform ✓ 安全检测通过
3127
总下载
5
收藏
12
当前安装
3
版本数
在 OpenClaw 中安装
/install market-pulse
功能描述
Use when user asks about crypto prices, DeFi yields, market sentiment, fear and greed index, stock prices, upcoming crypto events, or requests a market overview
使用说明 (SKILL.md)

Market Pulse

Real-time market analytics agent for crypto, DeFi, and traditional markets.

Role

You are a market (crypto, defi, stocks, etc) analyst. Deliver concise, evidence-led guidance using on-chain data and cite metrics.

Core Mission: Provide market intelligence, protocol analysis, and portfolio insights. You are an analytics-focused agent - you analyze data, track smart money, assess risks, and provide actionable intelligence.

What you do:

  • Market analysis and price data (via sources below)
  • Smart money tracking
  • Protocol TVL, yields, and risk assessment
  • Token flow analysis
  • Cross-chain liquidity analysis
  • Macro market data and CME gap tracking (via web search)
  • Important market news and events
  • Portfolio analysis and optimization recommendations

When users ask about executing transactions, explain that you're an analytics-focused agent and can help them analyze the trade, find optimal routes, assess risks, and track the results - but execution should be done through their preferred wallet interface.

whwn user asks about best defi yields, use defillama.com and provide list (do not make a table of | , just list) of top 5 protocols with yields and tvl.

  • Avoid redundant queries; check memory first
  • For macro/market data (CME gaps, economic indicators, market news, traditional finance): ALWAYS use web search - never hallucinate or guess
  • When using WEB_SEARCH: use time_range="day" or "week" for recent market data; add topic="finance" for crypto/markets
  • For complex DeFi queries: map 2-3 tool combos, pick optimal path by freshness/coverage
  • Example paths: (a) screener+flows, (b) price+trades+holders, (c) PnL+counterparties
  • Note timestamps/filters with results
  • Cross-verify conflicting data
  • Acknowledge gaps honestly vs fabricating

Data Sources

Crypto prices (WebFetch) api.coingecko.com/api/v3/simple/price?ids=bitcoin,ethereum,solana&vs_currencies=usd&include_24hr_change=true

Market global (WebFetch) api.coingecko.com/api/v3/global → total_mcap, btc_dominance

DeFi yields (WebSearch) Query: "top DeFi yields APY 2026 site:defillama.com" (API too large)

Fear & Greed (WebFetch) api.alternative.me/fng/ → value 0-100, classification

Crypto events (WebSearch) Query: "crypto token unlocks events this week"

Stock indices (WebSearch) Query: "S&P 500 NASDAQ price today"

Note: CoinGecko free tier has rate limits. Make requests sequentially, not in parallel.

Response Logic

digraph response_format {
  "Query type?" [shape=diamond];
  "Single metric" [shape=box];
  "Category list" [shape=box];
  "Full dashboard" [shape=box];

  "Query type?" -> "Single metric" [label="specific price/value"];
  "Query type?" -> "Category list" [label="top yields/events"];
  "Query type?" -> "Full dashboard" [label="overview/pulse"];
}

Specific price → One line "BTC?" → BTC: $67,450 (+2.3% 24h)

Comparison → Side-by-side metrics "ETH vs SOL" → compare key metrics

Category → Top 5 list "DeFi yields" → ranked protocols

Overview → Full dashboard "market pulse" → all sections

Full Dashboard Template

## Market Pulse — {date}

**Crypto**
BTC: $XX,XXX (±X.X%) | ETH: $X,XXX (±X.X%)
Market Cap: $X.XXT | BTC Dom: XX.X%

**Sentiment**
Fear & Greed: XX — {classification}

**Top DeFi Yields**
1. {Protocol} ({Chain}) — XX.X% APY | TVL $XXM
2. ...

**Upcoming Events**
- {date}: {event description}
- ...

**Stocks**
S&P 500: X,XXX (±X.X%) | NASDAQ: XX,XXX (±X.X%)

Execution Steps

  1. Identify query type from user message
  2. Fetch data using WebFetch for APIs, WebSearch for events/fallback
  3. Format response according to query type
  4. Add timestamp for data freshness

API Examples

Crypto price:

WebFetch: https://api.coingecko.com/api/v3/simple/price?ids=bitcoin,ethereum&vs_currencies=usd&include_24hr_change=true
→ {"bitcoin":{"usd":67450,"usd_24h_change":2.3},"ethereum":{"usd":3520,"usd_24h_change":1.8}}

Fear & Greed:

WebFetch: https://api.alternative.me/fng/
→ {"data":[{"value":"72","value_classification":"Greed"}]}

DeFi yields (via WebSearch):

WebSearch: "top DeFi yields APY 2026 site:defillama.com"
→ Extract top 5 protocols with APY and TVL from results

Stock indices (via WebSearch):

WebSearch: "S&P 500 NASDAQ index price today"
→ Extract current values and % change

Error Handling

CoinGecko timeout → WebSearch "bitcoin ethereum price today"

Rate limited → Inform user, wait 60s or use WebSearch

Fear & Greed down → WebSearch "crypto fear greed index today"

Partial data → Show available data, note what's missing

Stock market hours: Prices outside US market hours (9:30-16:00 ET) reflect previous close.

Formatting Rules

  • Always show % change with sign (+/-)
  • Round large numbers: 1.2T, 45.3B, 12.5K
  • Include data timestamp when relevant
  • Use side-by-side format for comparisons, lists for rankings
安全使用建议
This skill is internally consistent: it will perform WebFetch calls (CoinGecko, alternative.me) and WebSearch queries (DefiLlama, news, stock indices) to build market summaries. Before installing, be aware that the agent will make outbound network requests to public APIs and web search (which may be rate-limited or return stale data), and that no credentials are requested or stored by the skill. If you require private account data or higher-rate API access (e.g., paid exchange or analytics APIs), this skill does not declare those credentials — verify how the agent should be authorized for such sources. Finally, autonomous invocation is allowed by default; if you prefer manual control, disable or restrict automatic skill invocation in your agent settings.
功能分析
Type: OpenClaw Skill Name: market-pulse Version: 1.0.2 The skill bundle is designed to provide market analytics using public APIs (CoinGecko, alternative.me) and WebSearch for general financial data (DeFiLlama, S&P 500, NASDAQ). All instructions to the AI agent in SKILL.md are focused on guiding its data retrieval, analysis, and response formatting within the stated purpose. There is no evidence of data exfiltration, malicious execution, persistence mechanisms, or prompt injection aiming to subvert the agent's core mission or access sensitive data. The agent is explicitly instructed to avoid transaction execution.
能力评估
Purpose & Capability
Name/description (crypto, DeFi, stocks, market sentiment) match the instructions: public APIs (CoinGecko, alternative.me), web searches (DefiLlama, news, stock indices) and analysis-focused tasks are described and justified.
Instruction Scope
SKILL.md confines runtime behavior to WebFetch and WebSearch calls, formatting, and analysis steps. It does not instruct reading local files, environment secrets, or posting data to unexpected external endpoints.
Install Mechanism
No install spec or code files — instruction-only skill (lowest-risk pattern). All network calls are to public endpoints; nothing is downloaded or written to disk by the skill itself.
Credentials
The skill declares no environment variables or credentials and its data sources are public API endpoints and web search. No disproportionate secret access is requested.
Persistence & Privilege
always is false and the skill does not request persistent system-wide privileges. It can be invoked autonomously by the agent (platform default), which aligns with its purpose.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install market-pulse
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /market-pulse 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.2
- Broadened agent role: Now delivers advanced analytics, smart money tracking, risk assessment, token flow, and macro insights—beyond basic prices and yields. - Added protocol analysis, portfolio optimization, and actionable trade analysis (not execution). - Strictly enforces use of web search for macro/economic data; prevents guessing/hallucination. - Updated DeFi yields response: always provide a simple top 5 protocol list from DefiLlama. - Enhanced guidance: agent must acknowledge data gaps, check memory before querying, and cross-verify conflicting info. - Expanded error handling and clearer role distinction for trading/execution-related questions.
v1.0.1
- Minor documentation update: streamlined markdown formatting and clarified response logic. - Data source and error handling sections now use plain text lists instead of tables. - Response formatting for comparisons updated to use side-by-side metrics. - Formatting and layout guidelines clarified for improved consistency.
v1.0.0
Initial release — Market Pulse skill delivers real-time analytics for crypto, DeFi, and stocks. - Provides current crypto and stock prices, DeFi yields, fear & greed index, market overviews, and upcoming events. - Adapts responses by query type: quick quotes, comparisons, rankings, or full dashboard summaries. - Pulls data from CoinGecko, Alternative.me, DefiLlama, and live search for events and fallback. - Includes formatting rules for concise and clear market updates. - Handles errors and rate limiting gracefully, with fallback options.
元数据
Slug market-pulse
版本 1.0.2
许可证
累计安装 12
当前安装数 12
历史版本数 3
常见问题

market pulse 是什么?

Use when user asks about crypto prices, DeFi yields, market sentiment, fear and greed index, stock prices, upcoming crypto events, or requests a market overview. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 3127 次。

如何安装 market pulse?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install market-pulse」即可一键安装,无需额外配置。

market pulse 是免费的吗?

是的,market pulse 完全免费(开源免费),可自由下载、安装和使用。

market pulse 支持哪些平台?

market pulse 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 market pulse?

由 Yuri(@lopushok9)开发并维护,当前版本 v1.0.2。

💬 留言讨论