一键导入
debug-assist
Intelligent debugging assistant — analyzes error messages, stack traces, logs, and runtime behavior to identify root causes and suggest fixes.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Intelligent debugging assistant — analyzes error messages, stack traces, logs, and runtime behavior to identify root causes and suggest fixes.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Handle typos and variations in brand/product names to discover correct terminology and find relevant information
Automated code review — analyzes source files for bugs, security issues, style violations, and improvement suggestions. Use when asked to review code, check quality, or find problems in files.
Generate documentation from source code — creates README, API docs, module summaries, and inline documentation. Use when asked to document code, generate docs, or explain a codebase.
Excel-based student grade analysis with percentage conversion, distribution charts, and detailed performance breakdown
Validate environment variables, dependencies, and system requirements. Diagnose missing configs, version mismatches, and setup issues.
Fast recursive file search — find files by name, extension, content, or size. Use for locating files in large codebases, finding references, or discovering project structure.
| name | debug-assist |
| description | Intelligent debugging assistant — analyzes error messages, stack traces, logs, and runtime behavior to identify root causes and suggest fixes. |
Analyze errors, stack traces, crash logs, and unexpected behavior to identify root causes and provide actionable fixes.
read_file at the error locationUse run_shell to gather diagnostic info:
# Check if a service is running
lsof -i :PORT
# Check file permissions
ls -la /path/to/file
# Check environment variables
env | grep RELEVANT_VAR
# Check disk space
df -h
# Check memory usage
top -l 1 | head -20
# Check recent logs
tail -100 /path/to/logfile
# Test network connectivity
curl -v http://host:port/health
## Root Cause
Clear one-sentence explanation of why the error occurs.
## Evidence
- Line X in file.rs: `code that causes the issue`
- Error message indicates: ...
- The variable `foo` is None because ...
## Fix
Concrete code change:
[code snippet]
## Prevention
How to prevent this class of error in the future.