saas-reverselisted
Install: claude install-skill veyralabsgroup/saas-reverse
# /saas-reverse
Reverse-engineer any SaaS product into an actionable build blueprint.
## Usage
```
/saas-reverse linear.app
/saas-reverse notion.so
/saas-reverse stripe.com
/saas-reverse cal.com - we want to build a scheduling tool for lawyers
/saas-reverse loom.com - focus on async video for customer success teams
```
The optional annotation after `-` focuses the differentiation analysis and build prompt on your specific angle.
---
## Phase 1 — Deep Scrape
Run the scraper to collect raw content from the target domain.
```
python3 skill/saas-reverse/scripts/saas_scraper.py <domain>
```
Fetches: `/`, `/pricing`, `/features`, `/product`, `/about`, `/solutions`, `/blog`, `/changelog`, `/enterprise`, `/docs`, `/team`, `/customers`
Also parses `robots.txt` to discover hidden paths and checks response headers for infrastructure signals.
Returns structured JSON:
- `pages` — path -> stripped text (up to 4000 chars per page)
- `meta` — title, og:title, og:description
- `headlines` — H1/H2/H3 text (first 20), reveals true positioning
- `cta_language` — button/link text (reveals conversion intent)
- `tech_signals` — detected from HTML patterns AND response headers
- `pricing_signals` — price patterns, tier names, trial mechanics
- `social_proof` — user count claims, award mentions, "trusted by" text
- `feature_signals` — combined feature/product/homepage text
- `discovered_paths` — paths found via robots.txt
## Phase 2 — Multi-Source Intelligence
Run the intelligence gather