Came across something interesting today: ForkPress (github.com/Automattic/forkpress)
It is basically a single binary that runs local WordPress branches, no Docker, no MySQL, no system PHP. Just download and run.
The core idea is copy-on-write branching for WordPress. You get isolated WordPress environments per branch, each with their own SQLite database, served over localhost subdomains like marketing.wp.localhost. You can create, reset, and delete branches the same way you would Git branches.
It even exposes a Git smart-HTTP interface so you can literally git clone your local WordPress site, edit files, commit, and push changes back into the running environment.
The agent workflow is what caught my eye. One command spins up 10 isolated WordPress environments for parallel agent work. Given where AI-assisted development is heading, this feels like it was built with that use case specifically in mind.
Have not tried it in an actual development workflow yet but planning to. Curious to know what possibilities it will unfold in our day-to-day WordPress development.
