用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/fabioc-aloha/Alex_Skill_Mall --skill iterative-health-check命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | iterative-health-check |
| description | One-time audits don't track improvement: |
| lastReviewed | 2026-04-30T00:00:00.000Z |
One-time audits don't track improvement:
Score → Fix Top Issues → Rescore loop.
┌──────────────────┐
│ Score │ Assess current state quantitatively
└────────┬─────────┘
▼
┌──────────────────┐
│ Prioritize │ Rank by ROI (impact / effort)
└────────┬─────────┘
▼
┌──────────────────┐
│ Fix Top N │ Address highest-ROI issues
└────────┬─────────┘
▼
┌──────────────────┐
│ Rescore │ Measure improvement
└────────┬─────────┘
│
└─────────► Repeat
const dimensions = {
testCoverage: { weight: 0.25, score: 0 },
docAccuracy: { weight: 0.20, score: 0 },
securityGaps: { weight: 0.30, score: 0 },
techDebt: { weight: 0.25, score: 0 }
};
function calculateHealth() {
return Object.values(dimensions)
.reduce((sum, d) => sum + d.weight * d.score, 0);
}
// Score each dimension 0-100
dimensions.testCoverage.score = 72; // 72% coverage
dimensions.docAccuracy.score = 85; // 85% of docs verified
dimensions.securityGaps.score = 60; // 3 medium issues
dimensions.techDebt.score = 45; // High debt
console.log(`Health: ${calculateHealth().toFixed(0)}%`); // 64%
| Issue | Impact (1-5) | Effort (1-5) | ROI | Priority |
|-------|--------------|--------------|-----|----------|
| Fix auth bug | 5 | 2 | 2.5 | 1 |
| Add tests | 3 | 3 | 1.0 | 3 |
| Update deps | 4 | 2 | 2.0 | 2 |
| Refactor X | 2 | 4 | 0.5 | 4 |
ROI = Impact / Effort. Fix highest ROI first.
## Health Check History
| Date | Score | Top Fix | Impact |
|------|-------|---------|--------|
| 2026-04-01 | 45% | Security patch | +12% |
| 2026-04-15 | 57% | Test coverage | +8% |
| 2026-04-29 | 65% | Doc update | +5% |
quality audit metrics continuous-improvement