用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/bobmatnyc/claude-mpm --skill auto-bug-reporter命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
MCP (Model Context Protocol) - Build AI-native servers with tools, resources, and prompts. TypeScript/Python SDKs for Claude Desktop integration.
Model Context Protocol (MCP) server build and evaluation guide, including local conventions for tool surfaces, config, and testing
Control monitoring server and dashboard
基于 SOC 职业分类
正在显示 SKILL.md
| name | auto-bug-reporter |
| version | 1.0.0 |
| description | Automatically file GitHub issues when claude-mpm errors are encountered during a session |
| when_to_use | Import errors, hook failures, CLI errors, MCP tool errors, test failures in claude-mpm |
| category | pm-workflow |
| tags | ["bug-reporting","github","issues","auto-report","claude-mpm"] |
| effort | low |
Automatically file GitHub issues when you encounter errors, crashes, or unexpected behavior in claude-mpm during a session.
File an issue automatically when you encounter ANY of the following:
ModuleNotFoundError, ImportError from claude-mpm source paths)mcp-ticketer, mpm-messaging, mcp-vector-search when used within claude-mpm context)claude-mpm commands (e.g., claude-mpm init, claude-mpm run, claude-mpm doctor).claude/settings.jsonUse the mcp__github__create_issue tool:
bobmatnycclaude-mpm["bug", "auto-reported"]auto: <brief description of error>## Auto-Reported Bug
**Encountered during**: <what the user was doing when the error occurred>
**Error**: <exact error message or traceback>
**File**: <file path and line number if known>
**Version**: <claude-mpm version if known — run `claude-mpm --version` or check pyproject.toml>
## Reproduction
<steps or context that led to the error>
## Severity
- [ ] Blocking (prevents core functionality)
- [ ] Degraded (workaround exists)
- [ ] Cosmetic (no functional impact)
_Filed automatically by claude-mpm auto-bug-reporter_
Detect the error — identify it matches a trigger condition above.
Search for duplicates first using mcp__github__search_issues:
repo:bobmatnyc/claude-mpm is:issue <key error terms>
If a matching open issue already exists, skip filing and note the existing issue number.
Gather context:
pyproject.toml or uv run claude-mpm --version)File the issue using mcp__github__create_issue with owner bobmatnyc, repo claude-mpm, the title and body from the template above, and labels ["bug", "auto-reported"].
Tell the user immediately after filing:
Filed auto-bug-report: #<issue_number> — <title>
Continue the user's task — do not stop or wait. The issue is filed; move on.
| Error Type | Severity |
|---|---|
| Agent or hook completely non-functional | Blocking |
| CLI command fails with traceback | Blocking |
| MCP tool errors breaking workflow | Blocking |
| Config error with a manual workaround | Degraded |
| Incorrect output, wrong behavior | Degraded |
| Minor display or formatting glitch | Cosmetic |
Title: auto: ModuleNotFoundError for claude_mpm.hooks.stop_hook
Body:
## Auto-Reported Bug
**Encountered during**: Running `claude-mpm run` with a custom stop hook configured
**Error**: `ModuleNotFoundError: No module named 'claude_mpm.hooks.stop_hook'`
**File**: `src/claude_mpm/hooks/stop_hook.py` (missing)
**Version**: 6.2.5
## Reproduction
1. Configure a stop hook in `.claude/settings.json`
2. Run `claude-mpm run`
3. At session end, hook dispatch fails with ModuleNotFoundError
## Severity
- [x] Blocking (prevents core functionality)
_Filed automatically by claude-mpm auto-bug-reporter_
mpm-bug-reporting — Manual PM-driven bug reporting with routing to multiple reposmpm-verification-protocols — QA evidence standardsmpm-doctor — Diagnosing claude-mpm environment issues