install
source · Clone the upstream repo
git clone https://github.com/AICreator-Wind/gstack-openclaw-skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/AICreator-Wind/gstack-openclaw-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/investigate" ~/.claude/skills/aicreator-wind-gstack-openclaw-skills-investigate && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/AICreator-Wind/gstack-openclaw-skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/investigate" ~/.openclaw/skills/aicreator-wind-gstack-openclaw-skills-investigate && rm -rf "$T"
manifest:
investigate/SKILL.mdsource content
Investigate - 调试调查
转换自 gstack/investigate,专为 WorkBuddy/OpenClaw 优化
概述
系统化根因分析工具,帮助定位和解决复杂问题。
触发条件
当用户说以下内容时使用此技能:
- "debug this"
- "调查问题"
- "根本原因"
- "为什么失败"
- "troubleshoot"
调试流程
1. 问题定义
- 明确错误现象
- 收集环境信息
- 确定复现条件
2. 信息收集
- 日志分析
- 堆栈跟踪
- 监控数据
3. 假设形成
- 提出可能原因
- 设计验证实验
- 优先级排序
4. 验证测试
- 逐个验证假设
- 收集证据
- 排除干扰项
5. 根因确定
- 确认根本原因
- 理解影响范围
- 制定修复计划
6. 修复与验证
- 实施修复
- 验证问题解决
- 确认无回归
注意: 本技能是 gstack investigate 的 WorkBuddy/OpenClaw 适配版本。