Install
openclaw skills install bugpack-list-bugsList all tracked bugs from BugPack with status and project filtering. Use when: user asks about bugs, pending issues, bug lists, or wants to see what needs fixing. NOT for: viewing detailed bug context (use bugpack-view-bug) or fixing bugs (use bugpack-fix-bug).
openclaw skills install bugpack-list-bugsQuery the BugPack local server to list all tracked bugs.
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, updated_at.open / fixed / closed).GET http://localhost:3456/api/bugs
Response:
{
"ok": true,
"data": [
{
"id": "abc-123",
"title": "Button click not working",
"status": "open",
"priority": "high",
"created_at": "2026-03-15T10:00:00Z"
}
]
}