Skills danish-news-aggregator

install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/broedkrummen/danish-news-aggregator" ~/.claude/skills/openclaw-skills-danish-news-aggregator && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/broedkrummen/danish-news-aggregator" ~/.openclaw/skills/openclaw-skills-danish-news-aggregator && rm -rf "$T"
manifest: skills/broedkrummen/danish-news-aggregator/SKILL.md
source content

Danish News Aggregator Skill

Aggregates 100+ Danish RSS feeds into category-based unified RSS feeds.

Quick Start

# Install dependencies
pip install feedparser python-dateutil

# Run aggregator
python3 aggregator.py

# Output feeds in output/ directory
ls output/

Configuration

Edit

feeds.json
to customize which feeds to include:

{
  "refresh_interval": 900,  // seconds (15 min)
  "max_items_per_feed": 50,
  "deduplicate": true,
  "feeds": {
    "national": ["https://..."],
    "sports": ["https://..."]
  }
}

Output Feeds

FeedDescriptionSources
danish-all.xml
All news combinedTop 30
danish-national.xml
DR, Berlingske, Politiken8
danish-regional.xml
Nordjyske, Fyens, etc5
danish-sports.xml
Bold, Tipsbladet, TV2 Sport8
danish-business.xml
Finans, Nationalbanken6
danish-tech.xml
Version2, Ingeniøren10
danish-english.xml
The Local, CPH Post5

Features

  • ✅ Category-based feeds
  • ✅ Deduplication (same article from multiple sources)
  • ✅ Source authority ranking (DR > major newspapers > regional)
  • ✅ Time filtering (last 24h by default)
  • ✅ RSS 2.0 compliant
  • ✅ UTF-8 encoding
  • ✅ Auto-refresh (15 min interval)
  • ✅ Media RSS extensions for images

Hosting

Self-Host (Docker)

docker build -t danish-news-aggregator .
docker run -d -p 8080:8080 danish-news-aggregator

Cron Job

# Add to crontab
*/15 * * * * cd /path/to/aggregator && python3 aggregator.py

Subscribe

Add these URLs to your RSS reader:

Credits

Aggregates from: DR, Berlingske, Politiken, Information, Nordjyske, Fyens, JydskeVestkysten, Bold.dk, Tipsbladet, TV2 Sport, Finans, Nationalbanken, Version2, Ingeniøren, Computerworld, The Local Denmark, The Copenhagen Post, and many more.


Danish News Aggregator v1.0 - Built by Nexus Orchestrator