claude-symphony 0.0.1 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +16 -12
- package/assets/claude_symphony.webp +0 -0
- package/assets/claude_symphony_ascii.txt +8 -0
- package/bin/create.js +80 -69
- package/package.json +3 -2
- package/template/.claude/commands/benchmark.md +32 -32
- package/template/.claude/commands/brainstorm.md +33 -33
- package/template/.claude/commands/checkpoint.md +42 -42
- package/template/.claude/commands/codex.md +52 -52
- package/template/.claude/commands/collaborate.md +47 -47
- package/template/.claude/commands/context.md +77 -77
- package/template/.claude/commands/deploy.md +50 -50
- package/template/.claude/commands/fork.md +46 -46
- package/template/.claude/commands/gemini.md +43 -43
- package/template/.claude/commands/handoff.md +42 -42
- package/template/.claude/commands/implement.md +42 -42
- package/template/.claude/commands/init-project.md +25 -25
- package/template/.claude/commands/next.md +67 -67
- package/template/.claude/commands/planning.md +38 -38
- package/template/.claude/commands/qa.md +47 -47
- package/template/.claude/commands/refactor.md +50 -50
- package/template/.claude/commands/research.md +31 -31
- package/template/.claude/commands/restore.md +53 -53
- package/template/.claude/commands/run-stage.md +45 -45
- package/template/.claude/commands/stages.md +49 -49
- package/template/.claude/commands/status.md +41 -41
- package/template/.claude/commands/tasks.md +33 -33
- package/template/.claude/commands/test.md +45 -45
- package/template/.claude/commands/ui-ux.md +31 -31
- package/template/.claude/commands/validate.md +81 -81
- package/template/.claude/hooks/ai-selector.sh +39 -39
- package/template/.claude/hooks/auto-checkpoint.sh +30 -30
- package/template/.claude/hooks/output-validator.sh +45 -45
- package/template/.claude/hooks/post-stage.sh +28 -28
- package/template/.claude/hooks/pre-stage.sh +47 -47
- package/template/.claude/hooks/session-start.sh +27 -27
- package/template/.claude/hooks/statusline.sh +24 -24
- package/template/.claude/hooks/stop.sh +26 -26
- package/template/.claude/settings.json +32 -32
- package/template/.claude/skills/ai-collaboration/README.md +31 -31
- package/template/.claude/skills/ai-collaboration/debate.md +66 -66
- package/template/.claude/skills/ai-collaboration/parallel.md +34 -34
- package/template/.claude/skills/ai-collaboration/prompts/CLAUDE.md +59 -63
- package/template/.claude/skills/auto-checkpoint/README.md +46 -46
- package/template/.claude/skills/auto-checkpoint/prompts/CLAUDE.md +68 -72
- package/template/.claude/skills/auto-checkpoint/rollback.md +95 -95
- package/template/.claude/skills/auto-checkpoint/trigger.md +37 -37
- package/template/.claude/skills/context-compression/README.md +69 -69
- package/template/.claude/skills/context-compression/analyze.md +74 -74
- package/template/.claude/skills/context-compression/compress.md +103 -103
- package/template/.claude/skills/context-compression/prompts/compression.md +78 -78
- package/template/.claude/skills/output-validator/README.md +33 -33
- package/template/.claude/skills/output-validator/prompts/CLAUDE.md +74 -78
- package/template/.claude/skills/output-validator/validate.md +76 -76
- package/template/.claude/skills/smart-handoff/README.md +35 -35
- package/template/.claude/skills/smart-handoff/extract.md +42 -42
- package/template/.claude/skills/smart-handoff/prompts/CLAUDE.md +52 -54
- package/template/.claude/skills/smart-handoff/summarize.md +55 -55
- package/template/.claude/skills/stage-transition/README.md +50 -50
- package/template/.claude/skills/stage-transition/handoff-gen.md +89 -89
- package/template/.claude/skills/stage-transition/prompts/transition.md +74 -74
- package/template/.claude/skills/stage-transition/validate.md +41 -41
- package/template/CLAUDE.md +334 -335
- package/template/config/ai_benchmarking.yaml +22 -22
- package/template/config/ai_collaboration.yaml +18 -18
- package/template/config/ai_logging.yaml +50 -50
- package/template/config/auto_checkpoint.yaml +32 -32
- package/template/config/context.yaml +20 -20
- package/template/config/git.yaml +51 -51
- package/template/config/handoff_intelligence.yaml +23 -23
- package/template/config/mcp_fallbacks.yaml +71 -71
- package/template/config/memory_integration.yaml +23 -23
- package/template/config/model_enforcement.yaml +53 -53
- package/template/config/models.yaml +24 -24
- package/template/config/output_validation.yaml +44 -44
- package/template/config/pipeline.yaml +25 -25
- package/template/config/pipeline_forking.yaml +40 -40
- package/template/config/qa_logging.yaml +67 -67
- package/template/config/smart_rollback.yaml +48 -48
- package/template/config/stage_personas.yaml +154 -154
- package/template/config/workflow.yaml +16 -16
- package/template/scripts/ai-benchmark.sh +41 -41
- package/template/scripts/codex-wrapper.sh +32 -32
- package/template/scripts/context-manager.sh +136 -136
- package/template/scripts/create-checkpoint.sh +34 -34
- package/template/scripts/gemini-wrapper.sh +31 -31
- package/template/scripts/init-project.sh +40 -40
- package/template/scripts/list-stages.sh +30 -30
- package/template/scripts/next-stage.sh +67 -67
- package/template/scripts/output-validate.sh +2 -2
- package/template/scripts/pipeline-fork.sh +68 -68
- package/template/scripts/pre-run-check.sh +84 -84
- package/template/scripts/restore-checkpoint.sh +50 -50
- package/template/scripts/run-stage.sh +44 -44
- package/template/scripts/show-status.sh +30 -30
- package/template/scripts/smart-handoff.sh +70 -70
- package/template/stages/01-brainstorm/CLAUDE.md +70 -74
- package/template/stages/01-brainstorm/README.md +54 -54
- package/template/stages/01-brainstorm/config.yaml +18 -18
- package/template/stages/01-brainstorm/prompts/collaboration.md +24 -24
- package/template/stages/01-brainstorm/prompts/ideation.md +41 -41
- package/template/stages/01-brainstorm/prompts/persona.md +50 -50
- package/template/stages/01-brainstorm/prompts/requirements.md +55 -55
- package/template/stages/01-brainstorm/prompts/validation.md +28 -28
- package/template/stages/01-brainstorm/templates/ideas.md +47 -47
- package/template/stages/01-brainstorm/templates/requirements_analysis.md +61 -61
- package/template/stages/02-research/CLAUDE.md +72 -76
- package/template/stages/02-research/config.yaml +12 -12
- package/template/stages/02-research/prompts/collaboration.md +29 -29
- package/template/stages/02-research/prompts/feasibility.md +38 -38
- package/template/stages/02-research/prompts/market_analysis.md +29 -29
- package/template/stages/02-research/prompts/tech_stack.md +34 -34
- package/template/stages/02-research/prompts/validation.md +29 -29
- package/template/stages/03-planning/CLAUDE.md +88 -92
- package/template/stages/03-planning/config.yaml +10 -10
- package/template/stages/03-planning/prompts/architecture.md +43 -43
- package/template/stages/03-planning/prompts/collaboration.md +34 -34
- package/template/stages/03-planning/prompts/validation.md +34 -34
- package/template/stages/04-ui-ux/CLAUDE.md +68 -72
- package/template/stages/04-ui-ux/config.yaml +5 -5
- package/template/stages/04-ui-ux/prompts/collaboration.md +35 -35
- package/template/stages/04-ui-ux/prompts/validation.md +30 -30
- package/template/stages/05-task-management/CLAUDE.md +81 -85
- package/template/stages/05-task-management/config.yaml +17 -17
- package/template/stages/05-task-management/prompts/collaboration.md +30 -30
- package/template/stages/05-task-management/prompts/validation.md +33 -33
- package/template/stages/05-task-management/templates/notion_integration.md +70 -70
- package/template/stages/05-task-management/templates/parallel_groups.yaml +64 -64
- package/template/stages/05-task-management/templates/task_schema.yaml +33 -33
- package/template/stages/06-implementation/CLAUDE.md +117 -121
- package/template/stages/06-implementation/config.yaml +10 -10
- package/template/stages/06-implementation/prompts/collaboration.md +29 -29
- package/template/stages/06-implementation/prompts/validation.md +36 -36
- package/template/stages/07-refactoring/CLAUDE.md +120 -124
- package/template/stages/07-refactoring/config.yaml +11 -11
- package/template/stages/07-refactoring/prompts/collaboration.md +36 -36
- package/template/stages/07-refactoring/prompts/validation.md +40 -40
- package/template/stages/08-qa/CLAUDE.md +80 -84
- package/template/stages/08-qa/config.yaml +7 -7
- package/template/stages/08-qa/prompts/collaboration.md +34 -34
- package/template/stages/08-qa/prompts/validation.md +41 -41
- package/template/stages/09-testing/CLAUDE.md +86 -90
- package/template/stages/09-testing/config.yaml +10 -10
- package/template/stages/09-testing/prompts/collaboration.md +38 -38
- package/template/stages/09-testing/prompts/validation.md +41 -41
- package/template/stages/10-deployment/CLAUDE.md +86 -90
- package/template/stages/10-deployment/config.yaml +11 -11
- package/template/stages/10-deployment/prompts/collaboration.md +37 -37
- package/template/stages/10-deployment/prompts/validation.md +54 -54
- package/template/stages/10-deployment/templates/github-actions-cd.yaml +1 -1
|
@@ -1,73 +1,73 @@
|
|
|
1
1
|
# Persona Generation Prompt Template
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Prompt for generating user personas
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## Model
|
|
6
6
|
Gemini
|
|
7
7
|
|
|
8
|
-
##
|
|
8
|
+
## Prompt
|
|
9
9
|
|
|
10
10
|
```
|
|
11
|
-
|
|
11
|
+
You are a UX researcher and user psychology expert.
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
Generate detailed user personas for the following project:
|
|
14
14
|
|
|
15
15
|
---
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
16
|
+
Project: {{PROJECT_NAME}}
|
|
17
|
+
Description: {{PROJECT_DESCRIPTION}}
|
|
18
|
+
Target Market: {{TARGET_MARKET}}
|
|
19
19
|
---
|
|
20
20
|
|
|
21
|
-
##
|
|
21
|
+
## Persona Generation Request
|
|
22
22
|
|
|
23
|
-
|
|
23
|
+
Please include the following information for each persona:
|
|
24
24
|
|
|
25
|
-
###
|
|
26
|
-
-
|
|
27
|
-
-
|
|
28
|
-
-
|
|
29
|
-
-
|
|
30
|
-
-
|
|
25
|
+
### Basic Information
|
|
26
|
+
- **Name**: (realistic fictional name)
|
|
27
|
+
- **Age**:
|
|
28
|
+
- **Occupation**:
|
|
29
|
+
- **Location**:
|
|
30
|
+
- **Education Level**:
|
|
31
31
|
|
|
32
|
-
###
|
|
33
|
-
-
|
|
34
|
-
-
|
|
35
|
-
-
|
|
32
|
+
### Psychological Profile
|
|
33
|
+
- **Personality Type** (MBTI reference):
|
|
34
|
+
- **Values**:
|
|
35
|
+
- **Lifestyle**:
|
|
36
36
|
|
|
37
|
-
###
|
|
38
|
-
-
|
|
39
|
-
-
|
|
40
|
-
-
|
|
37
|
+
### Goals and Motivations
|
|
38
|
+
- **Primary Goals** (related to this product):
|
|
39
|
+
- **Hidden Motivations**:
|
|
40
|
+
- **Definition of Success**:
|
|
41
41
|
|
|
42
42
|
### Pain Points
|
|
43
|
-
-
|
|
44
|
-
-
|
|
45
|
-
-
|
|
46
|
-
|
|
47
|
-
###
|
|
48
|
-
-
|
|
49
|
-
-
|
|
50
|
-
-
|
|
51
|
-
|
|
52
|
-
###
|
|
53
|
-
-
|
|
54
|
-
-
|
|
55
|
-
-
|
|
56
|
-
|
|
57
|
-
###
|
|
58
|
-
|
|
43
|
+
- **Frustrations with Current Solutions**:
|
|
44
|
+
- **Time/Cost Waste Factors**:
|
|
45
|
+
- **Emotional Frustrations**:
|
|
46
|
+
|
|
47
|
+
### Technology Profile
|
|
48
|
+
- **Technology Familiarity** (1-5):
|
|
49
|
+
- **Primary Devices Used**:
|
|
50
|
+
- **App Usage Patterns**:
|
|
51
|
+
|
|
52
|
+
### Usage Scenarios
|
|
53
|
+
- **Context of Discovering the Product**:
|
|
54
|
+
- **Core Use Cases**:
|
|
55
|
+
- **Expected Outcomes**:
|
|
56
|
+
|
|
57
|
+
### Quote
|
|
58
|
+
Something this persona would say:
|
|
59
59
|
> "..."
|
|
60
60
|
|
|
61
|
-
##
|
|
62
|
-
3
|
|
63
|
-
|
|
61
|
+
## Output Format
|
|
62
|
+
Please output 3 or more personas in markdown format.
|
|
63
|
+
Each persona should be clearly separated.
|
|
64
64
|
```
|
|
65
65
|
|
|
66
|
-
##
|
|
67
|
-
- `{{PROJECT_NAME}}`:
|
|
68
|
-
- `{{PROJECT_DESCRIPTION}}`:
|
|
69
|
-
- `{{TARGET_MARKET}}`:
|
|
66
|
+
## Variable Substitution
|
|
67
|
+
- `{{PROJECT_NAME}}`: Project name
|
|
68
|
+
- `{{PROJECT_DESCRIPTION}}`: Project description
|
|
69
|
+
- `{{TARGET_MARKET}}`: Target market
|
|
70
70
|
|
|
71
|
-
##
|
|
72
|
-
- `outputs/personas.md
|
|
73
|
-
-
|
|
71
|
+
## Expected Output
|
|
72
|
+
- Save to `outputs/personas.md`
|
|
73
|
+
- At least 3 detailed personas
|
|
@@ -1,73 +1,73 @@
|
|
|
1
1
|
# Requirements Analysis Prompt Template
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Prompt for requirements analysis and structuring
|
|
4
4
|
|
|
5
|
-
##
|
|
6
|
-
ClaudeCode (
|
|
5
|
+
## Model
|
|
6
|
+
ClaudeCode (suited for structuring and analysis)
|
|
7
7
|
|
|
8
|
-
##
|
|
8
|
+
## Prompt
|
|
9
9
|
|
|
10
10
|
```
|
|
11
|
-
|
|
11
|
+
You are a senior systems analyst.
|
|
12
12
|
|
|
13
|
-
|
|
14
|
-
|
|
13
|
+
Based on the following brainstorming results and project brief,
|
|
14
|
+
perform systematic requirements analysis:
|
|
15
15
|
|
|
16
16
|
---
|
|
17
|
-
##
|
|
17
|
+
## Project Brief
|
|
18
18
|
{{PROJECT_BRIEF}}
|
|
19
19
|
|
|
20
|
-
##
|
|
20
|
+
## Brainstorming Results
|
|
21
21
|
{{BRAINSTORM_IDEAS}}
|
|
22
22
|
|
|
23
|
-
##
|
|
23
|
+
## User Personas
|
|
24
24
|
{{PERSONAS}}
|
|
25
25
|
---
|
|
26
26
|
|
|
27
|
-
##
|
|
28
|
-
|
|
29
|
-
### 1.
|
|
30
|
-
|
|
31
|
-
-
|
|
32
|
-
-
|
|
33
|
-
-
|
|
34
|
-
-
|
|
35
|
-
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
| ID |
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
### 2.
|
|
42
|
-
-
|
|
43
|
-
-
|
|
44
|
-
-
|
|
45
|
-
-
|
|
46
|
-
-
|
|
47
|
-
|
|
48
|
-
### 3.
|
|
49
|
-
-
|
|
50
|
-
-
|
|
51
|
-
-
|
|
52
|
-
-
|
|
53
|
-
|
|
54
|
-
### 4.
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
### 5. MVP
|
|
58
|
-
-
|
|
59
|
-
-
|
|
60
|
-
-
|
|
61
|
-
|
|
62
|
-
### 6.
|
|
63
|
-
|
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
##
|
|
67
|
-
|
|
27
|
+
## Analysis Request
|
|
28
|
+
|
|
29
|
+
### 1. Functional Requirements
|
|
30
|
+
Categorize by:
|
|
31
|
+
- User Management
|
|
32
|
+
- Core Features
|
|
33
|
+
- Data Management
|
|
34
|
+
- Integration
|
|
35
|
+
- Reporting/Analytics
|
|
36
|
+
|
|
37
|
+
For each requirement:
|
|
38
|
+
| ID | Requirement | Priority | Complexity | Dependencies |
|
|
39
|
+
|----|-------------|----------|------------|--------------|
|
|
40
|
+
|
|
41
|
+
### 2. Non-Functional Requirements
|
|
42
|
+
- **Performance**: Response time, throughput
|
|
43
|
+
- **Scalability**: User count, data volume
|
|
44
|
+
- **Security**: Authentication, authorization, data protection
|
|
45
|
+
- **Availability**: Uptime target
|
|
46
|
+
- **Usability**: Accessibility, UX standards
|
|
47
|
+
|
|
48
|
+
### 3. Constraints
|
|
49
|
+
- Technical constraints
|
|
50
|
+
- Business constraints
|
|
51
|
+
- Time/budget constraints
|
|
52
|
+
- Regulatory/legal constraints
|
|
53
|
+
|
|
54
|
+
### 4. Assumptions
|
|
55
|
+
Assumptions that need verification
|
|
56
|
+
|
|
57
|
+
### 5. MVP Scope Proposal
|
|
58
|
+
- **Must Have**
|
|
59
|
+
- **Nice to Have**
|
|
60
|
+
- **Future Version**
|
|
61
|
+
|
|
62
|
+
### 6. Risk Identification
|
|
63
|
+
| Risk | Impact | Probability | Mitigation Strategy |
|
|
64
|
+
|------|--------|-------------|---------------------|
|
|
65
|
+
|
|
66
|
+
## Output Format
|
|
67
|
+
Please output as a structured markdown document.
|
|
68
68
|
```
|
|
69
69
|
|
|
70
|
-
##
|
|
71
|
-
- `outputs/requirements_analysis.md
|
|
72
|
-
-
|
|
73
|
-
-
|
|
70
|
+
## Expected Output
|
|
71
|
+
- Save to `outputs/requirements_analysis.md`
|
|
72
|
+
- Requirements list with MoSCoW prioritization
|
|
73
|
+
- Clearly defined MVP scope
|
|
@@ -1,50 +1,50 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Output Validation Prompt - Brainstorming
|
|
2
2
|
|
|
3
|
-
##
|
|
3
|
+
## Validation Targets
|
|
4
4
|
|
|
5
|
-
|
|
|
6
|
-
|
|
7
|
-
| `ideas.md` |
|
|
8
|
-
| `requirements_analysis.md` |
|
|
9
|
-
| `HANDOFF.md` |
|
|
5
|
+
| Output | Required Conditions | Validation Method |
|
|
6
|
+
|--------|---------------------|-------------------|
|
|
7
|
+
| `ideas.md` | At least 10 ideas | Count verification |
|
|
8
|
+
| `requirements_analysis.md` | Includes functional/non-functional sections | Structure verification |
|
|
9
|
+
| `HANDOFF.md` | Completion checklist | Item verification |
|
|
10
10
|
|
|
11
|
-
##
|
|
11
|
+
## Validation Command
|
|
12
12
|
|
|
13
13
|
```bash
|
|
14
14
|
/validate --stage 01-brainstorm
|
|
15
15
|
```
|
|
16
16
|
|
|
17
|
-
##
|
|
17
|
+
## Quality Criteria
|
|
18
18
|
|
|
19
19
|
### ideas.md
|
|
20
|
-
- [ ]
|
|
21
|
-
- [ ]
|
|
22
|
-
- [ ]
|
|
23
|
-
- [ ]
|
|
20
|
+
- [ ] At least 10 ideas exist
|
|
21
|
+
- [ ] Pros and cons analysis for each idea
|
|
22
|
+
- [ ] Priority or category classification
|
|
23
|
+
- [ ] Initial feasibility assessment
|
|
24
24
|
|
|
25
25
|
### requirements_analysis.md
|
|
26
|
-
- [ ]
|
|
27
|
-
- [ ]
|
|
28
|
-
- [ ]
|
|
29
|
-
- [ ] MVP
|
|
26
|
+
- [ ] Functional requirements section
|
|
27
|
+
- [ ] Non-functional requirements section
|
|
28
|
+
- [ ] Constraints identified
|
|
29
|
+
- [ ] MVP scope proposal
|
|
30
30
|
|
|
31
31
|
### HANDOFF.md
|
|
32
|
-
- [ ]
|
|
33
|
-
- [ ]
|
|
34
|
-
- [ ]
|
|
32
|
+
- [ ] Completed work checklist
|
|
33
|
+
- [ ] Key decisions
|
|
34
|
+
- [ ] Next stage preparation items
|
|
35
35
|
|
|
36
|
-
##
|
|
36
|
+
## Automated Validation Script
|
|
37
37
|
|
|
38
38
|
```bash
|
|
39
|
-
# ideas.md
|
|
39
|
+
# Check idea count in ideas.md
|
|
40
40
|
grep -c "^## " outputs/ideas.md
|
|
41
41
|
|
|
42
|
-
# requirements_analysis.md
|
|
43
|
-
grep -E "^## (
|
|
42
|
+
# Check sections in requirements_analysis.md
|
|
43
|
+
grep -E "^## (Functional|Non-Functional)" outputs/requirements_analysis.md
|
|
44
44
|
```
|
|
45
45
|
|
|
46
|
-
##
|
|
46
|
+
## Actions on Failure
|
|
47
47
|
|
|
48
|
-
1.
|
|
49
|
-
2.
|
|
50
|
-
3.
|
|
48
|
+
1. Identify insufficient items
|
|
49
|
+
2. Generate additional ideas or supplement analysis
|
|
50
|
+
3. Re-run validation
|
|
@@ -1,91 +1,91 @@
|
|
|
1
1
|
# Brainstorming Ideas
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
**Project**: {{PROJECT_NAME}}
|
|
4
|
+
**Created**: {{DATE}}
|
|
5
|
+
**Created By**: {{MODEL}} (Gemini + ClaudeCode)
|
|
6
6
|
|
|
7
7
|
---
|
|
8
8
|
|
|
9
|
-
##
|
|
9
|
+
## Core Feature Ideas
|
|
10
10
|
|
|
11
|
-
###
|
|
11
|
+
### Idea Summary Table
|
|
12
12
|
|
|
13
|
-
| # |
|
|
14
|
-
|
|
13
|
+
| # | Feature Name | Description | User Value | Complexity | Innovation |
|
|
14
|
+
|---|--------------|-------------|------------|------------|------------|
|
|
15
15
|
| 1 | | | | | |
|
|
16
16
|
| 2 | | | | | |
|
|
17
17
|
| 3 | | | | | |
|
|
18
18
|
| ... | | | | | |
|
|
19
19
|
|
|
20
|
-
###
|
|
20
|
+
### Detailed Ideas
|
|
21
21
|
|
|
22
|
-
####
|
|
23
|
-
-
|
|
24
|
-
-
|
|
25
|
-
-
|
|
26
|
-
-
|
|
27
|
-
-
|
|
22
|
+
#### Idea 1: [Feature Name]
|
|
23
|
+
- **Description**:
|
|
24
|
+
- **User Value**:
|
|
25
|
+
- **Implementation Complexity**: Low / Medium / High
|
|
26
|
+
- **Innovation Score**: ⭐⭐⭐⭐⭐ (5/5)
|
|
27
|
+
- **Notes**:
|
|
28
28
|
|
|
29
29
|
---
|
|
30
30
|
|
|
31
|
-
##
|
|
31
|
+
## Divergent Ideas ("Crazy" Ideas)
|
|
32
32
|
|
|
33
|
-
### 🚀
|
|
34
|
-
-
|
|
35
|
-
-
|
|
36
|
-
-
|
|
33
|
+
### 🚀 Idea A: [Name]
|
|
34
|
+
- **Description**:
|
|
35
|
+
- **Impact if Successful**:
|
|
36
|
+
- **Realization Barriers**:
|
|
37
37
|
|
|
38
|
-
### 🚀
|
|
39
|
-
-
|
|
40
|
-
-
|
|
41
|
-
-
|
|
38
|
+
### 🚀 Idea B: [Name]
|
|
39
|
+
- **Description**:
|
|
40
|
+
- **Impact if Successful**:
|
|
41
|
+
- **Realization Barriers**:
|
|
42
42
|
|
|
43
|
-
### 🚀
|
|
44
|
-
-
|
|
45
|
-
-
|
|
46
|
-
-
|
|
43
|
+
### 🚀 Idea C: [Name]
|
|
44
|
+
- **Description**:
|
|
45
|
+
- **Impact if Successful**:
|
|
46
|
+
- **Realization Barriers**:
|
|
47
47
|
|
|
48
48
|
---
|
|
49
49
|
|
|
50
|
-
##
|
|
50
|
+
## Competitor/Similar Service Analysis
|
|
51
51
|
|
|
52
|
-
###
|
|
52
|
+
### Identified Services
|
|
53
53
|
|
|
54
|
-
|
|
|
55
|
-
|
|
54
|
+
| Service | Type | Strengths | Weaknesses | Differentiation Opportunity |
|
|
55
|
+
|---------|------|-----------|------------|----------------------------|
|
|
56
56
|
| | | | | |
|
|
57
57
|
|
|
58
|
-
###
|
|
58
|
+
### Detailed Analysis
|
|
59
59
|
|
|
60
|
-
#### [
|
|
60
|
+
#### [Service 1]
|
|
61
61
|
- **URL**:
|
|
62
|
-
-
|
|
63
|
-
-
|
|
64
|
-
-
|
|
65
|
-
-
|
|
62
|
+
- **Core Features**:
|
|
63
|
+
- **Pricing Model**:
|
|
64
|
+
- **Target Users**:
|
|
65
|
+
- **Our Differentiation Points**:
|
|
66
66
|
|
|
67
67
|
---
|
|
68
68
|
|
|
69
|
-
##
|
|
69
|
+
## Idea Priority Matrix
|
|
70
70
|
|
|
71
71
|
```
|
|
72
|
-
|
|
72
|
+
High Impact
|
|
73
73
|
│
|
|
74
74
|
│ ⭐ Quick Wins │ 🎯 Big Bets
|
|
75
|
-
│ (
|
|
75
|
+
│ (Idea #) │ (Idea #)
|
|
76
76
|
│ │
|
|
77
77
|
────┼────────────────────┼────────────────
|
|
78
78
|
│ │
|
|
79
79
|
│ ❌ Not Worth It │ 🔬 Experiments
|
|
80
|
-
│ (
|
|
80
|
+
│ (Idea #) │ (Idea #)
|
|
81
81
|
│
|
|
82
|
-
|
|
83
|
-
|
|
82
|
+
Low Impact
|
|
83
|
+
Low Effort High Effort
|
|
84
84
|
```
|
|
85
85
|
|
|
86
86
|
---
|
|
87
87
|
|
|
88
|
-
##
|
|
89
|
-
1.
|
|
90
|
-
2. Quick Wins
|
|
91
|
-
3. Big Bets
|
|
88
|
+
## Next Steps
|
|
89
|
+
1. Validate technical feasibility in Research stage
|
|
90
|
+
2. Prioritize Quick Wins ideas for validation
|
|
91
|
+
3. Deep dive analysis on Big Bets ideas
|