Skip to main content
T2 chain · devops / dependency hygiene: mode: feed parses RSS/Atom natively, and the state-file pattern (read last run → diff → write next state) means you only hear about what’s new.

The job

« Did anything we depend on ship this week? » Checking releases pages is a robot’s job. This workflow reads the Atom feed, diffs it against what it saw last run (RFC 6902: empty patch means silence), digests only the new entries, and saves the state for next time. First run? The missing state file recovers to an empty list.

The shape

The file

release-radar.nika.yaml

How it works

1

feed mode does the parsing

mode: feed turns RSS/Atom into structured items: no scraping, no XML wrangling. The output: binding keeps just title/url/date.
2

State makes it incremental

previous reads the state file (recovering to [] on first run) · nika:json_diff against the fresh feed yields ONLY the new entries · save_state overwrites for next time.
3

Silence is the feature

The digest runs when: size(...) > 0: nothing new, no model call, no noise. Schedule it daily and forget it.

Constructs you just used

Make it yours

  • Watch N dependencies: lift the feed URL into a list and for_each the fetch (Competitor radar shows the leash).
  • Pipe breaking-change suspects into PR review fan-out’s reviewer prompt.
  • Swap the feed for your vendor’s changelog RSS. The shape doesn’t change.

Next · Resume screener

PII never leaves the machine: a local-model rubric per candidate, ranked deterministically.