AnthonyDavidAdams

Market Validation — Development skill for Claude Code

Development community

Validate product ideas against what people already say about the problem.

How to install Market Validation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open AnthonyDavidAdams/market-validation and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

What Market Validation does

Validate product ideas against what people already say about the problem. Keyless harvest of Reddit (Arctic Shift), App Store reviews, HN, Stack Exchange; agent-side extraction; founder-grade report. Claude Code plugin.

Alternatives in Development

  • Reddit Fetch — Fetches Reddit content via Gemini CLI when WebFetch is blocked or returns 403 errors 6.5k ★
  • IPolloWork — Enterprise-grade, local-first Agent Workbench for people and agent teams 4.9k ★
  • Last30days Skill — Claude Code skill that researches any topic across Reddit + X from the last 30 days, then writes copy-paste-re 4.4k ★

README

market-validation

**by [EarthPilot](https://earthpilot.ai)** · built in the open at the [Singularity Playground](https://earthpilot.ai/playground), a free weekly build session for founders working with AI. [Join the next one.](https://earthpilot.ai/playground)

A Claude Code skill that validates a product idea against what people already say about the problem, in their own words, before anything gets built.

It harvests four open sources with no API keys or logins:

Source How
Reddit posts and comments Arctic Shift, the public Reddit research dataset
App Store reviews Apple's customer-review RSS feed
Hacker News Algolia search API
Stack Exchange public API

Every item is tagged by the signal it carries: **problem**, **workaround** (DIY hacks), **tools** tried and abandoned, **money** (prices, willingness to pay), and a fifth idea-specific family (default: **external**, who holds the load for them today). The agent then reads the corpus, extracts a sourced evidence table with verbatim quotes, maps the competitor landscape, and writes a report: verdict, ranked problems, a language glossary, workarounds, what people pay, the gap, and a one-week V1 blueprint.

Extraction and synthesis run inside the agent; nothing calls a paid LLM API.

Install

/plugin marketplace add AnthonyDavidAdams/market-validation
/plugin install market-validation@market-validation

Then, in any project:

/market-validation "an AI external brain for neurodivergent adults and parents"

Standalone use

The harvester is a single standard-library Python file:

python3 plugins/market-validation/skills/market-validation/scripts/mv.py reddit \
  --subs ADHD ADHDparenting --months 6 --out ./harvest
python3 .../mv.py appstore --search "adhd planner" --top 5 --pages 3 --out ./harvest
python3 .../mv.py hn --query "ADHD app" --out ./harvest
python3 .../mv.py corpus --out ./harvest --sample 300
`