โ† All skills
Tencent SkillHub ยท Developer Tools

Alpha Vantage CLI

Use this skill when users need Alpha Vantage market data or indicators (stocks, ETFs, forex, crypto, commodities, macro, company fundamentals) via the offici...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Use this skill when users need Alpha Vantage market data or indicators (stocks, ETFs, forex, crypto, commodities, macro, company fundamentals) via the offici...

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
README.md, SKILL.md, references/api_docs.md, scripts/alpha_vantage_client.py

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 11 sections Open source page

Overview

This skill provides a production-ready workflow for Alpha Vantage API usage: selecting the right endpoints, building validated requests, handling throttling/error responses, and preparing safe public/commercial deployment.

Quick Start

Set API key: export ALPHAVANTAGE_API_KEY=... For endpoint/params, read references/api_docs.md For scriptable calls with retry/backoff, use scripts/alpha_vantage_client.py For public deployment, follow the Deployment Guardrails section before release

Workflow

Classify request type: Price bars or latest price: time series functions Indicators (RSI, SMA, MACD, etc.): technical indicator functions Company info, earnings, statements: fundamentals FX/Crypto/Commodities/Macro: their dedicated function families Resolve mandatory parameters from references/api_docs.md. Build request with function=... and apikey=.... Parse response and branch for: HTTP error status Error Message Note (usually rate-limit/throttle condition) Empty/partial payload If Note/throttled, retry using exponential backoff with jitter. Normalize output to a stable schema before downstream use.

Authentication

Use ALPHAVANTAGE_API_KEY environment variable by default. Never hardcode keys in source, logs, prompts, or examples. Mask keys in debug output (show only short prefix/suffix).

Reliability and Rate Limits

Treat responses containing Note as retriable throttle events. Use bounded retries with exponential backoff and jitter. For multi-symbol jobs, queue calls and pace to plan limits. Cache stable responses (fundamentals, metadata) to reduce quota burn.

Response Validation

Validate both transport and payload success. Handle string-encoded numbers safely (float(...)/Decimal as needed). Keep parser logic resilient to minor schema/key ordering changes.

Data Quality

Preserve source timestamps/time zones from payload metadata. Do not infer adjusted/unadjusted semantics; use explicit functions. Record the function and params used for reproducibility/auditability.

Public/Commercial Readiness

Review Alpha Vantage terms before public/commercial release: https://www.alphavantage.co/terms_of_service/ Ensure your usage tier and traffic profile are aligned with your plan: https://www.alphavantage.co/premium/ Do not redistribute restricted content if terms disallow it.

Security and Operations

Store API keys in secret managers (or environment variables for local dev only). Add circuit-breaking and queue backpressure for upstream rate spikes. Instrument call counts, throttle rate, retry count, and error classes. Add alerting for sustained Note responses and non-2xx response spikes.

references/

references/api_docs.md contains endpoint selection guidance and required parameters.

scripts/

scripts/alpha_vantage_client.py provides a reusable request wrapper with: env-based auth timeout and retry logic throttle/error detection optional compact output

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
3 Docs1 Scripts
  • SKILL.md Primary doc
  • README.md Docs
  • references/api_docs.md Docs
  • scripts/alpha_vantage_client.py Scripts