# Send Stock Picker Orchestrator to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
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. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "stock-picker-orchestrator",
    "name": "Stock Picker Orchestrator",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/NDTChan/stock-picker-orchestrator",
    "canonicalUrl": "https://clawhub.ai/NDTChan/stock-picker-orchestrator",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/stock-picker-orchestrator",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=stock-picker-orchestrator",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "agents/openai.yaml"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/stock-picker-orchestrator"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/stock-picker-orchestrator",
    "downloadUrl": "https://openagent3.xyz/downloads/stock-picker-orchestrator",
    "agentUrl": "https://openagent3.xyz/skills/stock-picker-orchestrator/agent",
    "manifestUrl": "https://openagent3.xyz/skills/stock-picker-orchestrator/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/stock-picker-orchestrator/agent.md"
  }
}
```
## Documentation

### 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)

vnstock-free-expert for structured market/fundamental data.
nso-macro-monitor for Vietnam macro snapshot.
us-macro-news-monitor for global macro spillover signals.
vn-market-news-monitor for domestic market narrative.
equity-valuation-framework for decision-grade valuation and report standard.
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)

Parse user intent and select one routing mode.
Set budget preset (Light, Standard, Deep) and hard request limits.
Execute required upstream skills for the chosen route.
Validate intermediate outputs for freshness, completeness, and conflicts.
Run valuation layer only at the required depth.
Aggregate confidence across modules using the shared rubric.
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:

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

### A) Single ticker request

Priority: depth over breadth.
Pipeline:

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

### B) Multi-ticker/sector screening

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

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

### C) Macro/news-led request

Priority: context first, valuation second.
Pipeline:

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

### D) Portfolio refresh

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

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

### Mandatory output contract

Always include these sections in final response:

What Was Fetched

Data sources used, date/time, and coverage.

Pipeline Chosen

Why this route was selected for current user intent.

Assumptions

Explicit assumptions on macro, valuation parameters, and data quality.

Results

Ranked outputs or thesis summary with concise evidence.

Confidence and Gaps

Confidence level + missing data + potential impact.

Risk Flags

Top risks and monitoring triggers.

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:

Compute per-module confidence first (vnstock, macro, news, valuation).
Overall confidence = minimum of critical modules used in the chosen pipeline.
If module outputs conflict, cap overall confidence at Medium unless conflict is resolved with stronger evidence.
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:

Trust data quality hierarchy first (freshness/completeness/consistency).
Prefer broad consensus metrics over fragile point estimates.
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."
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: NDTChan
- Version: 1.0.2
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/stock-picker-orchestrator)
- [Send to Agent page](https://openagent3.xyz/skills/stock-picker-orchestrator/agent)
- [JSON manifest](https://openagent3.xyz/skills/stock-picker-orchestrator/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/stock-picker-orchestrator/agent.md)
- [Download page](https://openagent3.xyz/downloads/stock-picker-orchestrator)