ai-oracle-skills: Skill for Claude Code

.claude/skills/ticker-query-skill/SKILL.md

ai-oracle-query is a skill for Claude Code from APRO-com/ai-oracle-skills. It costs 119 tokens per session (4,990 once invoked), scanned B, original, MIT.

A direct connection to the APRO AI Oracle Ticker API, a service that provides current cryptocurrency market data. It can retrieve prices, categories, and OHLCV candlestick data, which shows price movement over time.

In plain words
What is it for?
Use it to look up current prices, categories, or candlestick charts for cryptocurrencies such as Bitcoin, Ethereum, Solana, and Dogecoin.
Why use it?
It lets an agent answer requests for live crypto data without generating code, provided the required API credentials are available.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: positional $N argument.

This is APRO-com/ai-oracle-skills's own configuration. It tells Claude Code how to work on ai-oracle-skills itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything ai-oracle-skills configures →

Reuse

Borrowing it

Nothing to install: this file belongs to APRO-com/ai-oracle-skills. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/APRO-com/ai-oracle-skills/main/.claude/skills/ticker-query-skill/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/APRO-com/ai-oracle-skills

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for ai-oracle-query

README.md
[![agentmods](https://agentmods.dev/badge/skills/apro-com/ai-oracle-skills/ticker-query-skill/github.svg)](https://agentmods.dev/skills/apro-com/ai-oracle-skills/ticker-query-skill)
Your own site
<a href="https://agentmods.dev/skills/apro-com/ai-oracle-skills/ticker-query-skill"><img src="https://agentmods.dev/badge/skills/apro-com/ai-oracle-skills/ticker-query-skill/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for ai-oracle-query

Your own site · 80×15
<a href="https://agentmods.dev/skills/apro-com/ai-oracle-skills/ticker-query-skill"><img src="https://agentmods.dev/badge/skills/apro-com/ai-oracle-skills/ticker-query-skill.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 119 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,990 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 2 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00119 $0.04990
Opus 5 $0.00060 $0.02495
Sonnet 5 $0.00024 $0.00998
Haiku 4.5 $0.00012 $0.00499

Measured 10d ago against content hash cd56d680befb, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade B, and why

ai-oracle-query scanned grade B with 2 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Asks for rootmediumPrivilege escalation

A mod that escalates privileges can change anything on the machine, not only the project.

- **python3**: macOS: `brew install python3` or https://python.org/. Windows: `winget install Python.Python.3` or https://python.org/. Linux: `sudo apt install python3` / `sudo dnf install python3`.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -s -X GET "https://api-ai-oracle.apro.com/v2/ticker/currencies/list?page=1&size=20" \
.claude/skills/ticker-query-skill/SKILL.md · 435 lines

How it starts

The opening of the file, as written. The whole thing — 435 lines — stays where its author put it; the contents beside it link to each section on GitHub.

APRO AI Oracle Ticker — Live Query

This skill lets you call the APRO AI Oracle Ticker API directly and return data to the user. No code generation — just HTTP requests and formatted results.

Authentication

API calls require two headers: X-API-KEY and X-API-SECRET.

Resolution order (try each in sequence, use the first that works):

  1. Environment variables: Check for APRO_API_KEY and APRO_API_SECRET
    echo "${APRO_API_KEY:-NOT_SET}" && echo "${APRO_API_SECRET:-NOT_SET}"
    
  2. Ask the user: If either is NOT_SET, ask the user to provide their API key and secret before proceeding. Do not make API calls without valid credentials.

Once obtained, store them in shell variables for the session:

API_KEY="<value>"
API_SECRET="<value>"

API Base

https://api-ai-oracle.apro.com

CRITICAL: Parameter Naming

This API uses full cryptocurrency names (e.g., "Bitcoin", "Ethereum"), NOT ticker symbols like "BTC" or "ETH". When a user says "BTC price", you must translate to name=Bitcoin. Common mappings:

User says API name param
BTC Bitcoin
ETH Ethereum
SOL Solana
DOGE Dogecoin
ADA Cardano
DOT Polkadot
AVAX Avalanche
MATIC / POL Polygon
LINK Chainlink
UNI Uniswap
TON Toncoin
XRP XRP
TRX TRON
SUI Sui
APT Aptos

If unsure of the full name, call currency/support with restricted=relaxed first to verify and resolve the name.

Available Endpoints

There are 6 endpoints. Read the user's request and pick the right one(s).


1. List Currencies — GET /v2/ticker/currencies/list

When to use: User asks what coins are available, or you need to look up the full name for a symbol.

Parameters:

Param Required Default Example
page No 1 1, 2, 3
size No 20 10, 50, 100

Call pattern:

curl -s -X GET "https://api-ai-oracle.apro.com/v2/ticker/currencies/list?page=1&size=20" \
  -H "X-API-KEY: ${API_KEY}" \
  -H "X-API-SECRET: ${API_SECRET}"

Read the full file on GitHub · 435 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 435 lines · 119 tokens per session scan B cd56d680befb

Subscribe to this mod's changes

ai-oracle-query is a skill published in the GitHub repository APRO-com/ai-oracle-skills (22 stars, last pushed 4mo ago), licensed MIT. It adds 119 tokens to every session and 4,990 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it B with 2 findings (asks for root, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

sector-rotation

An analysis framework for comparing industries in the Chinese A-share stock market, using business conditions, price momentum, valuation, and money flows. It produces rankings and higher- or lower-allocation suggestions.

HKUDS/Vibe-Trading · 39 tokens

strategy-pivot-designer

Detect backtest iteration stagnation and generate structurally different strategy pivot proposals when parameter tuning reaches a local optimum.

tradermonty/claude-trading-skills · 28 tokens

twitter-reader

Read Twitter/X for financial research using opencli (read-only). Use this skill whenever the user wants to read their Twitter feed, search for financial tweets, view bookmarks, look up user profiles, or gather market sentiment from Twitter/X. Triggers include: "check my feed", "search Twitter for", "show my…

himself65/finance-skills · 161 tokens

chenhao-limit-up

A framework for judging Chinese A-share stocks that have reached the daily price-rise limit, using market mood, sector leadership, and trading momentum.

questflowai/investorskills · 44 tokens

trading-risk-gate

Unified pre-trade safety gate: Ruin check (Law #1), ergodicity audit, and win-rate dominance validation. Absorbs: ergodicity-check, law-of-ruin, win-rate-dominance.

winstonkoh87/Athena-Public · 53 tokens

furusato

A Japanese hometown-tax donation manager for furusato nozei, a system where donations to municipalities can qualify for an income-tax or local-tax deduction. It reads donation receipts, stores donation records, and calculates deduction limits.

kazukinagata/shinkoku · 102 tokens