bug-report

仓库创建 2026年4月30日最近提交 3 天前SkillHot 收录 21 天前
▸ 精选理由

规范化 bug 报告和自动化分析,能显著提高修复效率。

这个 Skill 做什么

根据描述或代码分析生成结构化的 bug 报告,包含复现步骤与严重性评估。

把问题描述或代码文件转成结构化的 bug 报告,补全复现步骤、环境、重现流程和严重性评估,或者直接扫描代码找潜在缺陷。用于提交可复现的缺陷、评估优先级或验证修复是否生效。特点是强调可复现性与上下文,支持核实与关闭流程。

▸ 展开 SKILL.md 英文原文

Creates a structured bug report from a description, or analyzes code to identify potential bugs. Ensures every bug report has full reproduction steps, severity assessment, and context.

开发编程问题上报复现步骤代码分析通用
65
Stars
7
Forks
40
仓库内 Skill
+9
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/striderZA/OpenCodeGameStudios/master/.agents/skills/bug-report/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/striderZA/OpenCodeGameStudios/master/.agents/skills/bug-report/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
## Phase 1: Parse Arguments

Determine the mode from the argument:

- No keyword → **Description Mode**: generate a structured bug report from the provided description
- `analyze [path]` → **Analyze Mode**: read the target file(s) and identify potential bugs
- `verify [BUG-ID]` → **Verify Mode**: confirm a reported fix actually resolved the bug
- `close [BUG-ID]` → **Close Mode**: mark a verified bug as closed with resolution record

If no argument is provided, ask the user for a bug description before proceeding.

---

## Phase 2A: Description Mode

1. **Parse the description** for key information: what broke, when, how to reproduce it, and what the expected behavior is.

2. **Search the co
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有