Utg
A collection of agent skills for Claude Code and 40+ other AI coding tools
npx -y skills add recrsn/agent-skills --skill utgAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Generate unit tests for the changed code in this branch
SKILL.md
0.9 KB, as published. Nobody here has run it
Check the diff against origin/main, and generate unit tests for the changed code
in this branch. Run git fetch origin to make sure git context is up-to-date.
Here is the list of files changed in this branch:
!git diff --stat origin/main
- Check existing test coverage for changed code; skip areas already well-covered
- Only generate tests for logic changes, not data structure or formatting changes
- Use the project's existing test framework and conventions
- Run the test suite with coverage after generating tests, and add more tests if coverage for changed code is low
Testing guidelines:
- Tests should be isolated — use mocks/stubs for external dependencies, but do not mock logging or telemetry
- Only test public API of modules/classes, not private/internal methods
- Follow existing test style and conventions in the codebase