Everything you need to get started with BuildFix, from initial setup to advanced features.
No Credit Card Required
BuildFix is completely free while we build our user base. You only pay for API usage to providers you already use (Anthropic, GitHub, Vercel).
BuildFix uses a BYOK (Bring Your Own Key) model. You'll need these API keys:
sk-ant-...)repo (full control of private repositories)ghp_...)Only needed if you want auto-healing for Vercel deployments
Keys are Encrypted
Your API keys are encrypted at rest with AES-256. BuildFix never shares your keys with anyone. You can revoke access anytime by rotating your keys in the provider's dashboard.
Navigate to Projects
Click "Projects" in the sidebar, then "Create New Project"
Enter Project Details
Connect Vercel (Optional)
If you're using Vercel, enter your Vercel Project ID for auto-healing
Create Project
Click "Create" - BuildFix will verify GitHub access and initialize your project
After creating your project, BuildFix automatically:
.metadev/knowledge/The Development page is where the magic happens. It's your AI-powered code generation interface.
Best for small, targeted changes to existing files:
Best for creating new files or major changes:
Auto-healing watches your Vercel deployments and automatically creates fix PRs when builds fail. It's like having a developer on call 24/7.
Example: You push code at 2 AM → Build fails → BuildFix detects it in <1 second → Analyzes the error → Creates a PR with the fix → All in ~12 seconds
Get Your Webhook URL
In BuildFix, go to your Project Settings → Webhooks
Copy the webhook URL (looks like: https://buildfix.dev/api/webhook/vercel)
Go to Vercel Project Settings
Open your project in Vercel Dashboard → Settings → Git → Deploy Hooks
Add Webhook
Test the Connection
Trigger a test event in Vercel to verify BuildFix receives it
Auto-Healing is Live!
From now on, whenever a Vercel deployment fails, BuildFix will automatically analyze it and create a fix PR. You'll get a notification and can review/merge the PR.
Your project's Knowledge Base contains all the patterns, rules, and conventions that make your code consistent. It lives in .metadev/knowledge/ in your repository.
patterns.json
Your coding conventions and patterns
mistakes.json
Documented errors and their fixes (auto-updated)
rules.json
Architectural rules and constraints
react-patterns.json
React-specific best practices
You can manage your Knowledge Base from the BuildFix interface:
mistakes.json fileThe Knowledge Base is what makes BuildFix get smarter over time. Every mistake it learns becomes a pattern it avoids. Your code stays consistent, and the same errors never happen twice.
Think of it as your project's institutional memory—the collective wisdom that normally lives in senior developers' heads, now documented and automated.
You now know everything you need to use BuildFix effectively.