BugPack - List Bugs
Query the BugPack local server to list all tracked bugs.
Instructions
- Call
GET http://localhost:3456/api/bugsto fetch all bugs.- Optional query param:
?project_id=<id>to filter by project.
- Optional query param:
- Parse the JSON response. Each bug has:
id,title,description,status,priority,project_id,created_at,updated_at. - Present the list in a readable table format, grouped by status (
open/fixed/closed). - If no bugs are found, tell the user there are no tracked bugs.
Example
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"
}
]
}