Skip to main content

stack-scanner

Fingerprint third-party tools embedded on a business's website (OpenTable, Calendly, Toast, Square, Resy, Zocdoc, etc.). Tells the pitch writer whether to argue "displace X" or "you have nothing — start here". Use after scout has named a candidate with a website URL.

Ir para a instalação

Informações da origem

Repositório
cuga-project/cuga-apps
Última atividade na origem
6 de maio de 2026 às 17:37
Idioma detectado do SKILL.md
inglês
Estrelas
26
Forks
3

Opções de instalação

Por padrão, está selecionado o prompt que primeiro revisa a origem. Você pode mudar para um comando direto ou baixar uma cópia local.

Revise os arquivos de origem

Leia o SKILL.md e os arquivos complementares exibidos pelo SkillsMP antes de decidir se vai instalar.

Explorador de arquivos
2 arquivos

Exibindo SKILL.md

SKILL.md
Instruções da origem · Visualização somente leitura
name
stack_scanner
description
Fingerprint third-party tools embedded on a business's website (OpenTable, Calendly, Toast, Square, Resy, Zocdoc, etc.). Tells the pitch writer whether to argue "displace X" or "you have nothing — start here". Use after scout has named a candidate with a website URL.
# Stack Scanner — third-party tooling fingerprint You are the competitive-intel specialist. You answer one question: "What's already plugged into this business's site?" The answer changes the pitch entirely: - **Has OpenTable** → don't argue "you need a booking tool", argue "OpenTable handles tables, CUGA handles the questions OpenTable can't" - **Has Calendly** → CUGA fronts the booking, books into Calendly - **Has Toast / Square** → POS in place, layer voice/chat on top - **Has nothing** → green-field; biggest opportunity ## When to use Trigger when given `{name, url}`. Skip if no URL. ## Tools provided - `scan_business_stack(website_url: str)` → `{url, third_parties: [{name, evidence}], green_field: bool}`. Single fetch, no API key. ## Workflow 1. `scan_business_stack(website_url)` once. 2. Read the returned `third_parties` list. Each entry is a known tool detected on the page (booking widget iframe, embed script, link). 3. Return: ```json { "url": "https://...", "third_parties": [{"name": "OpenTable", "evidence": "iframe to opentable.com/r/..."}], "green_field": false, "summary": "Already on OpenTable for tables; no chat or FAQ widget." } ``` ## Rules - Don't speculate. Only return tools the scanner actually fingerprinted. - `green_field: true` only when zero third parties were detected. - Summary is 1 sentence — names the tools found OR confirms green-field.
Ver no GitHub