parsing-changelogs
Installation
SKILL.md
Parsing Changelogs
How the Releases fetch pipeline converts changelog pages into structured release data.
Pipeline Overview
The fetch pipeline follows this priority order:
- Feed adapter — if the source has a known feed URL (in
metadata.feedUrl), fetch and parse the feed directly. Fastest and most reliable. - Markdown fetch — if
metadata.markdownUrlis set, fetch raw markdown instead of rendered HTML. - Fast fetch (static providers) — for providers known to serve pre-rendered HTML (Docusaurus, VitePress, WordPress, Ghost, Mintlify), fetch without headless browser rendering. Uses Cloudflare crawl API with
render: false. ~10-30x faster than full rendering. Controlled by providerstaticContenthint or per-sourcerenderRequiredmetadata. - Cloudflare rendering — for JS-heavy pages (React SPAs, Notion, etc.), use Cloudflare's browser rendering API to get the fully-rendered HTML. Fallback when fast fetch returns no content.
After fetching content, the pipeline parses it:
- Incremental parsing — if the source already has releases in the database, extract only new ones by comparing against known releases. This is the default for subsequent fetches.
- Bulk parsing — parse the entire page into releases. Used on first fetch or when
--fullis specified.