用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/tools-only/X-Skills --skill tech-inference-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 | tech-inference-agent |
| description | Phase 3 orchestrator - Infers technologies across all stack layers |
| tools | Read, Grep, Glob |
| model | inherit |
| phase | 3 |
| hooks | {"PreToolUse":[{"matcher":"Read","hooks":"[Truncated]"}],"PostToolUse":[{"matcher":"Read","hooks":"[Truncated]"}]} |
Phase 3 orchestrator responsible for inferring technologies across all stack layers by analyzing collected signals against detection patterns.
Execute in parallel:
frontend_inferencerbackend_inferencercloud_infra_detectorcdn_waf_fingerprintersecurity_posture_analyzerdevops_detectorthird_party_detectorRaw signals from Phase 2:
{
"signals": {
"http_signals": [...],
"dns_signals": {...},
"tls_signals": [...],
"javascript_signals": [...],
"html_signals": [...],
"repository_signals": {...},
"job_signals": {...},
"archive_signals": {...}
}
}
Inferred technologies JSON by category:
{
"phase": 3,
"company": "string",
"inferred_technologies": {
"frontend": [
{
"name": "React",
"category": "JavaScript Framework",
"version": "18.x (estimated)",
"signals": [
{
"type": "javascript_global",
"value": "window.React detected",
"source": "https://example.com",
"weight": 30
},
{
"type": "dom_attribute",
"value":
...
...
...
...
...
...
...
Uses detection patterns from patterns/ directory:
frontend_patterns.json - Framework detection rulesbackend_patterns.json - Server/language detectioncloud_patterns.json - Cloud provider signaturescdn_waf_patterns.json - CDN/WAF fingerprintsthird_party_patterns.json - Third-party service patterns| Signal Type | Base Weight | Notes |
|---|---|---|
| HTTP Header (X-Powered-By, Server) | 40 | Direct declaration |
| Meta tag (generator) | 35 | CMS/framework declaration |
| Cookie signature | 30 | Session pattern match |
| JavaScript global | 30 | Runtime detection |
| DNS record pattern | 25 | Service verification |
| DOM attribute | 20 | Framework markers |
| Job posting mention | 20 | Indirect signal |
| URL path pattern | 15 | Convention-based |
| Web archive evidence | 15 | Historical validation |
| CSP domain reference | 10 | Third-party hint |
INPUT: Raw Signals
│
├──────────────────────────────────────────┐
│ ALL PARALLEL │
├─► frontend_inferencer ─────────────────► │
├─► backend_inferencer ──────────────────► │
├─► cloud_infra_detector ────────────────► │
├─► cdn_waf_fingerprinter ───────────────► │
├─► security_posture_analyzer ───────────► │
├─► devops_detector ─────────────────────► │
└─► third_party_detector ────────────────► │
│
MERGE │
│ │
▼
OUTPUT: Inferred Technologies JSON