Stock Picker Orchestrator

v1.0.2

Acts as a meta-orchestrator that routes stock-analysis requests across data, macro/news, and valuation skills under explicit budget controls; used when users...

1· 690·6 current·6 all-time
byNguyễn Đức Thành@ndtchan

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for ndtchan/stock-picker-orchestrator.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Stock Picker Orchestrator" (ndtchan/stock-picker-orchestrator) from ClawHub.
Skill page: https://clawhub.ai/ndtchan/stock-picker-orchestrator
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install stock-picker-orchestrator

ClawHub CLI

Package manager switcher

npx clawhub@latest install stock-picker-orchestrator
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
The name/description (meta-orchestrator for stock analysis) aligns with the SKILL.md: it routes requests to other specialized skills and enforces budget/pacing. It does not request unrelated binaries, credentials, or config paths. The fact that dependencies are named in the markdown rather than formally declared is a bookkeeping issue but not a functional mismatch.
Instruction Scope
The SKILL.md stays on-scope: it classifies intent, selects pipelines, enforces vnstock/news/valuation budgets, and mandates a structured output. It does not instruct reading local files or harvesting unrelated env vars. Note: it delegates network/API work to downstream skills — those skills (not this orchestrator) will perform the actual data fetches, so the security posture depends on them as well.
Install Mechanism
No install spec or code is included (instruction-only), so nothing is downloaded or written to disk by this skill itself. That minimizes installation risk.
Credentials
This skill declares no required environment variables or credentials, which is appropriate because it orchestrates other skills that will hold their own API keys. The SKILL.md references vnstock rate limits and 'community API key' only as policy guidance — not as required secrets for this skill itself.
Persistence & Privilege
always is false and model invocation is allowed (platform default). The skill does not request persistent system-wide changes or modify other skills' configs. Autonomous invocation will let it call downstream skills, which is expected for an orchestrator.
Assessment
This skill is an instruction-only orchestrator and appears coherent with its purpose, but it delegates all network access and credential use to the downstream skills it names (vnstock-free-expert, news/macro monitors, equity-valuation-framework, etc.). Before installing or invoking it: 1) verify those dependent skills are trustworthy and review their required env vars/API keys; 2) test the orchestrator in a safe environment to confirm budget limits behave as expected; 3) if you need tighter control, restrict autonomous invocation or require explicit user approval before running high-budget/deep pipelines; and 4) note that absence of code meant the static scanner had nothing to analyze — that reduces installer risk but also means you should inspect the workspace for the named skills' behavior and endpoints.

Like a lobster shell, security has layers — review code before you run it.

Runtime requirements

🧩 Clawdis
latestvk9745kryqkm67efnpcdrv6jt7981sgf2
690downloads
1stars
3versions
Updated 2mo ago
v1.0.2
MIT-0

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."

Comments

Loading comments...