Loading...
Loading...
Set up and integrate BuildOver into any existing web project. BuildOver is an AI-powered dev tool that wraps a running web app with a floating chat widget via a reverse proxy — letting you ask Claude to modify source files in real-time with HMR. Use this skill when the user says /buildover-setup, asks to "add BuildOver to my project", "integrate BuildOver", "set up AI coding assistant on my dev server", or wants to connect BuildOver to their existing running application.
npx skill4agent add zimins/buildover buildover-setuplocalhost:<buildover-port>buildoverbuildoverbuildover devbuildover-serverbuildover-widgetbuildover --version 2>/dev/null || npx buildover --version 2>/dev/nullnpm install -g buildovernpm install --save-dev buildover
# pnpm add -D buildover / yarn add -D buildoverpackage.jsoncat package.json | grep -E '"dev"|"start"'30005173420080808000grep "ANTHROPIC_API_KEY" .env 2>/dev/null || echo "not set".envANTHROPIC_API_KEY=sk-ant-...The proxy and widget work without a key — only AI chat requires it.
# Global install:
buildover dev --target <target-port> --port <buildover-port>
# Local install:
npx buildover dev --target <target-port> --port <buildover-port>--port410010001buildover dev --target 3000 --port 10001
# → Open http://localhost:10001# Install (macOS)
brew install cloudflared
# Authenticate & create tunnel
cloudflared tunnel login
cloudflared tunnel create <tunnel-name>~/.cloudflared/config.ymltunnel: <tunnel-id>
credentials-file: /Users/<username>/.cloudflared/<tunnel-id>.json
ingress:
- hostname: your-subdomain.yourdomain.com
service: http://localhost:<buildover-port>
- service: http_status:404cloudflared tunnel run <tunnel-name>⚠ No authentication configuredhttp://localhost:<buildover-port>[Agent]| Issue | Fix |
|---|---|
| |
| Add |
| Chat sends but no code changes | Check server logs for |
| Widget not visible | Hard-refresh; check |
| HMR not working | Start the original dev server before BuildOver |