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

stock-picker-orchestrator选股协调器

Agent Skill

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

总安装

21,121

周安装

898

GitHub Stars

1

下载量

7,177
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install stock-picker-orchestrator

简介

协调多个数据与估值技能完成预算约束下的股票筛选。

  • 整合宏观新闻与市场情绪进行多因子打分排序。
  • 用于复杂选股任务中平衡成本与质量要求。
  • 安装命令:openclaw skills install stock-picker-orchestrator,需预设分析预算参数。
  • 协调过程依赖下游技能可用性,可能出现调用失败情况。

SKILL.md

name
stock-picker-orchestrator
description
Acts as a meta-orchestrator that routes stock-analysis requests across data, macro/news, and valuation skills under explicit budget controls; used when users ask to find candidates, compare stocks, or run end-to-end expert analysis.
compatibility
Requires dependent skills (vnstock-free-expert, macro/news monitors, and equity-valuation-framework) to be available in the same workspace.
metadata
{"openclaw":{"emoji":"🧩"}}

Stock Picker Orchestrator

Use this skill to coordinate the full analysis system from user intent to final recommendation framing.

Purpose

  • Convert user request into the right analysis pipeline.
  • Control budget: vnstock API calls, breadth of news scraping, depth of valuation work.
  • Produce transparent outputs: what was fetched, assumptions, confidence, gaps.
  • Scope boundary: this skill coordinates other skills and does not replace their domain-specific logic.

Skill graph (preferred dependencies)

  1. vnstock-free-expert for structured market/fundamental data.
  2. nso-macro-monitor for Vietnam macro snapshot.
  3. us-macro-news-monitor for global macro spillover signals.
  4. vn-market-news-monitor for domestic market narrative.
  5. equity-valuation-framework for decision-grade valuation and report standard.
  6. portfolio-risk-manager for IPS mini + position sizing + risk triggers (no-margin).

Trigger conditions

  • "Find best stock(s)"
  • "Screen this sector"
  • "Analyze ticker X deeply"
  • "How do macro/news affect these stocks"
  • "Value this stock like a professional"

First step: intent classification

Classify user request into one of these modes:

  • Single-Ticker Deep Dive
  • Multi-Ticker/Universe Screening
  • Macro/News-Led Investigation
  • Portfolio Refresh

If ambiguous, choose the most conservative high-signal mode and note assumption.

Execution workflow (ordered)

  1. Parse user intent and select one routing mode.
  2. Set budget preset (Light, Standard, Deep) and hard request limits.
  3. Execute required upstream skills for the chosen route.
  4. Validate intermediate outputs for freshness, completeness, and conflicts.
  5. Run valuation layer only at the required depth.
  6. Aggregate confidence across modules using the shared rubric.
  7. Return output using the mandatory output contract.

Budget policy (required)

Define and enforce budget at start:

  • API budget: max vnstock calls
  • News budget: max headlines/articles per source
  • Valuation depth: quick multiples vs full DCF

Default safe presets:

  • Light: 20-40 vnstock calls, headlines-only news, quick valuation
  • Standard: 40-120 calls, mixed headlines + selected deep reads, scenario valuation
  • Deep: 120+ calls, full context package, full valuation + sensitivity

Prefer free-tier-safe pacing when using vnstock.

Free-tier budget mapping (required)

Use these hard limits for vnstock runs:

  • Guest/no API key: max 20 requests/min (recommended pacing >= 3.2s/request).
  • Community API key: max 60 requests/min (recommended pacing >= 1.1s/request; keep 3.2s/request if unstable).

Policy actions:

  1. Estimate call count before execution and choose the smallest viable preset.
  2. If estimated calls exceed current budget, reduce scope (smaller universe or fewer modules).
  3. Reuse cached artifacts before making new requests.
  4. Stop scope expansion when remaining call budget < 10% and report partial results.

Routing logic

A) Single ticker request

Priority: depth over breadth. Pipeline:

  1. vnstock-free-expert fetch financials + price behavior.
  2. Optional macro/news context if user asks or risk is macro-sensitive.
  3. equity-valuation-framework full thesis + valuation + risks.

B) Multi-ticker/sector screening

Priority: breadth first, then depth on finalists. Pipeline:

  1. vnstock-free-expert broad screener/ranking.
  2. Select top candidates by objective criteria.
  3. Run quick valuation layer on shortlist.
  4. Deep valuation only for top 1-3 names.

C) Macro/news-led request

Priority: context first, valuation second. Pipeline:

  1. nso-macro-monitor + us-macro-news-monitor + vn-market-news-monitor.
  2. Map exposures to sectors/tickers.
  3. Run quick vnstock validation on impacted names.
  4. If needed, run equity-valuation-framework for decision-critical names.

D) Portfolio refresh

Priority: risk control + monitoring triggers + sizing discipline. Pipeline:

  1. Re-score holdings and benchmark against alternatives.
  2. Macro/news stress overlay.
  3. Run equity-valuation-framework at least quick depth on key holdings/watchlist.
  4. Run portfolio-risk-manager to produce IPS mini + position sizing policy + per-ticker triggers/invalidation.
  5. Flag rebalance candidates with confidence and data gaps.

Mandatory output contract

Always include these sections in final response:

  1. What Was Fetched
  • Data sources used, date/time, and coverage.
  1. Pipeline Chosen
  • Why this route was selected for current user intent.
  1. Assumptions
  • Explicit assumptions on macro, valuation parameters, and data quality.
  1. Results
  • Ranked outputs or thesis summary with concise evidence.
  1. Confidence and Gaps
  • Confidence level + missing data + potential impact.
  1. Risk Flags
  • Top risks and monitoring triggers.
  1. Next-Step Options
  • 2-3 practical follow-up actions (e.g., deepen 1 ticker, expand peer set, update after next macro release).

Shared confidence rubric (required)

Use a unified confidence output across pipeline steps:

  • High: all critical modules complete with no material data blockers.
  • Medium: one critical module has partial gaps but overall conclusion remains stable.
  • Low: key module(s) missing or conflicting evidence makes conclusion fragile.

Aggregation rule:

  1. Compute per-module confidence first (vnstock, macro, news, valuation).
  2. Overall confidence = minimum of critical modules used in the chosen pipeline.
  3. If module outputs conflict, cap overall confidence at Medium unless conflict is resolved with stronger evidence.
  4. Always state which module is the bottleneck for confidence.

Governance and quality rules

  • Single source of truth: if user provides ACTIVE_WATCHLIST/holdings, do not self-modify it; only propose drafts requiring user confirmation.
  • Never present uncertain outputs as facts.
  • Separate observed data from inference.
  • Prefer reproducible logic over ad-hoc narratives.
  • When data is insufficient, downgrade confidence and narrow claims.
  • Avoid absolute buy/sell instructions; provide valuation framing and risk-aware interpretation.

Conflict resolution rules

If outputs from different modules disagree:

  1. Trust data quality hierarchy first (freshness/completeness/consistency).
  2. Prefer broad consensus metrics over fragile point estimates.
  3. Keep both interpretations and state decision boundary (what would change the conclusion).

Fallback behavior

  • If macro/news skills are unavailable: continue with vnstock + valuation only and mark missing context.
  • If valuation inputs are weak: provide screening + directional view; defer full valuation.
  • If API budget is near limit: stop expanding scope, summarize partial results, request user confirmation for deeper run.

Example orchestration prompts

  • "Run a single-ticker deep dive for HPG with full valuation and risk register."
  • "Screen VN30 for top value-quality names, then deep value top 3."
  • "Start from macro shock signals, then identify Vietnamese sector winners/losers and value 2 candidates."

Trigger examples

  • "Find the best Vietnam stocks this week with full reasoning."
  • "Compare three candidate tickers and tell me which one is strongest."
  • "Start from macro and news, then shortlist potential winners."

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

97.65%
按下载量换算7,008

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills