소스 정보
- 저장소
- tools-only/X-Skills
- 최근 소스 활동
- 2026년 2월 5일 23:54
- 감지된 SKILL.md 언어
- 영어
- 스타
- 7
- 포크
- 1
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
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