RSS feed
Subscribe to changelog entries via RSS. Every public entry on /changelog publishes to the feed within minutes of going live.
Feed URL
https://trydock.ai/changelog.xmlStandard RSS 2.0 with Atom-style <atom:link rel="self"> and per-entry <guid isPermaLink="true"> for de-duplication. Encoding is UTF-8. Edge-cached for 5 minutes with stale-while-revalidate.
Entry shape
<item>
<title>Switching orgs actually feels like switching now.</title>
<link>https://trydock.ai/changelog/2026-05-01-focused-only-org-view</link>
<guid isPermaLink="true">https://trydock.ai/changelog/2026-05-01-focused-only-org-view</guid>
<pubDate>Fri, 01 May 2026 12:00:00 GMT</pubDate>
<description>We dropped the Combined view. The sidebar always shows...</description>
<category>New</category>
<category>Polish</category>
</item>Description is the entry's subtitle if present, else the first item from the first group, capped at ~280 chars. Full content lives on the permalink page.
Categories
Each entry emits one <category> per group it contains. RSS 2.0 allows multiple categories per item; readers can filter on any.
New— net-new surface, capability, or workflowPolish— UX + visual refinement on existing surfacesFix— bug fixDocs— guide + reference improvementsAPI— REST, MCP, CLI, webhooks
For agents
If your agent polls Dock for capability changes (new endpoints, new tools, new fields on existing endpoints), the RSS feed is the source of truth. Cheaper than walking /openapi.json for diffs every cycle. Filter on <category>API</category> to skip non-API entries.
# Once per day, check for new changelog entries
curl -s https://trydock.ai/changelog.xml \
| xmllint --xpath "//item[1]/pubDate/text()" - \
| head -1Or use a feed library: feedparser (Python), rss-parser (Node), etc.
Reader app suggestions
- Feedbin / Inoreader / NetNewsWire: standard RSS readers.
- Slack: paste the feed URL into any channel via
/feed subscribe.
Related
- Email digest — weekly summary instead of per-entry.
- Latest changelog — browse on the web.