← Back to Skills Marketplace
162
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install bugpack-list-bugs
Description
List 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 f...
README (SKILL.md)
\r \r
BugPack - List Bugs\r
\r Query the BugPack local server to list all tracked bugs.\r \r
Instructions\r
\r
- Call
GET http://localhost:3456/api/bugsto fetch all bugs.\r- Optional query param:
?project_id=\x3Cid>to filter by project.\r
- Optional query param:
- Parse the JSON response. Each bug has:
id,title,description,status,priority,project_id,created_at,updated_at.\r - Present the list in a readable table format, grouped by status (
open/fixed/closed).\r - If no bugs are found, tell the user there are no tracked bugs.\r \r
Example\r
\r
GET http://localhost:3456/api/bugs\r
```\r
\r
Response:\r
\r
```json\r
{\r
"ok": true,\r
"data": [\r
{\r
"id": "abc-123",\r
"title": "Button click not working",\r
"status": "open",\r
"priority": "high",\r
"created_at": "2026-03-15T10:00:00Z"\r
}\r
]\r
}\r
```\r
Usage Guidance
This skill will make an HTTP GET to http://localhost:3456/api/bugs and display the returned JSON as a table. That is consistent with its purpose and it asks for no credentials or installs. Before using it, ensure you actually run a trusted BugPack server on port 3456 (otherwise requests will fail or hit an unexpected local service). If you are concerned about any agent making requests to localhost, restrict or review skill invocation settings — the skill will perform the network request when invoked.
Capability Analysis
Type: OpenClaw Skill
Name: bugpack-list-bugs
Version: 1.0.2
The skill bundle is a straightforward tool for listing bugs from a local BugPack server. It provides instructions for the agent to perform a GET request to a localhost endpoint (http://localhost:3456/api/bugs) and format the JSON response into a table. There are no signs of malicious intent, data exfiltration, or suspicious execution patterns in SKILL.md or _meta.json.
Capability Assessment
Purpose & Capability
Name and description match the instructions. The skill's declared purpose (listing bugs) legitimately requires an HTTP GET to a BugPack server; no unrelated credentials, binaries, or config paths are requested.
Instruction Scope
Runtime instructions are narrow and specific: call GET http://localhost:3456/api/bugs, parse JSON, and present results grouped by status. The instructions do not request reading files, other env vars, or sending data to external endpoints.
Install Mechanism
No install spec or code files are present (instruction-only), so nothing is written to disk or installed.
Credentials
No environment variables, credentials, or config paths are requested; the access requested (local HTTP endpoint) is proportional to the stated task.
Persistence & Privilege
Skill is not always-enabled and does not request elevated or persistent privileges. Autonomous invocation is allowed (platform default) but is not combined with other concerning privileges.
How to Use
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install bugpack-list-bugs - After installation, invoke the skill by name or use
/bugpack-list-bugs - Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.2
- Improved skill instructions and usage guidance in SKILL.md.
- Clarified when to use this skill and when to use related skills (bug viewing/fixing).
- Added step-by-step instructions and example API request/response.
- Ensured users are informed if no bugs are found.
- No changes to file structure or functionality described.
Metadata
Frequently Asked Questions
What is BugPack List Bugs?
List 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 f... It is an AI Agent Skill for Claude Code / OpenClaw, with 162 downloads so far.
How do I install BugPack List Bugs?
Run "/install bugpack-list-bugs" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is BugPack List Bugs free?
Yes, BugPack List Bugs is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does BugPack List Bugs support?
BugPack List Bugs is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created BugPack List Bugs?
It is built and maintained by duhuazhu (@duhuazhu); the current version is v1.0.2.
More Skills