improve-ut
1
总安装量
1
周安装量
#51836
全站排名
安装命令
npx skills add https://github.com/mindfold-ai/trellis --skill improve-ut
Agent 安装分布
mcpjam
1
claude-code
1
replit
1
junie
1
zencoder
1
Skill 文档
Improve Unit Tests (UT)
Use this skill to improve test coverage after code changes.
Usage
$improve-ut
Source of Truth
Read and follow these specs first:
.trellis/spec/unit-test/index.md.trellis/spec/unit-test/conventions.md.trellis/spec/unit-test/integration-patterns.md.trellis/spec/unit-test/mock-strategies.md
If this skill conflicts with the unit-test specs, the specs win.
Execution Flow
- Inspect changed files:
git diff --name-only
- Decide test scope using unit-test specs:
- unit vs integration vs regression
- mock vs real filesystem flow
- Add/update tests using existing project test patterns
- Run validation:
pnpm lint
pnpm typecheck
pnpm test
- Summarize decisions, updates, and remaining test gaps.
Output Format
## UT Coverage Plan
- Changed areas: ...
- Test scope (unit/integration/regression): ...
## Test Updates
- Added: ...
- Updated: ...
## Validation
- pnpm lint: pass/fail
- pnpm typecheck: pass/fail
- pnpm test: pass/fail
## Gaps / Follow-ups
- <none or explicit rationale>