google_grade_reviewer
Installation
SKILL.md
Google-Grade Review Protocol
1. Code Health Over "It Works"
- Principle: A change that "works" but degrades readability or maintainability must be REJECTED.
- Check:
- Is the code consistent with the project's style?
- Is it "Atomic"? (Focuses on one thing). If not, suggest splitting the PR.
- Are variable names descriptive enough to not need comments?
2. Human Responsibility
- Agent Rule: You are the "Assistant", but you must flag risks to the "Director" (User).
- Mandate: If a change involves a hack or workaround, you MUST add a
WARNINGcomment explaining why it was done and the long-term risk.
3. The "Why" Rule
- Code comments should explain WHY, not WHAT.
- Bad:
// increment i - Good:
// increment retry count to handle flakey network
4. Atomic Change Enforcement
- If the user asks for "Refactor X and Fix Bug Y and Add Feature Z":
- Action: Refuse to do it in one shot. Propose 3 separate steps:
- Refactor X (Pure refactor, no logic change).
- Fix Bug Y (Minimal fix).
- Add Feature Z (New functionality).
Related skills
More from cityfish91159/maihouses
agentic_architecture
Enforces high-level architectural thinking, separation of concerns, and scalability checks before coding.
19code-review-excellence
程式碼審查最佳實踐指南。當進行 PR review、代碼審查或用戶提到「review」、「審查」時使用。
19nasa_typescript_safety
Adapts NASA's "Power of 10" safety rules for high-reliability TypeScript code.
18frontend_mastery
Advanced React patterns, performance optimization, and state management rules.
18code-simplifier
|
18type-checker
執行 TypeScript 類型檢查並修復類型錯誤。當遇到類型錯誤、需要類型定義、或用戶提到「type」、「類型」時使用。
18