These pages document master, which is unreleased and in development. The Quick Start installs the latest stable release; anything newer than that tag is marked in the text.
Error Reporting Template
When reporting errors to the agent, use this structured format to minimize back-and-forth debugging cycles.
Quick Template
Section titled “Quick Template”**What I did**: [action that triggered the error]**What I expected**: [expected behavior]**What happened**: [actual behavior]**Error message**: [exact error text — just the relevant line, not the full stack trace]**Browser/terminal**: [where the error appeared]**URL**: [what page/route I was on]Example — Good Error Report
Section titled “Example — Good Error Report”**What I did**: Clicked "Create New" button in the dashboard**What I expected**: Form page to open**What happened**: Page crashed with a white screen**Error message**: "TypeError: Cannot read properties of undefined (reading 'map')"**Browser/terminal**: Browser console (Chrome)**URL**: /dashboard/items/newExample — Bad Error Report
Section titled “Example — Bad Error Report”It doesn't work. I get an error when I click the button.This requires multiple follow-up questions (which button? which page? what error? browser or terminal?), wasting time and context tokens.
Tips for Efficient Error Reporting
Section titled “Tips for Efficient Error Reporting”- Paste the specific error line, not the entire stack trace. The agent can ask for more context if needed.
- Include the URL/route — this tells the agent which component to look at.
- Mention where the error appeared — browser console vs terminal vs build output.
- If it’s a visual bug, describe what you see vs what you expected (“the hero image fills the entire viewport; I expected it to be half-height”).
- If the error is recurring, note which sessions/phases it appeared in before.
For the Agent
Section titled “For the Agent”When receiving an error report:
- Don’t guess. If the report is missing key information, ask for it before attempting a fix.
- Check the obvious first: Is the dependency installed? Is the config file present? Is the service running?
- If the same error has appeared before, check what fixed it last time before trying a new approach.
- Cap debugging at 10 exchanges. If the issue isn’t resolved after 10 back-and-forth messages, suggest starting a fresh session with a clean problem description.