Project: demo-blog-engine · Branch: feat/feeds · Mode: default · Model: claude-sonnet-4-6 Summary Emitted public/rss.xml and public/sitemap.xml during the build. Both are pure string templates — no XML library needed — escaped via a tiny xml_escape helper. Added the feed URL to the of every post page. Conversation Turn 1 — User Add RSS 2.0 + sitemap.xml generation. Keep dependencies light. Turn 1 — Assistant Wrote src/feeds.rs with two functions: - build_rss(posts: &[Post]) -> String - build_sitemap(posts: &[Post], base_url: &str) -> String Both return strings which main.rs writes to public/. Escaping goes through a tiny xml_escape function that handles <, >, &, ", '. Tools used in this turn: - Write: src/feeds.rs (5-line preview) - Edit: src/main.rs — added feeds::build_rss call - Bash: cargo test — exit 0 Turn 2 — User Ship it. Turn 2 — Assistant Committed. Added to the post template. Tools used in this turn: - Write: templates/post.html (5-line preview) Connections - demo-blog-engine — project - RSS — concept - Sitemap — concept