소스 정보
- 저장소
- johnalbertini14-glitch/openclaw-skills
- 최근 소스 활동
- 2026년 2월 18일 10:08
- 감지된 SKILL.md 언어
- 영어
- 스타
- 1
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/johnalbertini14-glitch/openclaw-skills --skill open-market-data명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Use this skill to create a Polymarket wallet for your agent and trade on prediction markets. Browse markets, place bets, manage positions — all without exposing private keys.
ClawSec suite manager with embedded advisory-feed monitoring, cryptographic signature verification, approval-gated malicious-skill response, and guided setup for additional security skills.
Automated daily security audits for OpenClaw agents with email reporting. Runs deep audits and sends formatted reports.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | open-market-data |
| description | Query free financial data APIs — stocks, crypto, macro, SEC filings |
| version | 0.1.0 |
| tags | ["finance","stocks","crypto","macro","sec","edgar","fred"] |
| tools | ["Bash"] |
| metadata | {"openclaw":{"requires":{"bins":["node","omd"]},"install":[{"kind":"node","package":"open-market-data","bins":["omd"]}],"homepage":"https://github.com/anotb/open-market-data","emoji":"📈"}} |
Unified CLI for free financial data. Queries 8 sources behind a single interface with automatic routing and fallback.
# Stock quotes
omd quote AAPL
omd quote AAPL MSFT GOOGL
# Search
omd search "Apple Inc"
# Financial statements
omd financials AAPL
omd financials AAPL -p quarterly -l 8
# Price history
omd history AAPL --days 90
# Earnings
omd earnings AAPL
# Dividends
omd dividends AAPL
# Options chain
omd options AAPL
omd options AAPL -t call
# SEC filings
omd filing AAPL --type 10-K --latest
omd filing TSLA --type 8-K -l 5
# Insider transactions
omd insiders AAPL
# Crypto
omd crypto BTC
omd crypto top 20
omd crypto history ETH -d 30
# Macroeconomic data
omd macro GDP
omd macro GDP --limit 12
omd macro search "unemployment rate"
# Output formats
omd --json quote AAPL
omd --plain quote AAPL
# Force specific source
omd quote AAPL --source finnhub
omd financials AAPL --source sec-edgar
omd macro NY.GDP.MKTP.CD --source worldbank
# Bypass cache
omd --no-cache quote AAPL
# See all sources and their status
omd sources
# Configure API keys
omd config set fredApiKey <key>
omd config show
| Source | Key? | Best For |
|---|---|---|
| SEC EDGAR | No | Filings, XBRL financials, insider transactions |
| Yahoo Finance | No | Real-time quotes, price history, options, dividends |
| Binance | No | Crypto prices (non-US only) |
| CoinGecko | Free key | Crypto rankings, broader crypto coverage |
| FRED | Free key | GDP, unemployment, interest rates, 800K+ economic series |
| Finnhub | Free key | Real-time stock quotes, earnings data |
| Alpha Vantage | Free key | Stock quotes, financials, price history (25/day limit) |
| World Bank | No | Global economic indicators (GDP, unemployment, inflation) |
Use --json when you need to parse the output programmatically. Always place --json before the command:
omd --json quote AAPL
omd --json financials AAPL -p quarterly
omd --json crypto top 10
omd --json macro GDP --limit 5
API keys via env vars or CLI:
export FRED_API_KEY=your_key
export COINGECKO_API_KEY=your_key
export FINNHUB_API_KEY=your_key
export ALPHA_VANTAGE_API_KEY=your_key
export EDGAR_USER_AGENT="YourCompany you@email.com"
# Or use CLI config
omd config set fredApiKey your_key
omd config set coingeckoApiKey your_key
omd config set finnhubApiKey your_key
omd config set alphaVantageApiKey your_key
omd config show
Commands automatically route to the best available source. If the top source fails or hits its rate limit, it falls back to the next one. Use --source <name> to force a specific provider.
| Data Type | Priority Order |
|---|---|
| Stock quotes | Yahoo → Finnhub → Alpha Vantage |
| Financials | SEC EDGAR → Yahoo → Alpha Vantage |
| Price history | Yahoo → Alpha Vantage |
| Earnings | Yahoo → Finnhub |
| Dividends | Yahoo |
| Options | Yahoo |
| SEC filings | SEC EDGAR |
| Insiders | SEC EDGAR |
| Crypto | Binance → CoinGecko |
| Macro/economic | FRED → World Bank |
| Search | SEC EDGAR → Yahoo → Finnhub → Alpha Vantage |