/install bugpack-fix-bug
\r \r
BugPack - Fix Bug\r
\r Read bug context from BugPack, locate the relevant code, apply a fix, and mark the bug as fixed.\r \r
Instructions\r
\r
- Get bug context: Call
GET http://localhost:3456/api/bugs/:idto fetch full bug details including description, screenshots, environment, and related files.\r \r - Analyze the bug: Read the description and examine the screenshots to understand what is broken and what the expected behavior should be.\r \r
- Locate code: Use the
relatedFilesarray from the bug context to find the relevant source files. IfrelatedFilesis empty, use thepagePathanddescriptionto search the codebase.\r \r - Apply fix: Edit the source code to fix the described issue. Follow the project's existing code style and conventions.\r \r
- Mark as fixed: After applying the fix, call
PATCH http://localhost:3456/api/bugs/:idwith:\r{ "status": "fixed" }\r ```\r
\r
6. Add fix note (optional): Call PATCH http://localhost:3456/api/bugs/:id with a description update to document what was changed.\r
\r
Example\r
\r
# Step 1: Get bug context\r
GET http://localhost:3456/api/bugs/abc-123\r
\r
# Step 5: Mark as fixed\r
PATCH http://localhost:3456/api/bugs/abc-123\r
Content-Type: application/json\r
\r
{ "status": "fixed" }\r
```\r
\r
Response:\r
\r
```json\r
{\r
"ok": true,\r
"data": {\r
"id": "abc-123",\r
"status": "fixed"\r
}\r
}\r
```\r
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install bugpack-fix-bug - After installation, invoke the skill by name or use
/bugpack-fix-bug - Provide required inputs per the skill's parameter spec and get structured output
What is BugPack Fix Bug?
Fix a bug from BugPack by reading its context, locating code, applying fixes, and updating status. Use when: user asks to fix, repair, or resolve a bug. NOT... It is an AI Agent Skill for Claude Code / OpenClaw, with 180 downloads so far.
How do I install BugPack Fix Bug?
Run "/install bugpack-fix-bug" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is BugPack Fix Bug free?
Yes, BugPack Fix Bug is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does BugPack Fix Bug support?
BugPack Fix Bug is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created BugPack Fix Bug?
It is built and maintained by duhuazhu (@duhuazhu); the current version is v1.0.2.