# Send Modular Market Brief 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": "modular-market-brief",
    "name": "Modular Market Brief",
    "source": "tencent",
    "type": "skill",
    "category": "金融交易",
    "sourceUrl": "https://clawhub.ai/boilerrat/modular-market-brief",
    "canonicalUrl": "https://clawhub.ai/boilerrat/modular-market-brief",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/modular-market-brief",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=modular-market-brief",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/movers_yahoo.py",
      "scripts/render_example.md",
      "scripts/tmx_movers.py",
      "scripts/price_tape.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.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/modular-market-brief"
    },
    "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/modular-market-brief",
    "downloadUrl": "https://openagent3.xyz/downloads/modular-market-brief",
    "agentUrl": "https://openagent3.xyz/skills/modular-market-brief/agent",
    "manifestUrl": "https://openagent3.xyz/skills/modular-market-brief/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/modular-market-brief/agent.md"
  }
}
```
## Documentation

### Modular Market Brief

Create a concise but information-dense market report that is modular (can include/exclude sections) and data-backed (prices/returns/trend state when possible).

### Inputs to ask for (or assume defaults)

Time window: AM (since prior close) vs PM (what changed since AM)
Regions: e.g., US, Canada, EU, Asia (user chooses)
Asset blocks: equities, rates, FX, commodities, crypto
Core tickers: indices + user’s preferred ETFs/tickers
Movers source: which exchange/market and where to get movers
Risk appetite: conservative vs aggressive framing

If the user doesn’t specify, default to a broad global dashboard with US indices, USD, oil, gold, BTC/ETH.

### Report structure (recommended)

TL;DR (3–6 bullets)
Equities (by region)
Rates (2Y/10Y + key central bank watch)
FX (DXY or major pairs; local pair for user)
Commodities (WTI/Brent, gold, copper; add relevant)
Crypto (BTC/ETH + anything user cares about)
Top movers (top gainers/losers for a chosen exchange)
Patterns / trend box (BUY/SELL/WAIT labels for selected instruments)
One best idea (cross-asset; include invalidation)

### Data guidance

Prefer programmatic price tape when available:

Use yfinance for tickers/ETFs/crypto/commodity futures (optional dependency).
If a market needs a dedicated movers list, use a web source (exchange site / finance portal) and then enrich tickers via yfinance.

### Installing yfinance (recommended, but not required)

If yfinance isn’t available, the skill can still produce a narrative brief from public sources.

For reliable installs on modern Linux distros (PEP 668), prefer a venv:

python3 -m venv ~/.venvs/market-brief
~/.venvs/market-brief/bin/pip install -U pip
~/.venvs/market-brief/bin/pip install yfinance pandas numpy

Then run scripts using ~/.venvs/market-brief/bin/python.

### Trend labeling (simple + explainable)

Use MA/RSI-based state labels:

BUY: close > MA20 > MA50 and RSI(14) >= 50
SELL: close < MA20 < MA50 and RSI(14) <= 50
WAIT: everything else

Always present it as a pattern (not a guarantee) and include a one-line rationale.

### Bundled scripts (optional helpers)

scripts/price_tape.py: pull prices + returns + MA/RSI for a ticker list (yfinance)
scripts/movers_yahoo.py: free Yahoo Finance screeners for top gainers/losers/actives (best-effort)
scripts/tmx_movers.py: example movers scraper (TMX Money) you can adapt or swap
scripts/render_example.md: a template you can reuse

Only run scripts if you actually need structured output; otherwise write the report directly.

### Safety / finance guardrails

Don’t place trades.
Avoid certainty language. Use “pattern / bias / invalidation.”
If the user asks for explicit buy/sell instructions, provide a conceptual plan + risks.
Remind about tax/fees only when relevant.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: boilerrat
- Version: 0.1.0
## 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-23T16:43:11.935Z
- Expires at: 2026-04-30T16:43:11.935Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/modular-market-brief)
- [Send to Agent page](https://openagent3.xyz/skills/modular-market-brief/agent)
- [JSON manifest](https://openagent3.xyz/skills/modular-market-brief/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/modular-market-brief/agent.md)
- [Download page](https://openagent3.xyz/downloads/modular-market-brief)