惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Blog — PlanetScale
Blog — PlanetScale
J
Java Code Geeks
月光博客
月光博客
Engineering at Meta
Engineering at Meta
WordPress大学
WordPress大学
Jina AI
Jina AI
小众软件
小众软件
U
Unit 42
云风的 BLOG
云风的 BLOG
Stack Overflow Blog
Stack Overflow Blog
雷峰网
雷峰网
博客园 - Franky
Microsoft Security Blog
Microsoft Security Blog
罗磊的独立博客
宝玉的分享
宝玉的分享
B
Blog
C
Check Point Blog
爱范儿
爱范儿
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
量子位
阮一峰的网络日志
阮一峰的网络日志
Vercel News
Vercel News
酷 壳 – CoolShell
酷 壳 – CoolShell

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
From Template to Production-Shaped: An AI-Native Dev Flow...
Kan-Chen Lin · 2026-05-26 · via DEV Community

Kan-Chen Lin

I wanted my next side project to look like the kind of code I'd ship at work — hexagonal architecture, sqlc, depguard, integration tests — without the usual side-project tax of spending three evenings on scaffolding before writing the first line of domain logic. So I built it twice. First, I forked a Go backend template I'd been hardening for months. Then I drove every feature on top of it through a structured AI workflow I call qrspi: question → research → structure → plan → implement.

The product itself is unremarkable on purpose: a QR code generator. Paste a URL, get back a scannable PNG and a /r/:token redirect, with per-link scan counts and a soft-delete kill switch. The interesting part — the part I'd want a reviewer to look at — is the process that produced it.

Repo: linkc0829/go-qrcode-generator. Every artifact mentioned in this post is committed there.

Step 1: Choose the template, then commit to its rules

Step zero was actually choosing what to build on. I shortlisted several Go backend templates, walked through each one with Claude to pressure-test the architecture, and landed on the one I'd been hardening for a while: linkc0829/go-backend-template.

The template is a feature-first hexagonal Go backend. Each feature lives in a single package under internal/<feature>/, and inside that package, domain.go, service.go, ports.go, and the adapters sit side-by-side as separate files. The Go package boundary is the hexagon edge.

What makes it stick is depguard in .golangci.yml. The build fails if:

  • domain.go imports anything beyond stdlib and shared value objects
  • service.go reaches for a driver or web framework
  • handler_*.go touches a repo or cache directly
  • one feature imports another feature

That last rule is the one that pays the most rent. Cross-feature dependencies are forced through capability ports — feature A defines an interface named after the capability it needs, and the composition root in internal/bootstrap/wire.go injects feature B's service to satisfy it. The features never know about each other.

This was the first decision I had to actually live with. The template ships with demo user, order, and payment slices. My project has no orders and no payments. The rule is: don't leave dead code as "future scaffolding." Delete the whole slice — the package, the wire block, the SQL queries, the migration tables, the OpenAPI paths, the depguard block. make lint && make test after each removal flushes out dangling references. By the time I started writing QR code logic, the repo only knew about things that existed.

Step 2: Build the spec from a real system-design prompt

The functional spec came from a system-design exercise I'd worked through separately:

  • Generate a QR code from a URL
  • 302 redirect through our server on every scan (so we can count, and so we can kill a link)
  • Targets: redirect latency < 100 ms, 1B codes, 100M users

The high-level design called out the load shape — read-heavy, one write to thousands of reads — and the levers that fall out of it: stateless API behind a gateway, cache qr_token → image_url, CDN the PNGs, index on qr_token. Tokens were originally specified as base62(SHA-256(url + user_secret)).

For the local build, I wrote down explicit deviations from the spec rather than pretending they didn't exist:

  • Tokens use 96-bit crypto/randbase64url. Loses idempotency for repeated (user, url) pairs but avoids the deterministic-token leak surface.
  • The CDN tier is dropped. The browser fetches PNGs directly from MinIO using its anonymous download bucket policy. Same architectural shape as S3+CloudFront, minus the edge cache.
  • Soft delete and PUT/DELETE endpoints land in a later slice.

Writing the deviations down up front is the part that makes the design honest. It's also the part that makes a portfolio reviewer's job easier — they can see what was traded and why, not just what got built.

Step 3: qrspi — the workflow that does the actual building

The workflow idea started from Research-Plan-Implement (RPI). QRSPI is an 8-phase extension of it that I picked up from community discussions and adapted for this project.

Once the spec was on paper, every feature went through the same eight phases. Each phase is a slash command backed by a skill, and each one writes its artifact to thoughts/qrspi/<date>-<slug>/:

  1. /qrspi:1_question — decompose the ticket into neutral research questions. No opinions yet.
  2. /qrspi:2_research — answer the questions by reading the codebase. Facts only.
  3. /qrspi:3_design — discuss where we're going before how. Trade-offs surface here.
  4. /qrspi:4_structure — outline vertical slices with test checkpoints.
  5. /qrspi:5_plan — the tactical implementation plan; my working document.
  6. /qrspi:6_worktree — isolated git worktree so the main checkout stays clean.
  7. /qrspi:7_implement — execute the plan phase by phase, verifying at each checkpoint.
  8. /qrspi:8_pr — open a PR that carries the design context forward into review.

The MinIO feature shows the whole thing on disk: a ticket.md pulled from the Notion source via MCP, then questions.md, research.md, design.md, structure.md, and plan.md. Each one builds on the last. By the time implementation starts, the agent isn't guessing — it's executing a plan I already agreed with.

The follow-up Redis redirect cache shipped the same way. The plan called out the read-heavy shape, picked a write-behind click-count buffer to avoid hammering Postgres on every scan, and named the cache invariants explicitly. The implementation was almost mechanical because the design phase had already resolved the interesting questions.

What this buys, and what it costs

The cost is real: each feature carries five or six markdown files of design artifacts. For a single-developer side project, that's overhead I wouldn't tolerate in a freeform sketch.

What it buys:

  • The diff is reviewable. Every commit is small, scoped, and traceable back to a design decision.
  • The architecture holds. depguard catches the slow-drift violations (handler reaches into a repo, feature A imports feature B) the moment they appear, not three months later.
  • The agent stays useful past 2,000 LOC. Most AI-coding flows degrade as the codebase grows because the model loses the plot. Writing the plot down — in design.md, in plan.md — keeps the next session grounded.
  • The portfolio story is the process, not the artifact. Anyone can ship a QR code generator. Shipping one where the architecture, the trade-offs, and the deviations from spec are all written down on disk is a different signal.

The template is on GitHub; the qrspi artifacts are committed alongside the code. If you want to see how a single feature flows from ticket to PR, the MinIO slice is the cleanest example. The architecture ADRs in docs/adr/ cover the two foundational decisions: feature-first hexagonal, and sqlc over an ORM.

Next up: a metrics slice (Prometheus + a Grafana dashboard for redirect latency), and a proper deletion follow-up so the spec's full CRUD surface lands. Both will go through qrspi. That's the point.