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.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add grahama1970/agent-skills --skill consume-feed --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Consume Feed?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/grahama1970-consume-feed)More formats (shields.io, HTML) on the badges page.
---
name: consume-feed
description: >
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.
triggers:
- pull the feeds
- run feed ingest
- check upstream updates
- fetch nightly updates
- add rss feed
- check feed ingest health
metadata:
short-description: Ingest RSS feeds into Memory
provides:
- consume-feed
composes:
- memory
- arxiv
- ingest-book
- task-monitor
- agentic-evals
disciplines:
- data-engineering
---
> STOP. READ THIS ENTIRE SKILL.MD BEFORE CALLING ANY ENDPOINT.
# 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 <url>" -> `./run.sh sources add rss --url <url>`
- "Check feed ingest health" -> `./run.sh doctor`
## Phase 2: GitHub & NVD (Aspirational)
- "Add GitHub repo <owner>/<repo>" -> `sources add github --repo <owner>/<repo>`
- "Track NVD for <keyword>" -> `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.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!