Claude-skill-registry alphaear-stock

Search A-Share finance stock tickers and retrieve finance stock price history. Use when user asks about finance stock codes, recent price changes, or specific company finance stock info.

install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/alphaear-stock" ~/.claude/skills/majiayu000-claude-skill-registry-alphaear-stock && rm -rf "$T"
manifest: skills/data/alphaear-stock/SKILL.md
source content

AlphaEar Stock Skill

Overview

Search A-Share/HK stock tickers and retrieve historical price data (OHLCV).

Capabilities

1. Stock Search & Data

Use

scripts/stock_tools.py
via
StockTools
.

  • Search:
    search_ticker(query)
    • Fuzzy search by code or name (e.g., "Moutai", "600519").
    • Returns: List of
      {code, name}
      .
  • Get Price:
    get_stock_price(ticker, start_date, end_date)
    • Returns DataFrame with OHLCV data.
    • Dates format: "YYYY-MM-DD".

Dependencies

  • pandas
    ,
    requests
  • scripts/database_manager.py
    (stock tables)