用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/vsetchinfc/agistra.dev --skill scan-tst命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | scan-tst |
| description | Use when: analysing a project's test health — coverage, robustness, and CI integration. |
| argument-hint | Project directory or specific module to assess |
Evaluates whether the project has a functioning, proportionate test suite. Assigns a score from 0.0 to 1.0 across two dimensions.
Coverage ratio — Are enough source files tested?
Test script — Can the suite be run?
tst_score = (coverage_ratio + test_script) / 2
Edge case: if no test files exist at all, score is 0.0 and only one critical task is generated.
When test suite execution fails: If the test suite cannot be executed (missing dependencies, syntax errors, unavailable runtime), record this as a data gap rather than failure; note it in output and do not penalize the coverage score until the execution blocker is resolved.
Score interpretation:
| Finding | Priority |
|---|---|
| No test files at all | critical |
| Test file ratio < 50% | high |
| No scripts.test in package.json | high |
When performing a manual TST analysis:
Output: ratio score, list of untested modules ordered by risk, and specific edge cases missing from existing tests.