Agent Skillsginlix-ai/LangAlpha › market-watch

market-watch

GitHub

用于实时追踪核心股票行情,自动注册代码并维持价格时效性。通过环境数据流获取最新报价,确保盘中分析基于当前价格,避免使用过时数据,适用于需要即时市场信息的场景。

plugins/langalpha_research/skills/market-watch/SKILL.md ginlix-ai/LangAlpha

Trigger Scenarios

查询实时股价或盘中表现 进行依赖当前价格的量化分析

Install

npx skills add ginlix-ai/LangAlpha --skill market-watch -g -y
More Options

Non-standard path

npx skills add https://github.com/ginlix-ai/LangAlpha/tree/main/plugins/langalpha_research/skills/market-watch -g -y

Use without installing

npx skills use ginlix-ai/LangAlpha@market-watch

指定 Agent (Claude Code)

npx skills add ginlix-ai/LangAlpha --skill market-watch -a claude-code -g -y

安装 repo 全部 skill

npx skills add ginlix-ai/LangAlpha --all -g -y

预览 repo 内 skill

npx skills add ginlix-ai/LangAlpha --list

SKILL.md

Frontmatter
{
    "name": "market-watch",
    "description": "Track live prices for the tickers central to the current task. Registers symbols for an ambient real-time price feed, keeps analysis current with the newest quotes, and re-checks staleness before stating prices."
}

Market Watch

Keep intraday analysis anchored to live prices. When a task turns on current price, a level check, an intraday move, a "where is it trading now", register the central tickers so fresh quotes arrive automatically and your numbers never go stale mid-task.

Evidence labels, source tiers, staleness, the readiness posture and the intake limits: .agents/skills/research-conventions/SKILL.md, read before a price you pulled here lands in a deliverable.

When to use

Intraday or live-price analysis where the price may move while you work: "is NVDA above 205 right now", "how's TSLA trading into the print", sizing a level off the current quote. Skip it for purely historical or end-of-day work where a single snapshot is enough.

Workflow

  1. At the start of the task, identify the ticker(s) central to the request and register them immediately with watch_market.
  2. While they matter, read the ambient feed (below) for the current price rather than re-quoting on every step.
  3. When live tracking is no longer relevant, call watch_market with action="unwatch" to stop watching some or all symbols (omit symbols to clear the whole list).

How the feed works

Once a symbol is watched, fresh prices arrive on their own as <market-watch> price blocks attached to conversation messages and tool results. This is ambient data: not user text, and not tool output you requested. Each block is a snapshot at a moment in time; the newest <market-watch> entry in the conversation is the current price, and any earlier entry (including numbers in your own earlier statements) may be stale.

Reading rules

  • Treat the newest <market-watch> entry as the live price. Prefer it, or a fresh get_quote, over any older number in the thread.
  • If the price moves materially mid-analysis, acknowledge it and adapt your read rather than silently carrying the older figure.
  • Before you state a price in a final answer: if the newest feed entry is more than a minute old, make one get_quote call to re-check first.

When a price leaves this skill

A live price is only live in the thread. The moment it lands in a note, a slide, a cell or a file, it is a historical figure, and it carries two things beside it: the time it was retrieved and where it came from, the ambient feed or a named get_quote call. A price written into a deliverable without its retrieval time is stale the moment the file is saved, and nothing on the page tells the reader that.

The same stamp travels with everything built on the price: market cap, enterprise value, and every multiple. The full always-timestamped list and the freshness threshold for each data type are in .agents/skills/research-conventions/references/evidence.md.

When the feed contradicts a number already stated this session, restate it: give both figures with both timestamps, and say the later one governs. One sentence does it, "we said 204.10 at 10:42; it is 207.60 as of 11:15, and the level check below uses the later figure". Switching silently leaves the reader unable to tell a correction from a typo, and carrying the older figure forward is the failure this feed exists to prevent. Where the earlier figure already went into a saved artifact, update the artifact and say what changed in the message that delivers it.

Mechanics to know

  • Stamps only flow while the market session is open: expect no feed outside trading hours.
  • Updates are throttled: roughly one stamp per ~25s across the turn, not a tick-by-tick stream.
  • The watch list is per-thread, capped at 10 symbols, and expires after ~6h of inactivity. On a long task, if the feed goes quiet, just call watch_market again to re-register.

Version History

  • 7e9f9de Current 2026-09-22 03:17

    引入证据账本、状态姿态和行业视角,强化数据引用规范与冲突记录机制。

  • c2ebaa6 2026-08-27 11:26

Same Skill Collection

plugins/alternative_data/skills/web-scraping/SKILL.md
plugins/alternative_data/skills/x-api/SKILL.md
plugins/langalpha_deliverables/skills/chart-annotation/SKILL.md
plugins/langalpha_deliverables/skills/docx/SKILL.md
plugins/langalpha_deliverables/skills/html-report/SKILL.md
plugins/langalpha_deliverables/skills/inline-widget/SKILL.md
plugins/langalpha_deliverables/skills/interactive-dashboard/SKILL.md
plugins/langalpha_deliverables/skills/pdf/SKILL.md
plugins/langalpha_deliverables/skills/pptx/SKILL.md
plugins/langalpha_deliverables/skills/ui-design/SKILL.md
plugins/langalpha_deliverables/skills/xlsx/SKILL.md
plugins/langalpha_research/skills/3-statements/SKILL.md
plugins/langalpha_research/skills/catalyst-calendar/SKILL.md
plugins/langalpha_research/skills/check-deck/SKILL.md
plugins/langalpha_research/skills/check-model/SKILL.md
plugins/langalpha_research/skills/company-profile/SKILL.md
plugins/langalpha_research/skills/competitive-analysis/SKILL.md
plugins/langalpha_research/skills/comps-analysis/SKILL.md
plugins/langalpha_research/skills/dcf-model/SKILL.md
plugins/langalpha_research/skills/earnings-analysis/SKILL.md
plugins/langalpha_research/skills/earnings-preview/SKILL.md
plugins/langalpha_research/skills/idea-generation/SKILL.md
plugins/langalpha_research/skills/impact-analysis/SKILL.md
plugins/langalpha_research/skills/initiating-coverage/SKILL.md
plugins/langalpha_research/skills/model-update/SKILL.md
plugins/langalpha_research/skills/morning-note/SKILL.md
plugins/langalpha_research/skills/research-conventions/SKILL.md
plugins/langalpha_research/skills/sector-overview/SKILL.md
plugins/langalpha_research/skills/thesis-tracker/SKILL.md
plugins/langalpha_research/skills/trade-pitch/SKILL.md
plugins/langalpha_service/skills/automation/SKILL.md
plugins/langalpha_service/skills/onboarding/SKILL.md
plugins/langalpha_service/skills/run-workflow/SKILL.md
plugins/langalpha_service/skills/secretary/SKILL.md
plugins/langalpha_service/skills/self-improve/SKILL.md
plugins/langalpha_service/skills/user-profile/SKILL.md
skills/3-statements/SKILL.md
skills/automation/SKILL.md
skills/catalyst-calendar/SKILL.md
skills/chart-annotation/SKILL.md
skills/check-deck/SKILL.md
skills/check-model/SKILL.md
skills/competitive-analysis/SKILL.md
skills/comps-analysis/SKILL.md
skills/dcf-model/SKILL.md
skills/earnings-analysis/SKILL.md
skills/earnings-preview/SKILL.md
skills/html-report/SKILL.md
skills/idea-generation/SKILL.md

Metadata

Files
0
Version
7e9f9de
Hash
dd199696
Indexed
2026-08-27 11:26

trang chủ - Wiki
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-09-23 08:16
浙ICP备14020137号-1