Agent skill
consume-feed
Manage and run nightly ingestion of upstream feeds (RSS). GitHub and NVD support coming in Phase 2. Fetch updates, store summaries in ArangoDB, and integrate with Memory. Use this skill to "check for updates" or "add a new source" to the knowledge graph.
Stars
163
Forks
31
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/consume-feed
Metadata
Additional technical details for this skill
- short description
- Ingest RSS feeds into Memory
SKILL.md
Consume Feed Skill
A robust ingestion engine for upstream data sources.
Phase 1: RSS (Implemented)
- "Pull the feeds now" ->
./run.sh run --mode manual - "Add this RSS feed " ->
./run.sh sources add rss --url <url> - "Check feed ingest health" ->
./run.sh doctor
Phase 2: GitHub & NVD (Aspirational)
- "Add GitHub repo /" ->
sources add github --repo <owner>/<repo> - "Track NVD for " ->
sources add nvd --query <keyword>
Usage
Run Ingestion
bash
# Run nightly crawl (all sources, respect intervals)
./run.sh run --mode nightly
# Run specific source immediately
./run.sh run --source <key>
Manage Sources
bash
# List all
./run.sh sources list
# Add RSS
./run.sh sources add rss --url "https://github.blog/feed/"
Diagnosis & Initialization
bash
# Health check
./run.sh doctor
# Force initialize search views and indexes
./run.sh doctor --init
Resilience
- Uses exponential backoff and jitter for all network requests.
- Persists checkpoints (ETags, Timestamps) to resume efficiently.
- Reuses Memory skill connection for stable, shared database access.
Didn't find tool you were looking for?