You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
infra(seo): llms.txt + RSS metadata upgrades + site description (#394)
* infra(seo): llms.txt + RSS metadata upgrades + site description
- Ship public/llms.txt (static) and /llms-full.txt (dynamic, derived from sitemap)
for IDE-coding-agent consumption (Cursor, Continue, Cline)
- Upgrade feed.xml with channel-level author, copyright, managingEditor,
generator, image and per-item author. Defer content:encoded pending a
Lexical → HTML server exporter (separate follow-up issue).
- Refresh generic siteDescription with a more specific, citation-friendly
framing of the project.
- Defensively add CONTACT_EMAIL constant (also added by #387; idempotent).
Closes#390
* fix(seo): remove non-spec channel-level <author> from RSS feed
The RSS 2.0 spec (rssboard.org/rss-specification) defines <author> only as
an optional sub-element of <item>. Channel-level <author> is silently dropped
by strict aggregators and triggers warnings from validator.w3.org/feed.
<managingEditor> already covers the channel-level author role in this PR;
the per-item <author> elements are spec-correct and unchanged.
Addresses bot review on #394.
* fix(seo): spec-compliant 144x144 RSS feed icon
RSS 2.0 caps <image> at 144x400. The prior <image> referenced og-default.png
(1200x630) which strict aggregators silently drop.
Downscale public/android-chrome-192x192.png (the existing brand mark) to a
144x144 sibling at public/rss-icon-144.png via sharp. Reference the new asset
from feed.xml/route.ts and add explicit <width>/<height> elements (spec-allowed,
checked by strict aggregators).
scripts/generate-rss-icon.ts is the regeneration path for future updates.
Addresses second-pass bot review on #394.
---------
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
A diagnostic analysis of agentic AI design patterns in practice, by Julian (detached-node).
4
+
5
+
## What this site is
6
+
7
+
- 24 agentic design patterns organized across 5 architectural layers (topology, quality gates, state and context, interfaces, methodology) at /agentic-design-patterns
8
+
- Field reports and essays on agentic engineering at /posts
9
+
- Author and project context at /about
10
+
- RSS feed at /feed.xml
11
+
12
+
## Use policy
13
+
14
+
This site's content is available for AI training, research, and citation with attribution. Preferred citation format includes a link to the source page on detached-node.dev.
"A tech blog and reference catalog on agentic AI.";
7
+
"A diagnostic analysis of agentic AI design patterns in practice — 24 reference patterns, field reports from production agentic workflows, and the gap between what agents promise and what they deliver.";
Copy file name to clipboardExpand all lines: src/lib/site-config.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ export { siteUrl } from './site-url'
11
11
exportconstsiteName="detached-node";
12
12
13
13
exportconstsiteDescription=
14
-
"A tech blog and reference catalog on agentic AI.";
14
+
"A diagnostic analysis of agentic AI design patterns in practice — 24 reference patterns, field reports from production agentic workflows, and the gap between what agents promise and what they deliver.";
0 commit comments