بنقرة واحدة
check-quality
Assess overall code quality
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Assess overall code quality
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Analyze blast radius before changing specific files. Use before refactoring core components, making breaking API changes, or modifying shared code to identify affected files and stakeholders.
Get complexity and debt metrics before editing code
Focus code review on high-risk changes
Generate onboarding guide with key symbols, architecture overview, and subject matter experts. Use when joining a new project, onboarding teammates, or creating project documentation.
Identify highest-ROI refactoring targets
Analyze a repository and generate an intelligent omen.toml with project-specific defaults. Use when starting Omen in a new project.
| name | check-quality |
| description | Assess overall code quality |
| usage | /check-quality [path] |
| arguments | [{"name":"paths","description":"Paths to analyze","required":false,"default":"."}] |
Assess quality of: {{.paths}}
# Get health score (0-100)
omen -f json score
# Check complexity violations
omen -f json complexity | jq '.files[].functions[] | select(.metrics.cyclomatic > 15)'
# Find architectural smells
omen -f json smells
| Score | Status | Action |
|---|---|---|
| 90-100 | Excellent | Maintain |
| 80-89 | Good | Minor fixes |
| 70-79 | Fair | Address issues |
| 50-69 | Poor | Prioritize fixes |
| <50 | Critical | Immediate action |