소스 정보
- 저장소
- majiayu000/claude-skill-registry
- 최근 소스 활동
- 2026년 6월 23일 12:15
- 감지된 SKILL.md 언어
- 영어
- 스타
- 543
- 포크
- 85
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/majiayu000/claude-skill-registry --skill audit-aggregator명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
LLM token logprobs and calibration. Per-decision confidence, ECE, Brier, reliability diagrams, low-confidence triage.
Analyze LLM token logprobs and calibration. Use for per-decision confidence, ECE, Brier scores, reliability diagrams, and low-confidence triage.
回顾最近 N 天的 Claude Code 使用记录——扫描原始会话数据,按主题分组汇总"我都做了什么",并从个人操作系统视角输出模式、风险与增删建议。当用户说 /recap、"看看我这几天做了什么"、"回顾一下我最近的会话"、"这两天我用 claude 干了啥"、"活动回顾" 时使用。
SOC 직업 분류 기준
SKILL.md 표시 중
| name | audit-aggregator |
| description | Aggregate and deduplicate findings from multiple audit reports |
Purpose: Merge findings from 6+ domain-specific audit reports into a single comprehensive, priority-ranked report with cross-domain insights and deduplication.
Input: Multiple audit report files (markdown format) Output:
COMPREHENSIVE_AUDIT_REPORT.md with executive summary, priority rankings, and
cross-cutting analysis
Expected Files:
docs/audits/comprehensive/audit-code-report.mddocs/audits/comprehensive/audit-security-report.mddocs/audits/comprehensive/audit-performance-report.mddocs/audits/comprehensive/audit-documentation-report.mddocs/audits/comprehensive/audit-refactoring-report.mddocs/audits/comprehensive/audit-process-report.mdRequired Format (in each report):
Each individual audit report should contain findings in this structure:
## Findings
### [ID] [Title] (Severity: S0-S3, Effort: E0-E3, Confidence: High/Medium/Low)
**File:** `path/to/file.ts:123` **Category:** [Category Name] **Description:**
[Detailed description] **Evidence:** [Code snippets, metrics, etc.]
**Recommendation:** [How to fix]
Read all 6 audit reports and extract findings into structured format:
{
id: "CODE-001",
title: "Missing error handling",
severity: "S1",
effort: "E1",
confidence: "High",
file: "src/auth.ts",
line: 45,
category: "Code Quality",
domain: "code",
description: "...",
evidence: "...",
recommendation: "..."
}
Parsing Rules:
{DOMAIN}-{NUMBER} (e.g., CODE-001, SEC-012, PERF-003)Handle Missing Fields:
Deduplication Logic:
Group findings by (file, line) pair:
// Pseudo-code
const groups = groupBy(findings, (f) => `${f.file}:${f.line}`);
for (const group of groups) {
if (group.length > 1) {
// Multiple audits flagged same location
merged = {
id: `COMP-${nextId++}`, // New composite ID
domains: group.map((f) => f.domain), // ["code", "security"]
severity: maxSeverity(group), // Take worst severity
effort: maxEffort(group), // Take highest effort estimate
confidence: maxConfidence(group), // Take highest confidence
title: mergeTitles(group), // Combine titles
description: mergeDescriptions(group), // Combine contexts
category: "Cross-Domain", // Flag as spanning multiple domains
...
};
}
}
Merge Rules:
Example Deduplication:
Before:
CODE-001: Missing error handling (S1, E1) at auth.ts:45
SEC-012: Exception vulnerability (S0, E1) at auth.ts:45
After:
COMP-001: Missing error handling + Exception vulnerability (S0, E1, Domains: 2)
Category: Cross-Domain (Code + Security)
Pattern Detection:
A. Hotspot Files (appear in 3+ audits):
// Count how many audits mention each file
const fileCounts = {};
for (const finding of findings) {
fileCounts[finding.file] = (fileCounts[finding.file] || 0) + 1;
}
// Files with 3+ mentions
const hotspots = Object.entries(fileCounts)
.filter(([file, count]) => count >= 3)
.sort((a, b) => b[1] - a[1]);
B. Related Findings (fixing one helps another):
Look for pairs where:
C. Domain Overlaps:
Count overlaps between domain pairs:
Security + Performance: 12 findings
Code + Refactoring: 18 findings
Documentation + Code: 8 findings
D. Category Patterns:
Group by category across domains:
Authentication: 5 findings (2 security, 2 code, 1 process)
Error Handling: 8 findings (3 code, 3 security, 2 performance)
Testing: 12 findings (6 code, 4 refactoring, 2 process)
Priority Score Formula:
priority = severityWeight × crossDomainMultiplier × confidenceWeight / effortWeight;
// Weights
severityWeight = { S0: 100, S1: 50, S2: 20, S3: 5 };
crossDomainMultiplier = 1 + (domains.length - 1) * 0.5; // 1.0, 1.5, 2.0, 2.5...
confidenceWeight = { High: 1.0, Medium: 0.8, Low: 0.5 };
effortWeight = { E0: 0.5, E1: 1.0, E2: 2.0, E3: 4.0 };
Ranking Rules:
Example Scores:
Finding A: S0 Critical, 1 domain, High confidence, E1 effort
→ 100 × 1.0 × 1.0 / 1.0 = 100 (Rank #1)
Finding B: S1 High, 3 domains, High confidence, E1 effort
→ 50 × 2.0 × 1.0 / 1.0 = 100 (Rank #2 - tie, resolved by severity S0 > S1)
Finding C: S2 Medium, 2 domains, High confidence, E0 trivial
→ 20 × 1.5 × 1.0 / 0.5 = 60 (Rank #3 - quick win)
Finding D: S1 High, 1 domain, Medium confidence, E2 day
→ 50 × 1.0 × 0.8 / 2.0 = 20 (Rank #4 - high effort lowers priority)
Summary Components:
A. Statistics:
## Executive Summary
### Audit Overview
- **Raw Findings:** 142 (across 6 audits)
- **Unique Findings:** 97 (after deduplication)
- **Merged Findings:** 45 (appeared in 2+ audits)
- **Cross-Domain Findings:** 18 (3+ audits)
### Severity Breakdown
- **S0 Critical:** 3 (IMMEDIATE ACTION REQUIRED)
- **S1 High:** 24 (fix within sprint)
- **S2 Medium:** 42 (plan for next milestone)
- **S3 Low:** 28 (backlog/nice-to-have)
### Effort Estimate
- **Total estimated effort:** 127 hours
- **Quick wins (E0):** 15 findings (12 hours)
- **Short fixes (E1):** 42 findings (42 hours)
- **Medium tasks (E2):** 28 findings (56 hours)
- **Major refactors (E3):** 12 findings (96 hours)
B. Top Insights:
List 3-5 highest-impact insights:
### Key Insights
1. **Authentication Layer Needs Comprehensive Refactor**
- 8 files appear in 4+ audits (security, code, performance, documentation)
- High complexity with poor error handling and missing tests
- Recommended: Dedicated sprint to harden auth module
2. **Security + Performance Overlap**
- 12 findings where fixing security also improves performance
- Example: Rate limiting prevents DoS (security) + reduces server load
(performance)
- Recommended: Bundle these fixes together
3. **Documentation Gaps Align with Code Complexity**
- 5 files with S1 complexity issues also have missing/outdated docs
- Difficult to maintain or extend without documentation
- Recommended: Document complex areas first (highest ROI)
C. Recommended Fix Order:
### Recommended Action Plan
**Phase 1: Critical Fixes (Week 1)**
1. FIX S0 findings (3 items - 8 hours)
2. Address top 5 quick wins (E0 - 4 hours)
**Phase 2: High-Priority Fixes (Week 2-3)**
1. Cross-domain findings (18 items - 32 hours)
2. Hotspot files refactor (8 files - 48 hours)
**Phase 3: Systematic Improvements (Month 2)**
1. Remaining S1 findings (21 items - 36 hours)
2. S2 medium-effort fixes (28 items - 56 hours)
**Phase 4: Backlog (Ongoing)**
1. S3 low-priority (28 items - 24 hours)
2. Major refactors (E3 - 96 hours, spread over quarters)
Output File: docs/audits/comprehensive/COMPREHENSIVE_AUDIT_REPORT.md
Structure:
# Comprehensive Audit Report
**Generated:** [Date] **Audits Included:** Code, Security, Performance,
Documentation, Refactoring, Process **Total Findings:** 97 unique (142 raw)
---
## Executive Summary
[Generated in Step 5]
---
## Priority-Ranked Findings (Top 20)
| Rank | ID | Severity | Domains | File:Line | Description | Effort | Score |
| ---- | -------- | -------: | ------: | ------------------- | --------------------------------------- | -----: | ----: |
| 1 | COMP-001 | S0 | 3 | src/auth.ts:45 | Missing error handling + Exception vuln | E1 | 100 |
| 2 | SEC-012 | S0 | 1 | firestore.rules:102 | Missing auth check on delete | E0 | 95 |
| ... | ... | ... | ... | ... | ... | ... | ... |
---
## Cross-Domain Insights
### Hotspot Files (3+ audits)
1. **src/auth.ts** (5 audits: code, security, performance, documentation,
refactoring)
- Complexity: 45 (high)
- Missing tests: 8 functions
- Security issues: 3 (auth bypass, exception handling, rate limiting)
- Performance: N+1 queries
- Documentation: Outdated
[Continue with other hotspots...]
### Domain Overlaps
- **Security + Performance:** 12 findings (bundling opportunity)
- **Code + Refactoring:** 18 findings (quality improvements)
- **Documentation + Code:** 8 findings (complex code needs docs)
### Category Patterns
- **Authentication:** 5 findings → Need dedicated hardening sprint
- **Error Handling:** 8 findings → Systematic improvement needed
- **Testing:** 12 findings → Coverage gaps in critical areas
---
## Full Findings (Deduplicated)
Code (CODE-001), Security (SEC-012), Performance (PERF-005)
S0 (Critical) E1 (Hours)
High
[Merged description from all 3 audits...]
[Merged evidence from all 3 audits...]
[Merged recommendations from all 3 audits...]
---
[Continue with all findings grouped by severity...]
---
[]() - 32 findings
[]() - 18 findings
[]() - 24 findings
[]() - 15 findings
[]() - 41 findings
[]() - 12 findings
287 passing
0 errors, 12 warnings
4 violations
Next.js 16.1.1, React 19.2.3, Firebase 12.6.0
8 findings
Documented false positives in FALSE
Before Finalizing Report:
Verify deduplication worked:
Verify priority ranking:
Verify cross-cutting insights:
Verify completeness:
If Audit Report Missing:
If Parsing Fails:
If Deduplication Produces Empty Result:
Standalone Usage (you have existing audit reports):
/audit-aggregator
Integrated Usage (called by audit-comprehensive):
Automatically invoked after all 6 parallel audits complete.
/audit-comprehensive - Orchestrator that calls this aggregator