Loading skill
Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Standardized guidelines and patterns for Frontend Typescript Standards.
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-01 | ✗→✓ | ▲ Improved | -36% | 0% |
| case-05 | ✓→✓ | = Same ✓ | -16% | 0% |
| case-14 | ✓→✓ | = Same ✓ | 78% | 0% |
| case-15 | ✓→✓ | = Same ✓ | -13% | 0% |
| case-20 | ✓→✓ | = Same ✓ | -10% | 0% |
type for unions and intersectionsany, use unknown insteadjson{ "compilerOptions": { "strict": true, "noImplicitAny": true, "strictNullChecks": true, "strictFunctionTypes": true, "noUnusedLocals": true, "noUnusedParameters": true } }
I prefix optionaltypescript// Use interface for object shapes interface User { id: string; name: string; } // Use type for unions, intersections type Status = 'pending' | 'active' | 'inactive'; type Admin = User & { role: 'admin' };
Other measured skills in the registry, with their headline benchmark lift.