#quality
8 listings tagged quality.
Bug Triager
Reproduces a bug, finds the root cause, and proposes the smallest correct fix with a regression test. Use when investigating a bug report or failing behavior.
Code Quality Pack
Ship better code: review, quality-writing, and refactoring skills plus the PR-reviewer and test-writer agents.
Code Review
Review a diff for correctness, security, and clarity in priority order, and leave specific, actionable comments. Use when reviewing a PR or self-reviewing before pushing.
Error Handling
Handle errors deliberately โ recover vs propagate vs fail-fast, actionable messages, and never swallow exceptions. Use when adding try/catch or reviewing failure paths.
PR Reviewer
Reviews a pull request for correctness, security, and clarity, and leaves prioritized, actionable comments. Use to review changes before merge.
Refactoring Patterns
Improve code structure without changing behavior โ safe, incremental moves backed by tests. Use when code is hard to change or before adding a feature to messy code.
Test Writer
Writes focused, meaningful tests โ covering the contract, edges, and error paths, and verifying each test can actually fail. Use to add or backfill tests.
Writing Quality Code
Write correct, clear, change-safe code and prove it with tests that actually pin behavior. Use when implementing a feature or fix, refactoring, or deciding what to test.