atproto utils for zig zat.dev
atproto sdk zig
26
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix devlog publication url to match site.standard semantics

publication.url + document.path must equal the actual served URL.
changed devlog url from https://zat.dev/devlog to https://zat.dev
and path from /001 to /devlog/001.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

zzstoatzz 31e8bd85 d2afef35

+2 -2
+2 -2
scripts/publish-docs.zig
··· 14 14 15 15 /// devlog entries 16 16 const devlog = [_]DocEntry{ 17 - .{ .path = "/001", .file = "devlog/001-self-publishing-docs.md" }, 17 + .{ .path = "/devlog/001", .file = "devlog/001-self-publishing-docs.md" }, 18 18 }; 19 19 20 20 pub fn main() !void { ··· 87 87 // devlog publication (clock_id 100 to separate from docs) 88 88 const devlog_tid = zat.Tid.fromTimestamp(1704067200000000, 100); 89 89 const devlog_pub = Publication{ 90 - .url = "https://zat.dev/devlog", 90 + .url = "https://zat.dev", 91 91 .name = "zat devlog", 92 92 .description = "building zat in public", 93 93 };