Coding
PromptBeginner5 minmarkdown
Nano Banana Pro
Agent skill for nano-banana-pro
6
Use when implementing complex multi-step tasks, fixing critical bugs, or when quality and completeness matter more than speed - ensures comprehensive implementation without shortcuts through systematic analysis, implementation, and verification phases
Sign in to like and favorite skills
This skill ensures comprehensive, complete implementation of complex tasks without shortcuts. Use this when quality and completeness matter more than speed.
Identify All Issues
Root Cause Analysis
Create Detailed Plan
Fix Issues in Dependency Order
Verify Each Fix
Track Progress
Run All Tests
Cross-Check Everything
Documentation
1. See 24 TypeScript errors 2. Add @ts-ignore to all of them 3. Hope tests pass 4. Move on
1. List all 24 errors systematically 2. Group by error type (7 missing types, 10 unknown casts, 7 property access) 3. Find root causes: - Missing @types/tar package - No type assertions on fetch responses - Implicit any types in callbacks 4. Fix by category: - Install @types/tar (fixes 7 errors) - Add proper type assertions to registry-client.ts (fixes 10 errors) - Add explicit parameter types (fixes 7 errors) 5. Test after each category 6. Run full test suite 7. Document what was learned