← 返回 Skills 市场
ivangdavila

Fox News Monitor

作者 Iván · GitHub ↗ · v1.0.0
linuxdarwinwin32 ✓ 安全检测通过
256
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install fox-news
功能描述
Monitor Fox News sections and breaking updates with official RSS routes, live-event tracking, and optional outside verification.
使用说明 (SKILL.md)

Setup

On first use, follow setup.md to lock activation scope, preferred sections, and whether the user wants Fox-only reads or source-balanced follow-up.

When to Use

User explicitly wants Fox News coverage, Fox News section monitoring, headline summaries from Fox-owned properties, or a Fox-first briefing with optional outside verification. Use this skill for section routing, official RSS sweeps, live-event follow-through, clip/article packaging, and concise recaps that keep reporting and opinion clearly separated.

Requirements

  • Web access for current headlines and live coverage.
  • Clear user intent when opening multiple articles, clips, or rolling live updates.
  • Explicit permission before saving recurring preferences under ~/fox-news/.

Architecture

Memory lives in ~/fox-news/. See memory-template.md for the baseline structure.

~/fox-news/
├── memory.md          # Activation scope, preferred sections, and balance defaults
├── sources.md         # Approved Fox surfaces and section notes
├── runs.md            # Fetch timestamps, live-event notes, and follow-up history
└── briefs/            # Saved briefings when the user asks to archive them

Quick Reference

Topic File
Setup and activation behavior setup.md
Memory schema and status rules memory-template.md
Official feeds and section mapping feed-map.md
Repeatable fetch and briefing workflows workflow-patterns.md
Output shapes for fast or balanced summaries briefing-formats.md
Recovery paths for broken links or gated streams troubleshooting.md

Data Storage

Local notes in ~/fox-news/ may include:

  • preferred sections such as politics, U.S., world, business, opinion, or video
  • whether the user wants Fox-only output or a Fox-first summary with outside corroboration
  • recency expectations for breaking coverage versus recap mode
  • archived briefings only when the user asks to keep them

Core Rules

1. Route Every Request to One Fox Surface First

  • Map the request to one primary surface before fetching: homepage, section feed, live page, video page, or opinion page.
  • Starting with one surface keeps the result focused and avoids mixing unrelated Fox News products.

2. Separate Reporting, Live Coverage, Video, and Opinion

  • Label each item by surface type before summarizing it.
  • Do not mix straight-news headlines with opinion pieces unless the user explicitly asks for both in one briefing.

3. Timestamp Everything That Claims Freshness

  • For every headline or clip, include when it was published or last updated when that information is available.
  • If a story is older than the requested window, label it as recap or background rather than presenting it as breaking.

4. Use Fox-Owned Sources First, Then Balance When Needed

  • Start with official Fox News pages and RSS feeds for Fox-specific requests.
  • If the user asks for analysis, controversy review, or credibility checking, add at least one independent confirmation and state that it is follow-up context beyond Fox coverage.

5. Confirm High-Volume Reads Before Opening or Pulling

  • Preview the sections, feeds, or number of links before opening many tabs or preparing a broad sweep.
  • Require explicit confirmation before opening multiple articles, clips, or rolling updates in one step.

6. Respect Access Boundaries

  • Do not request account passwords, TV-provider credentials, or Fox Nation credentials in chat.
  • If a live stream or full episode is gated, state the access boundary and fall back to public headlines, clips, or article coverage.

7. Persist Only Reusable Preferences

  • Save only durable context such as favored sections, briefing depth, and balance preference.
  • Do not save full article bodies or transient story details unless the user explicitly asks for an archive.

Common Traps

  • Treating opinion headlines as straight reporting -> users get a distorted briefing.
  • Mixing stale recap items into "latest" coverage -> trust drops quickly.
  • Opening many Fox tabs without preview -> noisy and hard to recover from.
  • Assuming live TV access exists -> unnecessary dead ends when public article coverage is enough.
  • Giving outside analysis without labeling it as follow-up context -> scope becomes unclear.

External Endpoints

Endpoint Data Sent Purpose
https://www.foxnews.com Section paths, article URLs, and optional on-site search terms Read current Fox News headlines, sections, live pages, and article details
https://moxie.foxnews.com RSS feed URLs only Fetch official Fox News XML feeds for deterministic section sweeps
https://help.foxnews.com Help article URLs only Confirm device support, app behavior, and access constraints when troubleshooting

No other data should be sent externally unless the user explicitly asks for non-Fox follow-up sources.

Security & Privacy

Data that may leave your machine:

  • HTTP requests to Fox News web pages, RSS feeds, and help pages
  • optional on-site search terms if the user asks for a Fox-site search workflow

Data that stays local:

  • activation scope, preferred sections, and briefing defaults in ~/fox-news/
  • fetch history and saved briefings only when the user wants them stored

This skill does NOT:

  • collect or store Fox account credentials
  • bypass paywalls, TV-provider gates, or Fox Nation restrictions
  • post, share, or interact with social platforms automatically
  • access files outside ~/fox-news/

Trust

This skill relies on Fox News-owned properties and may surface editorial positions from Fox reporting, live pages, and opinion products. Only install it if you want Fox-specific workflows and trust Fox as one of your news sources.

Related Skills

Install with clawhub install \x3Cslug> if user confirms:

  • news - General news briefings and preference-aware coverage beyond one outlet.
  • digest - Turn multiple reads into concise digests when Fox is only one input.
  • monitoring - Track recurring topics or entities across repeated checks.
  • reading - Manage reading order, queues, and follow-up decisions after a sweep.
  • summarizer - Compress long Fox articles or transcripts into tighter takeaways.

Feedback

  • If useful: clawhub star fox-news
  • Stay updated: clawhub sync
安全使用建议
This skill appears internally consistent for Fox News monitoring: it will make HTTP requests to publicly available Fox endpoints and may create files under ~/fox-news/ (memory.md, sources.md, briefs/, etc.). Before installing, decide whether you are comfortable with those web requests and local files. You can inspect the provided SKILL.md, setup.md, and memory-template.md to confirm what will be written and to verify confirmation prompts are respected. If you prefer, run it initially only interactively (not letting the agent call it autonomously) and review any created files before enabling automated, recurring monitoring.
功能分析
Type: OpenClaw Skill Name: fox-news Version: 1.0.0 The Fox News Monitor skill is designed to fetch and summarize news from official Fox News RSS feeds and web pages. It uses standard system utilities like curl and python for data retrieval and parsing, with all external communication limited to official domains (foxnews.com and moxie.foxnews.com). The skill includes explicit instructions to respect privacy by not requesting credentials and limits its local file operations to a dedicated directory (~/fox-news/). No indicators of data exfiltration, malicious execution, or prompt injection were found.
能力评估
Purpose & Capability
Name/description (Fox News monitoring) match requirements: curl and python for fetching/parsing public RSS/pages and a local config path ~/fox-news/ for storing preferences and briefings are proportionate and expected.
Instruction Scope
SKILL.md restricts activity to reading public Fox News pages/RSS and storing only user-approved preferences and archived briefings; it explicitly forbids requesting credentials and requires confirmation before bulk operations or saving content, which keeps scope focused.
Install Mechanism
Instruction-only skill with no install spec or remote downloads — lowest-risk model: it relies on existing curl/python on PATH and creates a local ~/fox-news/ directory per user consent.
Credentials
No environment variables or external credentials are requested; the single config path asked for (~/fox-news/) is appropriate for persisting preferences and archives and is documented in the skill files.
Persistence & Privilege
always is false, the skill stores only its own local memory under ~/fox-news/ with explicit user confirmation required for saves/archiving; it does not request system-wide changes or modify other skills.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install fox-news
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /fox-news 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release with official feed routing, live coverage workflows, and section-based briefing formats for Fox News readers.
元数据
Slug fox-news
版本 1.0.0
许可证
累计安装 1
当前安装数 0
历史版本数 1
常见问题

Fox News Monitor 是什么?

Monitor Fox News sections and breaking updates with official RSS routes, live-event tracking, and optional outside verification. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 256 次。

如何安装 Fox News Monitor?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install fox-news」即可一键安装,无需额外配置。

Fox News Monitor 是免费的吗?

是的,Fox News Monitor 完全免费(开源免费),可自由下载、安装和使用。

Fox News Monitor 支持哪些平台?

Fox News Monitor 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(linux, darwin, win32)。

谁开发了 Fox News Monitor?

由 Iván(@ivangdavila)开发并维护,当前版本 v1.0.0。

💬 留言讨论