Describe a site in natural language and Linopress provisions a fresh stack, builds content with AI tools, validates it, and exports a portable bundle.
Linopress orchestrates every step of site creation — from provisioning to content building to validation — so you get a production-ready bundle without touching WordPress manually.
Spins up a fresh, isolated WordPress stack in seconds. Each site gets its own environment.
linopress provision my-site --port 8080
Translates your natural language prompt into a SiteSpec, then uses agentic tools to build pages, menus, and content.
linopress build yoga-studio --prompt "..."
Runs visual QA cycles with screenshot-based review. Self-healing loops fix issues automatically.
linopress build ... --review --browser
Packages the finished site into a portable bundle you can deploy anywhere. No vendor lock-in.
linopress destroy my-site
The selfimprove command runs an autonomous improvement loop against a live site. Turn up the creativeness dial from 1 to 5 — or go full --aggressive for maximum iteration.
# Improve an existing site
linopress selfimprove --site yoga-studio
# Go all out
linopress selfimprove --site yoga-studio --creativeness 5
# Shorthand for maximum creativity
linopress selfimprove --site yoga-studio --aggressive
provision <site-id>Spin up a fresh WordPress stackbuild <site-id>Build site content from a prompt or specstart <site-id>Start a stopped site stackstop <site-id>Stop a running site stackdestroy <site-id>Tear down and remove a siteselfimproveRun autonomous improvement loop--prompt "..."Generate a SiteSpec from natural language--spec path.jsonUse a SiteSpec JSON directly--port 8080Port to expose WordPress--browserEnable browser container for visual validation--reviewEnable visual QA review cycles--review-cycles NLimit review iterations (default 2)--heal-cycles NLimit self-healing iterations (default 2)--yoloRelax safety checks for faster iteration--timeout msGlobal build timeout in millisecondslinopress build yoga-studio \
--prompt "Create a modern yoga studio website
with pricing, schedule, testimonials,
and contact form" \
--port 8080 \
--browser
linopress build book-author \
--prompt "Create a playful children's book
author site" \
--review \
--review-cycles 2 \
--browser
linopress build yoga-studio \
--spec ./site-spec.json \
--port 8080
linopress selfimprove \
--site yoga-studio \
--creativeness 5
Linopress is MIT-licensed and developed in the open. Contributions, issues, and ideas are welcome.
finger-gun/linopress