Jtbd opportunity calculator
Skill lishix520/jtbd-skills/skills/jtbd-opportunity-calculator
Modular agent skills for Jobs-to-be-Done and Outcome-Driven Innovation research.
npx -y skills add lishix520/jtbd-skills --skill jtbd-opportunity-calculatorAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- 14 days oldThe repository was created 14 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
- 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Compute quantitative Outcome-Driven Innovation (ODI) Opportunity Scores from customer importance and satisfaction survey ratings. Use when given numerical survey data (1-10 scale), mean importance and satisfaction scores, or survey JSON/CSV files, and asked to compute opportunity scores, classify outcomes into opportunity tiers, or run the deterministic calculation script. Do not use to invent survey scores from qualitative text or recommend product strategy.
SKILL.md
4.5 KB, ~1.0k tokens by cl100k_base, as published. Nobody here has run it
JTBD Opportunity Calculator
Use customer importance and satisfaction ratings to pinpoint the most valuable unaddressed needs.
Use this when
- You have quantitative survey rating data ($1\text{--}10$ scale) for customer desired outcomes.
- You need to compute mathematical ODI Opportunity Scores ($Opp = Importance + \max(Importance - Satisfaction, 0)$).
- You want to classify outcome metrics into
extreme_underserved,high_underserved,moderate_underserved,appropriately_served, oroverserved_candidate.
Don't use this when
- You do not have numerical survey data (never convert qualitative interview text into fake numbers!).
- You need to formulate outcome metric statements from scratch (use
jtbd-outcome-engineer). - You need to evaluate market growth strategies (use
jtbd-growth-strategist).
Minimum input
- Minimum Input: Numerical importance and satisfaction mean ratings on a matching $1\text{--}10$ scale, sample size $N$, and outcome statements.
- Templates Available: Use templates under
skills/jtbd-opportunity-calculator/templates/:survey-input-template.jsonsurvey-input-template.csvsurvey-question-template.md
If ratings are missing or scales are non-10-point, returns calculation_status: blocked.
What you get
- Executive Summary: Top underserved outcomes, outcomes not to prioritize, data strength rating, and recommended next steps.
- Mathematical Opportunity Scores: Exact deterministic score calculations ($Opp$ range $1.0\text{--}20.0$).
- Outcome Classifications: Objective categorization based on mathematical thresholds.
Quick prompt
"Compute Opportunity Scores for this survey data: '[Paste JSON/CSV ratings or run calculate_opportunity.py]'."
What to do next
- High underserved outcomes ($Opp \ge 10.0$)? Collect market price/cost/performance evidence and pass to
jtbd-growth-strategistto evaluate candidate growth strategies.
Mathematical Formula
$$\text{Opportunity Score (Opp)} = \text{Importance} + \max(\text{Importance} - \text{Satisfaction}, 0)$$
- Scale Requirement: Importance and Satisfaction MUST be on matching $1.0\text{--}10.0$ scales.
- Threshold Classifications:
extreme_underserved: $Opp \ge 15.0$high_underserved: $12.0 \le Opp < 15.0$moderate_underserved: $10.0 \le Opp < 12.0$appropriately_served: $8.0 \le Opp < 10.0$overserved_candidate: $Opp < 8.0$ (Requires $S > I$)
Deterministic Script Execution
Run the bundled Python calculation script directly against a survey JSON file:
python3 skills/jtbd-opportunity-calculator/scripts/calculate_opportunity.py \
path/to/survey_input.json > opportunity_results.json
Output Format
executive_summary:
top_underserved_outcomes: []
outcomes_not_to_prioritize: []
data_strength: exploratory | adequate_but_not_representative | unverified
recommended_next_step: ""
survey_metadata:
importance_scale: "1_to_10"
satisfaction_scale: "1_to_10"
sample_size: 0
population_definition: ""
collection_method: ""
data_quality_status: complete | incomplete | invalid
calculation_status: completed | blocked
methodological_assessment:
sample_size_status: adequate | small
representativeness: unverified
collection_method_status: reported | missing
scale_handling:
calculation_scale: "1_to_10"
normalization: "none"
threshold_interpretation: "standard"
results:
- id: ""
statement: ""
importance_mean: 0.0
satisfaction_mean: 0.0
satisfaction_gap: 0.0
satisfaction_relation: below_importance | equal | above_importance
opportunity_score: 0.0
classification: extreme_underserved | high_underserved | moderate_underserved | appropriately_served | overserved_candidate
overserved_signal: true | false
segment: ""
data_limitations: []
Reference
Read references/opportunity-algorithm-rules.md before:
- Handling small sample sizes ($N < 100$)
- Evaluating satisfaction relations ($S > I$)
- Rejecting non-10-point scales