一键导入
quality
Comprehensive code quality assessment in spaces/[project]/. Use before commits, merges, or releases to ensure consistent quality.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Comprehensive code quality assessment in spaces/[project]/. Use before commits, merges, or releases to ensure consistent quality.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
End-of-session reflection. Extracts memories, suggests updates to about-taylor.md and CLAUDE.md. Run before ending a long session or when context is getting full. Triggers on "debrief", "extract memories", "session summary".
Sync all git repos - my-life top repo and spaces/ projects
Morning routine check-in. Use at start of day to review yesterday, set up today's journal, and check learning reviews due. Triggers on "good morning", "morning", "start my day", "what's on for today".
Silently refresh AI context by reading project configuration and guidelines. Use when starting a new conversation, after context loss, or before major tasks.
Fetch and summarize latest articles from RSS feeds. Creates notes with article summaries as bullet points. Use to catch up on blogs without reading everything. Triggers on "rss catchup", "blog catchup", "check feeds", "summarize articles".
Fetch and summarize latest videos from priority YouTube channels. Creates notes with transcripts summarized as bullet points. Use to catch up on subscriptions without watching everything. Triggers on "youtube catchup", "video catchup", "check youtube", "summarize videos".
| name | quality |
| description | Comprehensive code quality assessment in spaces/[project]/. Use before commits, merges, or releases to ensure consistent quality. |
| model | claude-sonnet-4-20250514 |
| allowed-tools | Read, Glob, Grep, Bash, Task |
Comprehensive quality assessment of code using multi-agent analysis.
/quality yourbench # Full assessment
/quality yourbench --focus security # Security-focused
/quality coordinatr --focus testing # Test coverage focus
| Flag | Analysis | Agent |
|---|---|---|
| (none) | All dimensions | All specialists |
--focus security | OWASP, vulnerabilities | security-auditor |
--focus performance | Bottlenecks, N+1 | performance-optimizer |
--focus testing | Coverage, test quality | test-engineer |
--focus code | Maintainability | code-reviewer |
ls spaces/[project]/
cd spaces/[project]
npm test -- --coverage
npm run lint
npm run type-check # if TypeScript
Coordinate specialists via Task tool:
## Quality Assessment: [project]
**Overall Score: XX/100** [status]
### Code Quality: XX/100
- Issues found
- Recommendations
### Security: XX/100
- Critical/High/Medium issues
- Recommendations
### Performance: XX/100
- Bottlenecks identified
- Recommendations
### Testing: XX/100
- Coverage percentage
- Untested areas
### Priority Actions
1. **CRITICAL**: [action]
2. **HIGH**: [action]
3. **MEDIUM**: [action]
| Score | Status | Meaning |
|---|---|---|
| 90-100 | Excellent | Ship it |
| 80-89 | Good | Minor improvements |
| 70-79 | Acceptable | Address soon |
| 60-69 | Concerning | Fix before merge |
| <60 | Critical | Must fix |