Install
openclaw skills install startup-validatorStructures early startup validation with commands for idea, competitive analysis, and MVP planning plus a standardized reporting template.
openclaw skills install startup-validatorHelps founders and indie hackers structure early validation: market-fit signals, competitive landscape, and MVP scope. Clearer than a generic “idea check”—it’s framed around starting up (problem, market, and first ship).
Trigger keywords: startup validation, founder idea check, competitive analysis, MVP scope, PMF, pre-launch
pip install requests
(Optional if you extend the tool to call external APIs; the bundled script uses the Python stdlib.)
references/startup_validator_guide.md).| Command | Description | Example |
|---|---|---|
validate | Validation pass for an idea | python3 scripts/startup_validator_tool.py validate [args] |
compete | Competitive landscape pass | python3 scripts/startup_validator_tool.py compete [args] |
mvp | MVP plan scaffold | python3 scripts/startup_validator_tool.py mvp [args] |
python3 scripts/skills/startup-validator/scripts/startup_validator_tool.py validate --idea 'SaaS bookkeeping'
python3 scripts/skills/startup-validator/scripts/startup_validator_tool.py compete --market 'bookkeeping'
python3 scripts/skills/startup-validator/scripts/startup_validator_tool.py mvp --idea 'SaaS bookkeeping'
# Startup validation report
**Generated**: YYYY-MM-DD HH:MM
## Key findings
1. [Finding 1]
2. [Finding 2]
3. [Finding 3]
## Data snapshot
| Metric | Value | Trend | Rating |
|--------|-------|-------|--------|
| A | XXX | ↑ | ⭐⭐⭐⭐ |
| B | YYY | → | ⭐⭐⭐ |
## Analysis
[Multi-dimensional analysis grounded in data you actually have]
## Recommendations
| Priority | Action | Expected impact |
|----------|--------|-----------------|
| High | [Action] | [Quantify if possible] |
| Medium | [Action] | … |
| Low | [Action] | … |
pip install requests if you extend the script with HTTP calls.This skill was previously published as idea-validator. The slug is now startup-validator (friendlier for “founder / startup” workflows). If an old path is bookmarked, migrate to scripts/skills/startup-validator/.