From security
Detect the technology stack of any website for sales prospecting. Use when someone shares a prospect URL, asks "what are they running", "what's their stack", or wants to research a client/competitor. Runs WhatWeb scan and returns sales-relevant insights and pitch angles.
How this skill is triggered — by the user, by Claude, or both
Slash command
/security:tech-detectorThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Trigger when:
Trigger when:
Call mcp__plugin_security_whatweb__whatweb_scan with:
target: the URL providedaggression: normal (default — non-intrusive, safe for prospects)Always present findings in three sections:
Plain-English summary of what they're running. Group by:
Interpret the stack in business terms:
Map detected tech to specific opportunities:
| Detected | Opportunity |
|---|---|
| Shopify (Bootstrap/jQuery theme) | Custom Shopify theme rebuild, headless Shopify, performance audit |
| Shopify (no GTM/analytics) | Analytics setup, conversion optimisation |
| WordPress | Performance, security, migration to modern stack |
| Webflow | Custom development beyond Webflow's limits, CMS migration |
| No identifiable platform | Likely custom — ask about their dev team, maintenance pain |
| jQuery / Bootstrap (no modern framework) | Frontend modernisation, React/Vue migration |
| No HTTPS / missing HSTS | Security audit, quick win to open the conversation |
| Google Tag Manager | Active marketing team — pitch tracking, CRO, analytics |
| Cloudflare | They care about performance/security — lean into that |
| Vercel / Next.js | Modern team, may need backend/API work or design system |
| No CDN detected | Performance pitch — "your competitors are likely faster" |
Keep it tight and actionable. Example:
[Company] — Tech Stack
Platform: Shopify Frontend: Bootstrap, jQuery (legacy theme) CDN: Cloudflare Analytics: Google Tag Manager
What this tells us: They're on a standard Shopify setup with an older theme stack (Bootstrap/jQuery). GTM presence means there's an active marketing team. Cloudflare suggests someone technical is involved, even if their dev team is small.
Pitch angles:
Safe — this skill is stateless and read-only (HTTP scan only). Multiple tech-detector agents can run simultaneously against different URLs with no conflicts or side effects.
When invoked by an orchestrator agent collecting results for multiple targets, return a JSON envelope alongside the markdown report:
{
"url": "<scanned URL>",
"cms": "<platform or null>",
"stack": ["<tech1>", "<tech2>"],
"pitch_angles": ["<angle1>", "<angle2>"]
}
The orchestrator uses this to aggregate and sort results without parsing the markdown.
aggression: aggressive for a deeper lookGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub devkindhq/agency-marketplace --plugin security