new-product-development
git clone https://github.com/Mysticamuse/AWESOME-CLAUDE-SKILLS
T=$(mktemp -d) && git clone --depth=1 https://github.com/Mysticamuse/AWESOME-CLAUDE-SKILLS "$T" && mkdir -p ~/.claude/skills && cp -r "$T/new-product-development" ~/.claude/skills/mysticamuse-awesome-claude-skills-new-product-development && rm -rf "$T"
new-product-development/SKILL.mdNew Product Development (NPD) Skill — V3
Universal Core + 10 Domain Overlays
This skill provides a two-layer framework:
- Layer 1 — Core NPD: The universal 8-stage process that applies to any product in any industry. Business + software engineering tracks at every stage.
- Layer 2 — Domain Overlay: When a specific industry is mentioned, Claude automatically loads the relevant domain reference file and applies domain-specific constraints, compliance requirements, technical patterns, and rollout considerations on top of the core framework.
How Claude Should Use This Skill
- Detect the domain from user context (explicit mention or inference)
- Load the domain overlay from the references/domains/ folder
- Run the core NPD framework with domain overlay applied at each stage
- Match technical depth to domain: hardware-heavy domains (IoT, MedTech) get firmware/edge depth; pure software domains (FinTech, EdTech) get cloud/API depth
- Apply domain gate criteria alongside universal gate criteria
Domain detection keywords:
| Domain | Trigger Keywords |
|---|---|
| Industrial IoT | CNC, shop floor, OPC UA, MTConnect, Modbus, PLC, edge device, factory, manufacturing, rugged |
| Healthcare | HIPAA, FDA, EHR, clinical, patient data, medical device, ICD-10, HL7, FHIR |
| FinTech | payments, banking, KYC, AML, PCI-DSS, lending, insurance, trading, wallet |
| Retail | e-commerce, POS, inventory, omnichannel, merchandising, loyalty, SKU |
| AgriTech | precision farming, crop, soil, drone, irrigation, livestock, harvest, field sensor |
| EdTech | LMS, learning, curriculum, assessment, student, SCORM, xAPI, classroom |
| Logistics | fleet, tracking, last-mile, warehouse, supply chain, shipment, route optimisation |
| Energy | grid, solar, wind, EV charging, SCADA, smart meter, microgrid, battery storage |
| Real Estate | property, PropTech, tenant, lease, building management, BMS, smart building |
| Government | smart city, citizen services, GovTech, public sector, open data, e-governance |
When domain is detected, read the relevant file in
before responding. When no domain is detected, use the core framework only.references/domains/
NPD Process Overview (8 Stages)
Stage 1 → Idea Generation Stage 2 → Idea Screening Stage 3 → Concept Development & Testing Stage 4 → Business Analysis Stage 5 → Product Development / Prototyping Stage 6 → Market Testing Stage 7 → Commercialization / Launch Stage 8 → Post-Launch Review & Iteration
At each stage, Claude applies:
- Universal activities (below)
- Domain-specific additions (from overlay file)
Stage-by-Stage Core Framework
Stage 1 — Idea Generation
Business track:
- Brainstorming: SCAMPER, How Might We, Jobs-to-be-Done
- Customer interviews and pain point mapping
- Competitive gap analysis, internal innovation sessions
Technical track:
- Engineering-led ideation: internal tools → external products
- OSS ecosystem gap analysis
- AI/ML opportunity mapping
- Platform thinking: what infrastructure can become a product?
Deliverable: Idea backlog with source, rationale, feasibility note Gate: 5–10 distinct ideas documented
Stage 2 — Idea Screening
Business track:
- Scoring matrix: strategic fit, market size, competitive advantage
- SWOT per idea; alignment with mission and resources
Technical track:
- Build vs. buy vs. integrate decision
- Stack and skills assessment
- AI/ML viability check
- Regulatory / compliance pre-check
- OSS dependency and licensing risk
Deliverable: Ranked shortlist + technical feasibility summary Gate: Top idea passes scoring matrix on all dimensions including technical risk
Stage 3 — Concept Development & Testing
Business track:
- Concept statement (problem / solution / user / benefit)
- 2–3 concept variants; concept tests; willingness-to-pay signals
Technical track:
- Time-boxed technical PoC (2–5 days) to validate core assumptions
- API / integration mapping
- LLM/AI concept validation (if applicable)
- Initial architecture sketch: monolith vs. microservices vs. serverless vs. edge
- Data availability check for AI/ML products
Deliverable: Concept brief + PoC findings + architecture sketch Gate: Users desire concept AND PoC validates technical assumptions
See
for validation methods Seereferences/concept-testing.mdfor PoC patternsreferences/technical-poc.md
Stage 4 — Business Analysis
Business track:
- TAM / SAM / SOM market sizing
- Revenue model and pricing strategy
- Cost estimation: COGS, development, marketing
- Break-even, ROI, risk assessment
Technical track:
- Cloud cost model (compute, storage, networking, APIs at scale)
- LLM cost engineering (token cost × query volume)
- Build vs. buy TCO analysis
- Security and compliance cost estimation
- Engineering team sizing by role and duration
Deliverable: Business case + cloud cost model + engineering resource plan Gate: ROI meets threshold; costs sustainable at scale; risks mitigable
See
for financial templates Seereferences/business-analysis.mdfor infrastructure cost modelsreferences/cloud-cost-modeling.md
Stage 5 — Product Development / Prototyping
Business track:
- MVP scope via MoSCoW prioritization
- Agile sprints; usability testing; QA feedback loops
Technical track:
Architecture & System Design:
- Cloud reference architecture selection (SaaS / AI / data platform / API / edge)
- ADRs for every major technology decision
- Database selection: OLTP / OLAP / vector / NoSQL
- Scalability: horizontal scaling, Redis caching, CDN, async queues
- API design: REST / GraphQL / gRPC + OpenAPI spec
AI / LLM Engineering (where applicable):
- LLM selection: proprietary vs. open-source; evaluation rubric
- RAG pipeline: ingestion → chunking → embedding → retrieval → reranking → response
- Prompt engineering, versioning, and A/B testing
- LLMOps: observability, fallback strategy, eval suite
- Evaluation: faithfulness, relevance, groundedness, latency, cost per query
DevSecOps:
- CI/CD pipeline (GitHub Actions / GitLab CI / Cloud Build)
- Infrastructure as Code: Terraform / Pulumi; Helm for Kubernetes
- Secrets management; SAST/DAST in CI; zero-trust IAM
- Testing pyramid: unit → integration → contract → e2e → load
Observability:
- Logs + Metrics + Traces (OpenTelemetry standard)
- SLIs / SLOs / error budgets defined before launch
- Alerting runbooks for every alert
- LLM cost dashboards and quality monitoring
Deliverable: Working MVP + ADRs + CI/CD live + observability configured + security baseline + eval suite passing + load test done Gate: Core flows work; security clean; observability live; load test passed
See
for patterns See domain overlay for hardware/firmware/edge specificsreferences/devSecOps.md
Stage 6 — Market Testing
Business track:
- Beta / limited release; pricing experiments; A/B testing
- NPS, activation, retention data collection
Technical track:
- Canary deployment: 1% → 5% → 25% → 50% → 100%
- Feature flag rollout with kill-switch
- Real-load performance monitoring (p50/p95/p99 latency)
- LLM quality review on production traces
- Cost validation: actual vs. projected
- Security penetration test
- Data pipeline validation; analytics trustworthiness check
- On-call readiness verification
Deliverable: Market test report + performance benchmark + cost validation + security pen test sign-off Gate: Metrics meet targets; error rate below threshold; security passed; cost within model
Stage 7 — Commercialization / Launch
Business track:
- GTM plan: positioning, messaging, channels, pricing
- Sales and support enablement; PR and demand generation
Technical track — Launch Checklist:
- Auto-scaling configured and tested under synthetic peak load
- Rollback plan documented and executable in < 15 minutes
- Status page live
- On-call rota active with escalation paths
- Rate limiting and DDoS protection active
- All secrets rotated; IAM permissions audited
- GDPR / data privacy compliance verified
- Backups tested and recovery time confirmed
- LLM prompt versions locked; fallback model configured (if applicable)
- API reference and getting-started guide published (for API/platform products)
Deliverable: GTM plan + signed-off technical launch checklist + runbooks + docs Gate: All teams ready; technical checklist 100%; rollback tested
See
for GTM templatesreferences/launch-planning.md
Stage 8 — Post-Launch Review & Iteration
Business track:
- KPI tracking vs. targets; win/loss analysis; customer feedback
- Backlog prioritization for v2
Technical track:
- DORA metrics baseline: deployment frequency, lead time, MTTR, change failure rate
- LLM performance review: cost trend, eval scores, model re-evaluation
- Technical debt register: document shortcuts; prioritise paydown
- Security posture review; credential rotation; next pen test scheduled
- FinOps review: top 3 cost drivers; reserved capacity opportunities
Deliverable: Post-launch review + DORA metrics + debt register + cost plan + v2 roadmap Gate: Shipped; learnings captured; next cycle planned
Quick-Reference: Stage Summary Table
| Stage | Business Deliverable | Technical Deliverable | Gate Criteria |
|---|---|---|---|
| 1. Idea Generation | Idea backlog | Feasibility notes | 5–10 ideas |
| 2. Idea Screening | Ranked shortlist | Build/buy/integrate decision | Passes matrix |
| 3. Concept Testing | Concept brief | PoC + arch sketch | Validated |
| 4. Business Analysis | Business case | Cost model + team plan | ROI threshold |
| 5. Prototyping | Working MVP | ADRs + CI/CD + observability | All criteria met |
| 6. Market Testing | Test report | Perf + security sign-off | Metrics pass |
| 7. Launch | GTM plan | Technical checklist 100% | All teams ready |
| 8. Post-Launch | Review + roadmap | DORA + debt register | Shipped + learned |
Domain Overlays Available
Load the relevant file from
references/domains/ when a domain is detected:
| Domain | File | Key Additions |
|---|---|---|
| Industrial IoT / Manufacturing | | CNC protocols, edge, OT/IT security, fleet ops |
| Healthcare / MedTech | | FDA, HIPAA, HL7/FHIR, clinical validation |
| FinTech / Banking | | PCI-DSS, KYC/AML, open banking, fraud |
| Retail / E-commerce | | POS, inventory, omnichannel, personalisation |
| AgriTech / Food | | Field sensors, precision farming, traceability |
| EdTech / Learning | | LMS, SCORM/xAPI, accessibility, assessments |
| Logistics / Supply Chain | | Fleet, last-mile, warehouse, route optimisation |
| Energy / CleanTech | | Grid, SCADA, EV charging, smart meters |
| Real Estate / PropTech | | BMS, smart building, tenant, lease management |
| Government / Smart Cities | | GovTech, open data, citizen services, e-gov |
Core Reference Files
— Stage 3 validation methodsreferences/concept-testing.md
— Financial modeling, Stage 4references/business-analysis.md
— Cloud + LLM cost engineeringreferences/cloud-cost-modeling.md
— GTM and launch templatesreferences/launch-planning.md
— PoC patterns and LLM evaluationreferences/technical-poc.md
— CI/CD, security, observability patternsreferences/devSecOps.md