Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

vnstock-free-expertvnstock 免费专家

Agent Skill

vnstock-free-expert 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

18,485

周安装

778

GitHub Stars

公开资料未说明

下载量

6,473
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:vnstock-free-expert(vnstock 免费专家)
来源仓库:https://github.com/ndtchan/vnstock-free-expert
安装命令:
openclaw skills install vnstock-free-expert
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install vnstock-free-expert

简介

执行端到端越南股票数据分析与估值计算流程。vnstock-free-expert 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 内置严格速率限制保障免费用户平稳访问体验。
  • 适用于基本面研究和投资组合筛选等量化分析场景。
  • 数据更新频率受限制可能影响实时性要求高的决策。
  • 输出报告包含免责声明请勿单独作为投资依据。

SKILL.md

name
vnstock-free-expert
description
Runs an end-to-end vnstock workflow for free-tier-safe Vietnam stock valuation, ranking, and API operations with strict rate-limit control; used when users request Vietnamese stock analysis under free-tier constraints.
compatibility
Requires Python 3.x, vnstock package, pandas, internet access, and optional VNSTOCK_API_KEY in .env.

VNStock Free Expert

Use this skill when the user needs advanced Vietnam stock analysis with vnstock, while staying safe on free-tier limits.

Important packaging note

This skill is self-contained and does not require shipping a separate vnstock/ docs folder. All operational knowledge needed by the agent is stored under:

  • references/

Read order

  1. Read references/capabilities.md.
  2. Read references/method_matrix.md for exact class/method mapping.
  3. Read references/free_tier_playbook.md before large runs.

Scope and constraints

  • Library: vnstock only.
  • Preferred sources: kbs first, vci fallback.
  • Never use tcbs.
  • Treat Screener API as unavailable unless user confirms it is restored in their installed version.

Free-tier operating rules

  • No API key: target <= 20 requests/minute.
  • Free API key: target <= 60 requests/minute.
  • Safe default pacing in scripts: 3.2s/request.
  • Reuse cached artifacts between steps.

Shared confidence rubric (required)

Report confidence as High / Medium / Low using this standard:

  • High: universe coverage >= 95%, critical metrics coverage >= 80%, and hard errors <= 5% of symbols.
  • Medium: universe coverage >= 80%, critical metrics coverage >= 60%, and hard errors <= 15%.
  • Low: below Medium thresholds or material missing fields that can flip ranking results.

Always output:

  1. Confidence level.
  2. Coverage stats (symbols_requested, symbols_scored, % missing by key metric).
  3. Top missing fields that may change conclusions.

API key configuration (implemented)

  • Skill-local key file: .env
  • Variable: VNSTOCK_API_KEY
  • All API-calling scripts auto-load this key and call vnstock auth setup before requests.
  • You can override per run with --api-key "...".

Execution workflow (ordered)

  1. Validate environment (python, vnstock, pandas) and load optional API key from .env.
  2. Build a universe using scripts/build_universe.py (group, exchange, or symbols mode).
  3. Collect market data with scripts/collect_market_data.py using safe pacing.
  4. Collect fundamentals with scripts/collect_fundamentals.py.
  5. Score and rank using scripts/score_stocks.py.
  6. Generate analyst-style memo with scripts/generate_report.py.
  7. Apply confidence rubric, disclose missing fields, and summarize risks.

Downstream handoff bundle (required when doing single-ticker deep dive)

When the user request is about valuing or building a memo for a specific ticker (or a small list), output a compact JSON bundle that downstream skills can reuse:

  • ticker, as_of_date, currency
  • financials (income/balance/cashflow + key ratios if available)
  • price_history (returns 1m/3m/6m/12m)
  • peer_set (if you built one)
  • metadata.source and data_quality_notes

This bundle is designed to feed equity-valuation-framework and portfolio-risk-manager.

Script map

A) Discovery and universal invocation (for broad feature coverage)

  1. catalog_vnstock.py

Path: scripts/catalog_vnstock.py

Use when:

  • You need to inspect available classes/methods in the installed vnstock version.
  • You want to confirm compatibility before running a method.
  1. invoke_vnstock.py

Path: scripts/invoke_vnstock.py

Use when:

  • You need to call any supported class/method beyond the prebuilt valuation pipeline.
  • You want one generic entry point for Listing, Quote, Company, Finance, Trading, Fund, or other exported classes.

This script supports dynamic invocation by class name and method name with JSON kwargs.

B) Valuation pipeline scripts

  1. build_universe.py

Use when building symbol universe from index/exchange/custom symbol list. Input: source + mode + group/exchange/symbols. Output: outputs/universe_*.csv and latest pointers.

  1. collect_market_data.py

Use when collecting OHLCV/momentum fields (3M, 6M, 12M returns). Input: universe CSV path. Output: outputs/market_data_*.csv + per-symbol errors in JSON.

  1. collect_fundamentals.py

Use when collecting valuation and quality metrics from finance/company APIs. Input: universe CSV path. Output: outputs/fundamentals_*.csv + per-symbol errors in JSON.

  1. score_stocks.py

Use when ranking symbols with composite scoring. Input: market + fundamentals CSV files. Output: outputs/ranking_*.csv.

  1. generate_report.py

Use when converting ranking output to analyst-style markdown memo. Input: ranking CSV file. Output: outputs/investment_memo_*.md.

  1. run_pipeline.py

Use when running the end-to-end pipeline in one command. Input: source + universe mode. Output: all artifacts above in one run.

Error handling rules

  1. Log symbol-level failures and continue processing remaining symbols.
  2. Do not claim missing metrics as zeros; mark them as missing.
  3. If a critical step fails, stop and report failed step + command + suggested retry scope.

Recommended decision logic

  1. If request is “standard valuation/ranking”: run pipeline scripts.
  2. If request needs a specific vnstock capability not in pipeline: use catalog_vnstock.py then invoke_vnstock.py.
  3. If request volume is large: apply free_tier_playbook.md throttling and chunking strategy.

Confidence aggregation (required)

When output includes ranking and valuation interpretation:

  1. Compute data confidence from coverage metrics (symbols_scored, missing key fields, error ratio).
  2. Compute model confidence from method robustness (single metric vs multi-factor consistency).
  3. Final confidence = lower of data confidence and model confidence.
  4. In Low confidence cases, provide directional output only and list required missing inputs.

Required output template

  1. What Was Run: scripts, source, universe scope, and pacing profile.
  2. Coverage: requested symbols, scored symbols, and missingness by key field.
  3. Top Results: ranked list with score columns.
  4. Key Risks: concentration, stale data, missing metrics, or provider limitations.
  5. Confidence and Gaps: final confidence + exact blockers.

Quick command examples

python scripts/catalog_vnstock.py --outdir ./outputs
python scripts/invoke_vnstock.py --class-name Quote --init-kwargs '{"source":"kbs","symbol":"VCB"}' --method history --method-kwargs '{"start":"2024-01-01","end":"2024-12-31","interval":"1D"}' --outdir ./outputs
python scripts/run_pipeline.py --source kbs --mode group --group VN30 --outdir ./outputs

Trigger examples

  • "Analyze VN30 using vnstock but keep it free-tier safe."
  • "Rank Vietnamese stocks by value/quality/momentum with KBS data."
  • "Run a full vnstock pipeline and return top candidates with risk notes."

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

97.5%
按下载量换算6,311

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills