Astro, WordPress, and AI workflows.

Building hybrid WordPress + Astro front ends and AI-assisted workflows

Practical notes on converting heavy WordPress sites into faster Astro front ends, using Valet for local development, and testing new ways to work with Claude, Codex, Fireworks, Kimi, MiniMax, and local models.

Built for modern migration work

Sharing the patterns, tradeoffs, and practical decisions behind hybrid WordPress and Astro builds, plus the AI tools that actually help day to day.

Hybrid front ends

Astro as the fast layer on top of WordPress

AI-assisted development

Claude, Codex, and model comparisons that inform real work

Practical workflows

Valet, Zed, Ghostty, and tools that keep the loop fast

// Astro fetching WordPress content for a hybrid front end
---
const WORDPRESS_API = 'https://example.com/wp-json/wp/v2/posts';

const posts = await fetch(WORDPRESS_API).then((res) => res.json());
---

<div class="grid gap-6">
  {posts.slice(0, 5).map((post) => (
    <a href={`/blog/${post.slug}`} class="rounded-lg border p-4">
      <h3>{post.title.rendered}</h3>
      <p>{post.excerpt.rendered}</p>
    </a>
  ))}
</div>
Latest from the blog

Thoughts without barriers

Instantly dive into my latest posts, connect with real experiences, and build knowledge with flexible, future-ready insights—no fluff holding you back.

Code of the week

AI tooling and stack experiments

Notes from trying new coding assistants, local models, prompt patterns, and orchestration tools. Some experiments stick, some don’t, but the useful ones end up here.

  • LLM comparisons that matter
  • Practical migration patterns
  • Useful local workflows
  • Smarter article generation
// Claude-generated article draft workflow
name: Draft article with Claude

on:
  workflow_dispatch:

jobs:
  draft:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - name: Generate outline
        run: node scripts/generate-blog.js

      - name: Review and refine
        run: echo "Edit the draft, then publish once the structure and examples are solid."
→ AI-assisted drafting before manual review and publication