Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
Stock Monitor Skill Stock Monitor Skill **实时美股监控技能,使用Alpha Vantage API获取股票数据** 配置 API密钥 请从以下位置设置API密钥: **选项1:环境变量** **选项2:密钥文件** **获取密钥:** 1. 访问 https://www.alphavantage.co 2. 注册并获取免费API密钥 3. 按上述方式配置 支持的股票 - **指数ETF**: SPY, QQQ, DIA, VOO - **科技股**: AAPL, MSFT, GOOGL, AMZN, TSLA - **其他**: 支持所有美股代码 使用方法 基本使用 自定义股票列表 获取单个股票 API功能 1. 实时报价 2. 批量查询 3. 格式化报告 定期监控 每日检查 添加到Heartbeat 在HEARTBEAT.md中添加: 数据字段说明 | 字段 | 说明 | |------|------| | 05. pric Capability contract not published. No trust telemetry is available yet. Last updated 2/25/2026.
Freshness
Last checked 2/25/2026
Best For
openclaw-stock-monitor-skill is best for general automation workflows where OpenClaw compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, GITHUB OPENCLEW, runtime-metrics, public facts pack
Stock Monitor Skill Stock Monitor Skill **实时美股监控技能,使用Alpha Vantage API获取股票数据** 配置 API密钥 请从以下位置设置API密钥: **选项1:环境变量** **选项2:密钥文件** **获取密钥:** 1. 访问 https://www.alphavantage.co 2. 注册并获取免费API密钥 3. 按上述方式配置 支持的股票 - **指数ETF**: SPY, QQQ, DIA, VOO - **科技股**: AAPL, MSFT, GOOGL, AMZN, TSLA - **其他**: 支持所有美股代码 使用方法 基本使用 自定义股票列表 获取单个股票 API功能 1. 实时报价 2. 批量查询 3. 格式化报告 定期监控 每日检查 添加到Heartbeat 在HEARTBEAT.md中添加: 数据字段说明 | 字段 | 说明 | |------|------| | 05. pric
Public facts
4
Change events
1
Artifacts
0
Freshness
Feb 25, 2026
Capability contract not published. No trust telemetry is available yet. Last updated 2/25/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Feb 25, 2026
Vendor
Zanderh Code
Artifacts
0
Benchmarks
0
Last release
Unpublished
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Capability contract not published. No trust telemetry is available yet. Last updated 2/25/2026.
Setup snapshot
git clone https://github.com/ZanderH-code/openclaw-stock-monitor-skill.gitSetup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Zanderh Code
Protocol compatibility
OpenClaw
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
Parameters
bash
export ALPHA_VANTAGE_API_KEY=你的密钥
bash
echo "你的密钥" > ~/.openclaw/alpha_vantage_key
bash
# 运行监控脚本 python stock_monitor.py
python
from stock_monitor import AlphaVantageStock stock = AlphaVantageStock() symbols = ['AAPL', 'MSFT', 'TSLA', 'NVDA'] results = stock.get_daily_summary(symbols)
python
quote = stock.get_quote('AAPL')
print(f"苹果股价: ${quote.get('05. price')}")python
# 获取最新报价
quote = stock.get_quote('SPY')Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB OPENCLEW
Editorial quality
ready
Stock Monitor Skill Stock Monitor Skill **实时美股监控技能,使用Alpha Vantage API获取股票数据** 配置 API密钥 请从以下位置设置API密钥: **选项1:环境变量** **选项2:密钥文件** **获取密钥:** 1. 访问 https://www.alphavantage.co 2. 注册并获取免费API密钥 3. 按上述方式配置 支持的股票 - **指数ETF**: SPY, QQQ, DIA, VOO - **科技股**: AAPL, MSFT, GOOGL, AMZN, TSLA - **其他**: 支持所有美股代码 使用方法 基本使用 自定义股票列表 获取单个股票 API功能 1. 实时报价 2. 批量查询 3. 格式化报告 定期监控 每日检查 添加到Heartbeat 在HEARTBEAT.md中添加: 数据字段说明 | 字段 | 说明 | |------|------| | 05. pric
实时美股监控技能,使用Alpha Vantage API获取股票数据
请从以下位置设置API密钥:
选项1:环境变量
export ALPHA_VANTAGE_API_KEY=你的密钥
选项2:密钥文件
echo "你的密钥" > ~/.openclaw/alpha_vantage_key
获取密钥:
# 运行监控脚本
python stock_monitor.py
from stock_monitor import AlphaVantageStock
stock = AlphaVantageStock()
symbols = ['AAPL', 'MSFT', 'TSLA', 'NVDA']
results = stock.get_daily_summary(symbols)
quote = stock.get_quote('AAPL')
print(f"苹果股价: ${quote.get('05. price')}")
# 获取最新报价
quote = stock.get_quote('SPY')
# 查询多个股票
symbols = ['AAPL', 'GOOGL', 'MSFT']
results = stock.get_daily_summary(symbols)
# 生成格式化报告
report = stock.format_report(results)
print(report)
# 每日收盘后检查
0 17 * * 1-5 python stock_monitor.py
在HEARTBEAT.md中添加:
## 美股监控
- [ ] 检查美股收盘数据
- [ ] 生成当日报告
- [ ] 保存历史数据
| 字段 | 说明 | |------|------| | 05. price | 当前价格 | | 09. change | 涨跌金额 | | 10. change percent | 涨跌百分比 | | 06. volume | 成交量 | | 03. high | 今日最高 | | 04. low | 今日最低 |
Alpha Vantage免费版限制:
API限制: 超过调用限制未找到数据: 股票代码错误网络错误: 连接问题# 获取历史数据(需要Premium API)
params = {
'function': 'TIME_SERIES_DAILY',
'symbol': 'AAPL',
'apikey': api_key
}
# 获取技术指标
params = {
'function': 'RSI',
'symbol': 'AAPL',
'interval': 'daily',
'time_period': 14,
'series_type': 'close',
'apikey': api_key
}
# 更新API密钥
echo "新密钥" > ~/.openclaw/alpha_vantage_key
# 设置环境变量
export ALPHA_VANTAGE_API_KEY=R4MKJRGWX0WLUPX5
============================================================
美股市场报告 - 2026-02-10 21:03
============================================================
▲ SPY (上涨):
当前价格: $450.25
涨跌: +2.15 (+0.48%)
成交量: 45,123,456
今日区间: $447.50 - $452.10
API密钥: R4MKJRGWX0WLUPX5
最后更新: 2026-02-10
技能状态: 已配置 ✅
Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/zanderh-code-openclaw-stock-monitor-skill/snapshot"
curl -s "https://xpersona.co/api/v1/agents/zanderh-code-openclaw-stock-monitor-skill/contract"
curl -s "https://xpersona.co/api/v1/agents/zanderh-code-openclaw-stock-monitor-skill/trust"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Do not use if
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Rank
70
AI productivity studio with smart chat, autonomous agents, and 300+ assistants. Unified access to frontier LLMs
Traction
No public download signal
Freshness
Updated 6d ago
Rank
70
Free, local, open-source 24/7 Cowork app and OpenClaw for Gemini CLI, Claude Code, Codex, OpenCode, Qwen Code, Goose CLI, Auggie, and more | 🌟 Star if you like it!
Traction
No public download signal
Freshness
Updated 6d ago
Rank
70
The Frontend for Agents & Generative UI. React + Angular
Traction
No public download signal
Freshness
Updated 23d ago
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/zanderh-code-openclaw-stock-monitor-skill/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/zanderh-code-openclaw-stock-monitor-skill/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/zanderh-code-openclaw-stock-monitor-skill/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/zanderh-code-openclaw-stock-monitor-skill/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/zanderh-code-openclaw-stock-monitor-skill/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/zanderh-code-openclaw-stock-monitor-skill/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"OPENCLEW"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_OPENCLEW",
"generatedAt": "2026-04-17T02:18:55.097Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "OPENCLEW",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
}
],
"flattenedTokens": "protocol:OPENCLEW|unknown|profile"
}Facts JSON
[
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Zanderh Code",
"href": "https://github.com/ZanderH-code/openclaw-stock-monitor-skill",
"sourceUrl": "https://github.com/ZanderH-code/openclaw-stock-monitor-skill",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-02-25T02:24:33.226Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/zanderh-code-openclaw-stock-monitor-skill/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/zanderh-code-openclaw-stock-monitor-skill/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-02-25T02:24:33.226Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/zanderh-code-openclaw-stock-monitor-skill/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/zanderh-code-openclaw-stock-monitor-skill/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub · GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to openclaw-stock-monitor-skill and adjacent AI workflows.