Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计提醒

signal-track信号轨道

Agent Skill

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

总安装

2,928

周安装

122

GitHub Stars

1

下载量

976
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install signal-track

简介

signal-track 持续监控股票、公司与政策等主题动态。

  • 适用于趋势追踪、事件预警与结构化报告生成。signal-track 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 支持自定义关键词与更新频率,适配投资研究场景。
  • 需用户提供关注列表与阈值设定,避免无关噪音干扰。
  • 建议结合外部数据源交叉验证,提升信号准确性。

SKILL.md

name
signal-track
description
Track persistent topics (stocks, companies, AI, and policy events) and monitor them continuously. Use this for recurring updates, trend monitoring, and structured summaries. Use this when users want recent news about a specific event, person, company, or topic. (追踪)
metadata
tags
[information-tracking, topic-tracking, news-intelligence, continuous-monitoring, one-off-news-search]
version
0.1.0
required_config_paths
note
Primary config file. If present, signal-track reads/writes skills.entries.signal-track.apiKey.
note
Legacy config fallback path used for backwards compatibility.

What it does

signal-track is an AI-native information tracking system and a CLI tool for continuous, topic-based intelligence monitoring. signal-track is not a traditional news reader and not a general recommendation feed. The system is built around long-running topics: users define persistent tracking tasks, and the platform continuously monitors information sources, detects meaningful updates, filters noise, and surfaces high-value signals. In other words, it converts one-time information queries into persistent tracking tasks.

  • Track ongoing topics (e.g. "OpenAI releases", "NVIDIA earnings", "China policy changes")
  • Aggregate updates from multiple information sources
  • Deduplicate and structure incoming information
  • Provide summarized updates and timelines
  • Support deep-dive analysis on specific events

When to use

Use signal-track when:

  • You need continuous monitoring of a topic over time
  • You want to avoid missing important updates
  • You are tracking fast-moving domains (AI, finance, policy, etc.)
  • You need structured, decision-relevant information instead of raw news

Do NOT use signal-track for:

  • General browsing or entertainment content
  • Pure one-off trivia or random browsing (unless the user explicitly asks for one-off news/article search or browsing)

Core concepts

  • Topic: A long-running information tracking task that can be expressed through a natural language description, structured keywords, and entity references.
  • NewsCard: The atomic information unit delivered to users(or agents).

* Typical contents: title, overview, ELI5, sources, timestamp, and topic mapping.

  • Source: Any information producer the system monitors.

* Examples: news websites, blogs, social media, research publications, official announcements, and company releases.

  • Feed: A stream of news cards associated with a topic or a user's followed topics, ordered recency.

Key capabilities

  • Create and manage topics
  • Subscribe/unsubscribe to topics
  • Retrieve topic details by id
  • Search within tracked signals
  • Fetch full article content
  • Trigger deep analysis on selected items

Example use cases

  • Track a company (e.g. Tesla, Apple) for investment decisions
  • Monitor AI model releases and benchmark progress
  • Follow policy or regulatory changes in a region
  • Track competitors or specific products
  • Provide simplified explanations of complex information (easy-to-understand summaries)

CLI surface covered

All existing signal-track CLI commands are supported through the helper script:

  • Command runner: signal-track <args>

Auth

  • signal-track login --api-key <api_key> validates the key using the backend endpoint and stores user context locally.

Topic commands

  • signal-track topic show --topic-id <topic_id> [--cursor <cursor>] [--page-size <page_size>]

Topics commands

  • signal-track topics my
  • signal-track topics list
  • signal-track topics follow --topic-id <topic_id>
  • signal-track topics unfollow --topic-id <topic_id>
  • signal-track topics search --scope my --query <keyword> [--page-size <page_size>] [--page-number <page_number>]
  • signal-track topics search --scope square --query <keyword> [--page-size <page_size>] [--page-number <page_number>]

News cards

  • signal-track news_cards feed my [--cursor <cursor>] [--page-size <page_size>]
  • signal-track news_cards feed --topic-id <topic_id> [--cursor <cursor>] [--page-size <page_size>]
  • signal-track news_cards get --news-id <news_id>
  • signal-track news_cards get <news_id> *(positional alias)*
  • signal-track news_cards search --query <keyword>

Articles

  • signal-track articles content --article-id <article_id>

Execution notes

  • Always keep commands in English.
  • Default environment:

- Requires Node.js 22+.

  • API base URL defaults to https://younews.k.sohu.com/.
  • Required local config state:

- Reads auth from ~/.openclaw/openclaw.json (preferred). If absent, falls back to legacy ~/.signal-track/config.json. - Writes login state to the detected existing config path (openclaw if present, otherwise legacy config path). - If --json is missing, output is human-readable JSON-style pretty print except for special card-get behavior where the first card is printed.

Installation and deployment

  • Prerequisite: Node.js 22+ (node -v).
  • Install from local source:

- npm install

  • npm install -g .

- signal-track --help - signal-track <command>

Error handling

  • If not logged in, commands return a clear message prompting signal-track login --api-key <api_key>.
  • Missing required flags (for example, --topic-id, --news-id, --article-id, --query, or --scope) are reported and command help is printed.
  • Invalid pagination values (negative/zero/non-integer) return validation errors before any network call.

Platform notes

signal-track is powered by YouNews as its underlying engine and can be considered the CLI version of YouNews; it is available exclusively to YouNews members — see younews.cn for more information.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

94.66%
按下载量换算924

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills