This is a placeholder example — replace it with real writing in src/content/notes.ts.
Example: How I structure AI-assisted delivery in phases
AIWorkflow
This is an example note. It exists so you can see how a note is structured — a list of typed blocks: paragraphs, headings, code and lists. Replace the content in src/content/notes.ts with your own writing.
Why phases
Working with an AI agent in explicit phases (design system → layout → interactions → SEO) keeps every review small enough to actually review. Each phase ends in a commit you can inspect, run and reject.
- Phase boundaries force verification before new complexity arrives.
- Content lives in typed files, so copy edits never touch components.
- The human owns git push — nothing reaches production unreviewed.
git add -A
git commit -m 'Phase N: ...'
git push # the human step, on purpose