CtrlK
BlogDocsLog inGet started
Tessl Logo

improve-ut

Analyzes changed files and improves test coverage using current frontend/backend quality guidelines and colocated project test patterns. Determines test scope (unit vs integration vs regression), adds or updates tests, and runs validation. Use when code changes need test coverage, after implementing a feature, after fixing a bug, or when test gaps are identified.

70

Quality

86%

Does it follow best practices?

Run evals on this skill

Adds up to 20 points to the overall score

View guide

SecuritybySnyk

Passed

No findings from the security scan

SKILL.md
Quality
Evals
Security

Improve Unit Tests (UT)

Use this skill to improve test coverage after code changes.

Usage

$improve-ut

Source of Truth

Discover the available package spec layers dynamically:

# Discover available packages and their spec layers
python3 ./.trellis/scripts/get_context.py --mode packages

This repository currently has frontend, backend, and guides layers rather than a dedicated unit-test/ layer. Read:

  • .trellis/spec/frontend/quality-guidelines.md for Vitest/frontend changes
  • .trellis/spec/backend/quality-guidelines.md for Rust/backend changes
  • existing colocated *.test.ts, *.test.tsx, and Rust module tests in the touched domain

If a package later introduces a dedicated test-spec layer, that package-local spec wins.


Execution Flow

  1. Inspect changed files:
    • git diff --name-only
  2. Decide test scope using the applicable quality spec and nearby test patterns:
    • unit vs integration vs regression
    • mock vs real filesystem flow
  3. Add/update tests using existing project test patterns
  4. Run validation:
npm run lint
npm run typecheck
npm run test
  1. Summarize decisions, updates, and remaining test gaps.

Output Format

## UT Coverage Plan
- Changed areas: ...
- Test scope (unit/integration/regression): ...

## Test Updates
- Added: ...
- Updated: ...

## Validation
- npm run lint: pass/fail
- npm run typecheck: pass/fail
- npm run test: pass/fail

## Gaps / Follow-ups
- <none or explicit rationale>
Repository
zhukunpenglinyutong/desktop-cc-gui
Last updated
First committed

Is this your skill?

If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.