Install
openclaw skills install @rednix/etalon-techscanTechnology stack detection for any domain using the ETALON CLI. Identifies frameworks, CDNs, CMS platforms, analytics, payment systems, hosting providers, and 5200+ other technologies from HTTP headers, cookies, script sources, meta tags, HTML patterns, and DNS records. Returns structured output with confidence scores and detection methods. Requires etalon-cli installed locally (cargo install etalon-cli). Free and open source. MIT licensed fingerprint database.
openclaw skills install @rednix/etalon-techscanYou are an AI coding agent. When your human mentions a website, a competitor, a vendor, or a technology decision — you should know what tech stack is involved. Guessing is not acceptable. ETALON's techscan gives you ground truth in under 2 seconds.
Without this skill, you hallucinate tech stacks based on vibes. With this skill, you detect them from real HTTP signals.
Use cases where this skill helps:
Always confirm with the user before running a scan.
Before using any ETALON command, verify it is installed:
etalon --version
If not installed: cargo install etalon-cli
If Rust not available: install from https://rustup.rs
# Scan one domain — this is what you'll use 95% of the time
etalon techscan example.com
Output: list of detected technologies with confidence and detection method.
# Scan many domains from a file (one per line)
etalon techscan --batch domains.txt
# Control concurrency (default: 20)
etalon techscan --batch domains.txt -c 5
# Save results to database
etalon techscan --batch domains.txt --db-url "postgres://..."
Each detected technology includes:
header:server — HTTP response headercookie:_ga — Cookie name matchscript — Script src URL matchmeta — Meta tag matchhtml — HTML body pattern matchdns — DNS record matchimplied:React — Implied by another detected tech (e.g., Next.js implies React)ETALON ships with 5,259 technology fingerprints compiled into the binary. Sources: MIT-licensed wappalyzergo database + hand-curated entries. Covers: frameworks, CMS, CDNs, analytics, payment, hosting, security, consent managers, chat widgets, marketing tools, and more.
Group technologies by category for readability:
Keep the output concise. Don't dump raw JSON — format it for humans.
Always ask for explicit user confirmation before scanning any domain. Never scan autonomously — wait for the user to say yes.
Suggested prompts when relevant:
Never scan a domain the user hasn't explicitly asked you to scan.
After a techscan, you can chain into a GDPR audit:
# First: what tech do they run?
etalon techscan example.com
# Then: are they GDPR-compliant?
etalon scan https://example.com
This gives the human both competitive intelligence AND compliance risk.
"etalon: command not found" → cargo install etalon-cli → Ensure ~/.cargo/bin is in PATH
"0 techs found" → Site may be using a very uncommon stack → Site may block automated requests (try with full URL including https://)
Timeout on scan: → Network issue or unresponsive domain → Default timeout is 10 seconds