cd /news/artificial-intelligence/26-repos-in-29-days-with-an-ai-pipel… · home topics artificial-intelligence article
[ARTICLE · art-56267] src=dev.to ↗ pub= topic=artificial-intelligence verified=true sentiment=· neutral

26 Repos in 29 Days With an AI Pipeline: What Actually Broke

A developer built 26 repositories, 1,549 commits, and 335 live pages in 29 days using an AI pipeline with Claude Code. The project revealed structural failure modes like SEO cannibalization and URL convention drift, rather than syntax or build errors. The developer emphasizes that the model optimizes individual pages but misses site-wide consistency, requiring pre-written conventions and automated audits.

read5 min views1 publishedJul 12, 2026

This was originally published on

[the LK Forge blog], where the commit chart is interactive and you can play the AI games it talks about.

Between June 5 and July 3, 2026, I took an empty domain to 26 repositories, 1,549 commits, and 335 live pages — one developer, working with Claude Code. The interesting part isn't the volume. It's which failure modes showed up, because none of them were the ones the AI-coding debate argues about.

| Repositories | 26 | | Days | 29 | | Commits | 1,549 | | Pages shipped | 335 |

Commit cadence: ~53/day average, peak 122 on June 20, exactly one zero-commit day in the sprint. The two heaviest days at the tail (114 each) were a site-wide URL-structure migration — which is itself one of the failure stories below.

Deliberately boring: one developer, Claude Code in the terminal, git for everything, static-first architecture. Games and tools are self-contained repos of vanilla HTML/CSS/JS; the hub site is Astro. Everything deploys to Cloudflare Workers with static assets at the edge — no backend, no database, nothing to babysit at 3am.

Every session ran the same loop: describe the goal, let the model plan and build, review the diff, make it verify its own work against the live site, commit. That verification step is what earns its keep — every failure below was caught by a check, not by luck.

Working classical-AI engines, first try or close. The 2048 solver is real expectimax search with a corner-snake heuristic and adaptive depth. Before publishing any performance number, I ran the exact production code through 250 headless self-play games: it reaches the 2048 tile in 69.6% of games at ~0.5ms per move. The tic-tac-toe opponent is minimax with alpha-beta; the pathfinding in Color Lines is BFS. Textbook algorithms, correctly implemented, shipped in days. That part of the hype is real.

Volume with consistency. 335 pages sharing one brand system, one URL convention, one schema pattern. Once a convention was written into a project memory file, the model applied it across dozens of pages without drift. Those memory files turned out to be the highest-leverage artifact in the whole pipeline.

Audits at a depth a human won't sustain. Full link-graph crawls, redirect-chain verification across hundreds of URLs, per-page canonical checks against live HTTP. The model does the 400-URL tedium without getting bored — which matters, because tedium is where site-wide bugs hide.

Not one failure was a syntax error, a broken build, or code that didn't run. Every real problem was structural — invisible in any single diff, only visible when you look at the whole system.

Asked for a word-tools hub, the pipeline built one — at /word-tools/

, while the existing tools lived under /tools/

. Two pages on the same domain targeting the same queries: textbook SEO cannibalization, self-inflicted. Search Console showed both URLs impressing for the same terms before I consolidated with a 301. Each page was locally correct; nobody was watching the query-level picture.

Lesson: the model optimizes the page you asked for, not the site you already have.

Some tools were built as flat files (page.html

), others as directories (page/index.html

). On Cloudflare's asset serving those get opposite trailing-slash behavior — so the site accumulated canonical mismatches, two-hop redirect chains, and Search Console redirect errors. The fix consumed the two biggest commit days of the sprint and produced a written URL convention plus a pre-deploy crawl checker that now gates every release.

Lesson: conventions the model must follow have to be written before repo #2, not after repo #20.

Game repos are mirrored into the hub site for deployment. Over weeks, SEO improvements were applied to the production mirror and never back-ported to source. The trap armed itself: the obvious "sync" — copy source over mirror — would have silently destroyed live metadata. It was caught only because a diff-before-copy check is now mandatory.

Lesson: any two copies of the same file will diverge, and the AI won't notice unless a check forces the comparison.

The first link-graph audit reported a wave of orphaned pages. False alarm: it compared absolute URLs against unresolved relative hrefs. A later canonical audit reported 123 mismatches — also false, because the checker assumed file paths equal serving paths, and the CDN serves clean URLs. In both cases the audit tooling — also AI-written — had the bug, and acting on its output would have "fixed" a healthy site into a broken one. Both caught the same way: probe the live site before believing static analysis.

Lesson: verify the verifier. An AI-written check inherits every blind spot of the AI that wrote it.

The sprint produced 44 working sessions and 826MB of transcripts. When I audited the token bill, the headline wasn't generation cost: roughly 93% of token consumption was cached context being re-read, turn after turn, inside marathon sessions that should have been split up.

The mechanics are mundane. A long session accumulates giant context; every subsequent turn re-reads it; a session that drifts across three unrelated tasks pays the full history of tasks one and two as a tax on task three. The model never complains, so nothing forces you to notice.

The fix cost nothing: clear context between tasks, keep durable knowledge in small memory files, treat "one session = one task" as the default. If you run an AI coding workflow and have never audited where the tokens actually go, that single check is probably worth more than any prompt engineering.

Over the last 28 days the site drew 207 clicks from 7,320 impressions across 257 pages with search data. For a domain about five weeks old, that's a normal, healthy trajectory — and nobody's growth-hack screenshot.

The detail worth reporting: the single biggest click-earner after the homepage is the 2048 game with the visible AI solver — the page where the most genuine engineering lives. Search demand followed the depth, not the page count. 300 thin pages didn't beat one page with something real on it.

Every one exists because its absence caused a real incident above. That's the only rule-making process that works.

The live version, the interactive commit chart, and the AI games are at lkforge.com. The 2048 solver writeup with the full benchmark is here.

── more in #artificial-intelligence 4 stories · sorted by recency
── more on @claude code 3 stories trending now
sponsored brought to you by zahid.host 4,200+ EU-deployed projects
reading about agents? ship yours in a single git push.

Run your AI side-project on zahid.host

EU-based hosting, git-push deploys, automatic HTTPS, no cold starts. Free tier with a custom domain — perfect for shipping the agent you just read about.

$git push zahid main
Live at https://your-agent.zahid.host
Get free account → Pricing
from €0/mo · no card required
LIVE [news/26-repos-in-29-days-…] indexed:0 read:5min 2026-07-12 ·