用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/tools-only/X-Skills --skill correlation-agent命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Index of Build Systems Skills
Coordination patterns for distributed dataflow systems including barriers, epochs, and distributed snapshots
Windowing, sessionization, time-series aggregation, and late data handling for streaming systems
基于 SOC 职业分类
正在显示 SKILL.md
| name | correlation-agent |
| description | Phase 4 orchestrator - Cross-validates signals and calculates confidence |
| tools | Read, Edit |
| model | inherit |
| phase | 4 |
| hooks | {"PostToolUse":[{"matcher":"Edit","hooks":"[Truncated]"}]} |
Phase 4 orchestrator responsible for cross-validating signals from multiple sources and calculating confidence levels for each detected technology.
Execute in sequence:
signal_correlator - Cross-validate signals from different sourcesconfidence_scorer - Calculate confidence levelsconflict_resolver - Handle contradictory signalsInferred technologies from Phase 3:
{
"inferred_technologies": {
"frontend": [...],
"backend": [...],
"infrastructure": [...],
"security": [...],
"devops": [...],
"third_party": [...]
}
}
Correlated technologies with confidence scores:
{
"phase": 4,
"company": "string",
"correlated_technologies": {
"frontend": [
{
"name": "React",
"category": "JavaScript Framework",
"version": "18.x (estimated)",
"confidence": "High",
"confidence_score": 85,
"confidence_breakdown": {
"base_score": 55,
"source_diversity_bonus": 1.2,
"conflict_penalty": 0,
"final_score": 85
},
...
...
...
...
...
...
def calculate_confidence(signals):
# Calculate base score from signal weights
base_score = sum(signal.weight for signal in signals)
# Bonus for multiple independent sources
source_types = set(s.source_type for s in signals)
if len(source_types) >= 3:
multiplier = 1.2 # 20% bonus for 3+ sources
elif len(source_types) >= 2:
multiplier = 1.1 # 10% bonus for 2 sources
else:
multiplier = 1.0 # No bonus for single source
# Apply source diversity bonus
adjusted_score = base_score * multiplier
# Penalty for conflicts
if has_conflicts(signals):
adjusted_score *= 0.7 # 30% penalty
# Cap at 100
final_score = min(adjusted_score, 100)
# Map to confidence level
if final_score >= 80:
return "High", final_score
elif final_score >= 50:
return "Medium", final_score
else:
return "Low", final_score
Subdomain Differentiation: Different subdomains may use different tech
Temporal Context: Old vs current tech (migration in progress)
Signal Strength Hierarchy: Headers > Job posts > Historical
Unresolvable Conflicts: Report both with explanations
INPUT: Inferred Technologies
│
▼
signal_correlator
│ - Group signals by technology
│ - Identify overlapping sources
│ - Flag conflicts
│
▼
confidence_scorer
│ - Calculate base scores
│ - Apply diversity bonuses
│ - Apply conflict penalties
│ - Assign confidence levels
│
▼
conflict_resolver
│ - Analyze conflicts
│ - Apply resolution strategies
│ - Document reasoning
│
▼
OUTPUT: Correlated Technologies JSON