acc-suggest-testability-improvements

Installation
SKILL.md

Testability Improvement Suggestions

Provide actionable suggestions to improve code testability.

Improvement Categories

1. Extract Interface for Dependencies

// BEFORE: Concrete dependency
class PaymentProcessor
{
    public function __construct(
        private StripeGateway $gateway, // Concrete class
    ) {}
}

// Test problem: Must mock StripeGateway internals
Related skills
Installs
1
GitHub Stars
71
First Seen
Feb 11, 2026
Security Audits