Editorial
Ren Okabe3 min read29 views

Publication Dates Corrected on Four Early AgentNotebook Tutorials

Four launch-week tutorials carried a stored publication timestamp that predated the registration of agentnotebook.dev. The timestamps are corrected, the tutorial text is unchanged, and the check is one you can run yourself.

Isometric line illustration of a timeline rail with four node markers, one shifted forward, on a black background with an electric blue accent
Isometric line illustration of a timeline rail with four node markers, one shifted forward, on a black background with an electric blue accent
On this page

Four tutorials published in the first week of agentnotebook.dev carried a stored publication timestamp that predated the site itself. The timestamps have been corrected. No tutorial text, code sample or source citation changed.

What was wrong

agentnotebook.dev was registered on June 16, 2026 at 15:24:16 UTC. That is a matter of public record in the domain's RDAP registration event, which anyone can retrieve without credentials. Four tutorials in the launch set were stamped with published_at values between May 28, 2026 and June 16, 2026 at 09:00 UTC, so all four claimed a publication date at a moment when the domain did not resolve.

Those values were not typos. They came out of the initial content import, which wrote a back-dated schedule onto a batch of records created on June 18, 2026. The stamps then propagated into two crawler-visible surfaces: the datePublished field of the Article JSON-LD block on each tutorial page, and the rendered byline date.

The corrections

Scroll to see more

TutorialStored date, beforeCorrected date
Agent eval metrics that catch regressionsMay 28, 2026June 17, 2026
Write your first MCP server for ClaudeJune 4, 2026June 18, 2026
Add an AI agent to an existing SaaSJune 10, 2026June 18, 2026
Build your first AI agent from scratchJune 16, 2026, 09:00 UTCJune 19, 2026

Each corrected timestamp sits after the domain's registration, preserves the original relative ordering of the four tutorials, and falls inside the window in which the records actually existed. Each of the four pages now carries a dated editorial note saying the same thing at the foot of the article.

How the check works, if you want to run it yourself

The test is two lookups and a comparison, and it needs nothing but a browser.

  1. Fetch the domain's registration event: https://rdap.org/domain/agentnotebook.dev, then read the entry in events where eventAction is registration. The RDAP protocol is specified in RFC 9083 (IETF, 2021).
  2. Read the datePublished value out of the Article JSON-LD on any article page. The field is defined by schema.org/datePublished and is the value Google reads for article freshness, per its Article structured data documentation (2026).
  3. If the first value is later than the second, the page is claiming a date that cannot be true.

We now run this as a standing check on every article, on every property we publish, rather than as a one-off.

Limitations

The corrected dates are not recovered from a publication log, because no publication log exists for the import. They are the earliest defensible timestamps consistent with three constraints: after the domain existed, within the window the records were created, and in the original order. That is a narrower claim than "this is the day it went up", and it is the strongest claim the surviving evidence supports.

This notice covers published_at only for these four tutorials. It does not restate or revise any technical content in them. Where a tutorial's own text names a date for a model release, an SDK version or a benchmark, that date was sourced separately and is unaffected by this correction.

R

Written by

Ren Okabe

Frequently asked questions

Which agentnotebook.dev tutorials had their publication date corrected?

Four: agent-eval-metrics-catch-regressions, write-first-mcp-server-claude, add-ai-agent-to-existing-saas, and build-first-ai-agent-from-scratch. All four were part of the launch import.

Did the tutorial content change?

No. Only the published_at timestamp changed, plus a dated editorial note appended to the foot of each of the four pages. The instructions, code samples and source citations are byte for byte what they were.

Why did the dates predate the domain?

The initial content import wrote a back-dated publishing schedule onto records that were created on June 18, 2026, two days after agentnotebook.dev was registered on June 16, 2026. The back-dated values then flowed into the Article JSON-LD and the rendered byline.

How can I verify the correction myself?

Fetch https://rdap.org/domain/agentnotebook.dev and read the registration event date, then read datePublished out of the Article JSON-LD on any tutorial page. Every published date should be later than the registration timestamp.