My collection of Agent Skills.
An agent skill that evaluates, scores, and compares multiple git branches against a reference implementation plan. It recommends a winner and provides guidance on integrating the best parts of losing branches.
| Dimension | Weight | Focus |
|---|---|---|
| Correctness | 45% | Requirement coverage, bug-free, edge cases |
| Test Quality | 30% | Coverage, assertion quality, test isolation |
| Code Quality | 25% | Readability, structure, idiomatic patterns |
npx skills add guyo13/agent-skills --skill branch-evaluatorOr install globally to specific agents:
npx skills add guyo13/agent-skills --skill branch-evaluator -g -a cursor antigravity claude-code gemini-cliOnce installed, ask your agent to evaluate branches:
Compare branches
feature/auth-aliceandfeature/auth-bobagainst this implementation plan: [paste plan or provide file path]
The agent will:
- Parse the plan into discrete requirements
- Diff each branch against the base
- Score each on Correctness, Test Quality, and Code Quality
- Produce a structured report with a winner and integration recommendations
BSD-3-Clause