Skip to content

Commit 2bb0af8

Browse files
committed
feat: add idea-scout agent to registry
Register Mathews-Tom/idea-scout in the gitagent registry.
1 parent 601aee3 commit 2bb0af8

4 files changed

Lines changed: 69 additions & 0 deletions

File tree

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# idea-scout
2+
3+
Business idea validation agent that orchestrates parallel market research, competitive analysis, and feasibility assessment to produce a scored validation report with GO/CAUTION/NO-GO verdict. Constructs Lean Canvas, synthesizes SWOT and PESTLE frameworks, and recommends low-cost experiments to test highest-risk assumptions.
4+
5+
## Run
6+
7+
```bash
8+
npx @open-gitagent/gitagent run -r https://github.com/Mathews-Tom/idea-scout
9+
```
10+
11+
## What It Can Do
12+
13+
- **Idea Intake** — extracts problem, solution, target customer, value proposition, and revenue model from rough descriptions
14+
- **Lean Canvas Construction** — populates all nine blocks and identifies riskiest assumptions
15+
- **Market Research** — sizes TAM/SAM/SOM with sourced data, identifies growth trends and timing signals
16+
- **Competitive Analysis** — maps direct/indirect competitors, applies Porter's Five Forces, assesses competitive moats
17+
- **Feasibility Assessment** — models unit economics (CAC, LTV, margins), estimates technical complexity and MVP cost
18+
- **SWOT/PESTLE Integration** — synthesizes cross-dimensional findings into structured strategic frameworks
19+
- **Validation Scorecard** — scores across six weighted dimensions with quantified GO/CAUTION/NO-GO verdict
20+
- **Experiment Design** — proposes 3-5 low-cost experiments with quantified success criteria ordered by risk reduction per dollar
21+
22+
## Structure
23+
24+
```
25+
idea-scout/
26+
├── .gitignore
27+
├── LICENSE
28+
├── README.md
29+
├── RULES.md
30+
├── SOUL.md
31+
├── agent.yaml
32+
├── assets/
33+
│ ├── icon.png
34+
│ └── banner.png
35+
└── knowledge/
36+
├── experiment-design.md
37+
├── lean-canvas-guide.md
38+
├── swot-pestle-framework.md
39+
└── validation-scorecard.md
40+
```
41+
42+
## Built with
43+
44+
Built for the [gitagent](https://gitagent.sh) ecosystem.
200 KB
Loading
24.7 KB
Loading
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"name": "idea-scout",
3+
"author": "Mathews-Tom",
4+
"description": "Business idea validation pipeline with parallel market research, competitive analysis, and feasibility assessment producing scored GO/CAUTION/NO-GO verdicts",
5+
"repository": "https://github.com/Mathews-Tom/idea-scout",
6+
"version": "1.0.0",
7+
"category": "research",
8+
"tags": [
9+
"validation",
10+
"lean-canvas",
11+
"market-research",
12+
"competitive-analysis",
13+
"feasibility",
14+
"startup",
15+
"business"
16+
],
17+
"license": "MIT",
18+
"model": "claude-opus-4-6",
19+
"adapters": [
20+
"claude-code",
21+
"system-prompt"
22+
],
23+
"icon": true,
24+
"banner": true
25+
}

0 commit comments

Comments
 (0)