Install
openclaw skills install bugpackBugPack - AI-powered bug tracking and fixing toolkit. List bugs, view bug details with screenshots, and fix bugs automatically. Includes three workflows: list-bugs, view-bug, fix-bug. Requires BugPack server running locally.
openclaw skills install bugpackAI-powered bug tracking and fixing toolkit. List, view, and fix bugs from BugPack.
Start BugPack server first:
npx bugpack-mcp
Query all tracked bugs with optional filtering.
GET http://localhost:3456/api/bugs to fetch all bugs.
?project_id=<id> to filter by project.id, title, description, status, priority, project_id, created_at.pending / fixed / closed).GET http://localhost:3456/api/bugs
Fetch full bug context including screenshots, environment, and related files.
GET http://localhost:3456/api/bugs/:id for full details.title, description, status, priority, pagePath, device, browser, relatedFiles, screenshots.relatedFiles to locate relevant source code.original_path and annotated_path.GET http://localhost:3456/api/bugs/abc-123
Read bug context, locate code, apply fix, and update status.
GET http://localhost:3456/api/bugs/:idrelatedFiles or search by pagePath and description.PATCH http://localhost:3456/api/bugs/:id with { "status": "fixed" }# Get bug context
GET http://localhost:3456/api/bugs/abc-123
# Mark as fixed
PATCH http://localhost:3456/api/bugs/abc-123
Content-Type: application/json
{ "status": "fixed" }