Agent Skills
› opensquilla/opensquilla
› stack-trace-python-probe
stack-trace-python-probe
GitHub用于分析Python堆栈跟踪的辅助技能,执行根因检查、提供最小化pytest复现脚本及防御性补丁建议。
Trigger Scenarios
需要Python特定根因分析
生成pytest复现命令
确定补丁目标
Install
npx skills add opensquilla/opensquilla --skill stack-trace-python-probe -g -y
SKILL.md
Frontmatter
{
"name": "stack-trace-python-probe",
"provenance": {
"origin": "opensquilla-original",
"license": "Apache-2.0"
},
"description": "Internal helper for meta-stack-trace-investigator. Use when a Python traceback needs Python-specific root-cause checks, pytest reproducer guidance, and defensive patch targets.",
"user-invocable": false,
"disable-model-invocation": true
}
Stack Trace Python Probe
Return only:
LANGUAGE_PROBE: python
CHECKS:
- <exception contract or missing-key/None-handling check>
- <import/module/package boundary check if relevant>
REPRODUCER:
- <minimal pytest or python -c reproduction command/snippet>
PATCH_TARGETS:
- <guard clause / TypedDict / pydantic/schema validation / exception wrapping target>
VERIFY:
- <targeted pytest command or python syntax/import check>
Prefer pytest -k <symbol> and python -m pytest <path> shapes. Do not
recommend destructive commands.
Version History
- 7f72a32 Current 2026-07-05 18:40


