Agent Skills
› opensquilla/opensquilla
› stack-trace-go-probe
stack-trace-go-probe
GitHubGo语言堆栈追踪分析助手,用于检查空指针、错误返回及协程边界,生成最小化复现测试命令与补丁目标建议。
Trigger Scenarios
Go panic或堆栈追踪分析
需要Go特定的nil或错误检查
Install
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.
Version History
- 7f72a32 Current 2026-07-05 18:40


