Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

sec-daily-digest秒每日摘要

Agent Skill

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

总安装

15,398

周安装

629

GitHub Stars

1

下载量

4,931
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install sec-daily-digest

简介

sec-daily-digest 聚合网络安全领域最新动态,包括 CVE 漏洞与高危事件通报。

  • 适用于安全运维人员、研究人员或企业风险管理人员获取每日威胁情报摘要。
  • 整合 RSS 源、AI 评分与人工规则过滤,输出双语关键信息供快速浏览。
  • 依赖外部 OPML 订阅源质量,可能存在信息遗漏或误判,需人工复核重要条目。
  • 建议作为辅助工具,配合官方漏洞公告与厂商补丁说明综合使用。

SKILL.md

name
sec-daily-digest
version
0.2.0
description
Use when asked to generate a cybersecurity daily digest from CyberSecurityRSS OPML feeds and Twitter/X KOL accounts, with provider selection, recent-window filtering, archive dedup, vulnerability merging, source health monitoring, and markdown output.
env
OPENAI_API_KEY
OpenAI provider key
GEMINI_API_KEY
Google Gemini provider key
ANTHROPIC_API_KEY
Anthropic Claude provider key
OLLAMA_BASE_URL
Ollama base URL (optional, defaults to http://localhost:11434)
TWITTERAPI_IO_KEY
twitterapi.io API key (preferred)
X_BEARER_TOKEN
Official Twitter API v2 bearer token
TWITTER_API_BACKEND
twitterapiio|official|auto" (default: auto)
SEC_DAILY_DIGEST_HOME
Custom state root (default: ~/.sec-daily-digest)

Sec Daily Digest

Generate a daily cybersecurity digest for researchers from CyberSecurityRSS OPML feeds and Twitter/X security KOL accounts. Trigger command: /sec-digest.

When to Use

  • The user asks for a daily or latest cybersecurity digest.
  • The user needs balanced AI + security coverage from RSS feeds.
  • The user wants Twitter/X KOL security updates alongside RSS content.
  • The task needs merged vulnerability events (CVE-first + non-CVE clustering).
  • The user requests provider control (openai|gemini|claude|ollama) or --dry-run.

When Not to Use

  • The user wants ad-hoc one-off article summaries (use direct summarization instead).
  • The user expects arbitrary output language switching.

Quick Start

# Basic (RSS only, no AI scoring)
bun scripts/sec-digest.ts --dry-run --output ./output/digest.md

# With AI scoring + Twitter KOLs
TWITTERAPI_IO_KEY=your-key bun scripts/sec-digest.ts \
  --provider claude --opml tiny --hours 48 --output ./output/digest.md

# Weekly mode (168h window)
bun scripts/sec-digest.ts --mode weekly --provider openai --output ./output/weekly.md

# With email delivery (requires gog)
bun scripts/sec-digest.ts --provider claude --email me@example.com --output ./output/digest.md

# With full text enrichment
bun scripts/sec-digest.ts --provider claude --enrich --output ./output/digest.md

CLI Flags Reference

FlagDescriptionDefault
--provider <id>AI provider: `openai\gemini\claude\ollama`openai
--opml <profile>OPML profile: `tiny\full`tiny
--hours <n>Time window in hours48
`--mode <daily\weekly>`Shortcut: daily=48h, weekly=168h
--top-n <n>Max articles to select20
--output <path>Output markdown file path./output/sec-digest-YYYYMMDD.md
--dry-runRule-based scoring only (no AI calls)false
--no-twitterDisable Twitter/X KOL fetchingfalse
--email <addr>Send digest via gog to address
--enrichFetch full text for articlesfalse
--helpShow help

Quick Reference

  • Entrypoint: scripts/sec-digest.ts
  • Pipeline: src/pipeline/run.ts
  • Config root: ~/.sec-daily-digest/
  • Config file: ~/.sec-daily-digest/config.yaml
  • Sources file: ~/.sec-daily-digest/sources.yaml
  • Health file: ~/.sec-daily-digest/health.json
  • Archive dir: ~/.sec-daily-digest/archive/
  • OPML cache (tiny): ~/.sec-daily-digest/opml/tiny.opml
  • OPML cache (full): ~/.sec-daily-digest/opml/CyberSecurityRSS.opml

Required Behavior

  1. Always perform OPML remote update check before feed parsing.
  2. If OPML remote check fails, use local cache only when cache exists.
  3. If remote check fails and no local cache exists, fail fast (No cached OPML available and remote update check failed.).
  4. Provider defaults to openai; explicit --provider overrides config.
  5. Ranking uses balanced weights (Security + AI, default 0.5/0.5).
  6. Output sections must include AI发展, 安全动态, and 漏洞专报.
  7. output_language exists in config, but current implementation outputs fixed bilingual-style markdown; do not assume runtime language switching.
  8. Twitter KOL section (🔐 Security KOL Updates) appears only when tweets are fetched.
  9. Twitter fetch is silently skipped (no crash) when no credentials are present.

Twitter/X Configuration

Twitter KOL accounts are configured in ~/.sec-daily-digest/sources.yaml (auto-created on first run with 15 default security researchers).

Default KOL List

Taviso, GossiTheDog, SwiftOnSecurity, MalwareTechBlog, briankrebs, JohnLaTwC, and 9 others.

sources.yaml Format

sources:
  - id: taviso
    type: twitter
    name: "Tavis Ormandy / Google Project Zero"
    handle: taviso
    enabled: true
    priority: true
    topics:
      - security

  # Disable a default source:
  - id: thegrugq
    enabled: false

  # Add a new custom source:
  - id: myresearcher
    type: twitter
    name: "My Researcher"
    handle: myresearcher
    enabled: true
    priority: false
    topics:
      - security

Backend Selection

Env Var SetBackend Used
TWITTERAPI_IO_KEYtwitterapi.io (preferred, 5 QPS)
X_BEARER_TOKEN onlyOfficial Twitter API v2 (5 concurrent)
Bothtwitterapi.io
NeitherTwitter disabled (silent)
TWITTER_API_BACKEND=officialForce official API

Archive (Historical Dedup)

Articles seen in the past 7 days receive a −5 score penalty (not removed, just deprioritized). Archive files are stored in ~/.sec-daily-digest/archive/YYYY-MM-DD.json and automatically cleaned after 90 days.

Source Health Monitoring

Each run records fetch success/failure for every source. Sources failing >50% of checks (with ≥2 checks) appear in a ⚠️ Source Health Warnings section at the bottom of the digest. Health data lives in ~/.sec-daily-digest/health.json.

Email Delivery (gog)

The --email flag sends the digest via gogcli:

# Install (macOS)
brew install steipete/tap/gogcli
gog auth login   # one-time OAuth setup

# Send digest
bun scripts/sec-digest.ts --provider claude \
  --email me@example.com --output /tmp/digest.md

Log output:

[sec-digest] email=sent to me@example.com
# or
[sec-digest] email=failed: gog not found in PATH. Install: ...

Full Text Enrichment

--enrich fetches article full text before AI scoring (improves classification and summarization quality). Skips paywalled/social domains (Twitter, Reddit, GitHub, YouTube, NYT, Bloomberg, WSJ, FT).

cron Integration

# Daily at 07:00
0 7 * * * cd /path/to/sec-daily-digest && \
  bun scripts/sec-digest.ts --mode daily --output ~/digests/sec-$(date +\%Y\%m\%d).md \
  2>&1 | tee -a ~/.sec-daily-digest/cron.log

# Weekly on Monday at 08:00
0 8 * * 1 cd /path/to/sec-daily-digest && \
  bun scripts/sec-digest.ts --mode weekly --output ~/digests/weekly-$(date +\%Y\%m\%d).md \
  2>&1 | tee -a ~/.sec-daily-digest/cron.log

Common Mistakes

  1. Missing API key for selected provider (OPENAI_API_KEY is required, GEMINI_API_KEY is required, ANTHROPIC_API_KEY is required).
  2. Misreading fallback behavior: OPML fallback is cache-dependent, not unconditional.
  3. Forgetting --dry-run when no provider credentials are available.
  4. Expecting Twitter KOLs without setting TWITTERAPI_IO_KEY or X_BEARER_TOKEN.

Success Signals

  1. Logs include [sec-digest] provider=..., [sec-digest] cache_fallback=true|false, [sec-digest] output=..., and [sec-digest] stats feeds=... articles=... recent=... selected=... vuln_events=... twitter_kols=....
  2. Output markdown contains the three required sections and vulnerability references.
  3. ~/.sec-daily-digest/archive/YYYY-MM-DD.json is written after each run.
  4. ~/.sec-daily-digest/health.json is updated after each run.

More Detail

For full installation and extended usage notes, see README.md and README.zh-CN.md.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

77.17%
按下载量换算3,805

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills