Agent Skills
› opensquilla/opensquilla
› stack-trace-go-probe
stack-trace-go-probe
GitHub用于分析Go语言panic或堆栈跟踪的内部辅助技能,提供空指针/错误检查、测试复现命令及补丁目标建议。
触发场景
需要分析Go程序崩溃堆栈
需要生成Go单元测试复现用例
需要定位Go代码中的潜在风险点
安装
npx skills add opensquilla/opensquilla --skill stack-trace-go-probe -g -y
SKILL.md
Frontmatter
{
"name": "stack-trace-go-probe",
"provenance": {
"origin": "opensquilla-original",
"license": "Apache-2.0"
},
"description": "Internal helper for meta-stack-trace-investigator. Use when a Go panic or stack trace needs Go-specific nil\/error checks, go test reproducer guidance, and patch targets.",
"user-invocable": false,
"disable-model-invocation": true
}
Stack Trace Go Probe
Return only:
LANGUAGE_PROBE: go
CHECKS:
- <nil pointer / error-return / goroutine boundary check>
- <package or interface contract check>
REPRODUCER:
- <minimal go test ./... -run <Name> command or snippet>
PATCH_TARGETS:
- <nil guard / explicit error handling / interface assertion target>
VERIFY:
- <go test command>
Prefer narrow go test ./path -run TestName commands when the trace exposes a
package or symbol. Do not suggest mutating production state.
版本历史
- 7f72a32 当前 2026-07-05 18:40


