Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
cleanexpo avatar

Idea To Production

  • 1 installs
  • 1 repo stars
  • Updated June 17, 2026
  • cleanexpo/unite-hub

Helps with ai & agent building tasks.

About

idea-to-production is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.

  • idea-to-production
  • AI & Agent Building
  • AI-coding skill

Idea To Production by the numbers

  • 1 all-time installs (skills.sh)
  • Ranked #14,098 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Data as of Jul 28, 2026 (Skillselion catalog sync)
npx skills add https://github.com/cleanexpo/unite-hub --skill idea-to-production

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs1
repo stars1
Last updatedJune 17, 2026
Repositorycleanexpo/unite-hub

What it does

Helps with ai & agent building tasks.

Files

SKILL.mdMarkdownGitHub ↗

Idea to Production — Plain-English Pipeline

You have an idea. Here is exactly what happens next, who does the work, and when you need to step in.

---

Got an Idea? Here's What Happens Next.

When you say "build me X" or "I have an idea for Y", Claude doesn't just start writing code. It runs your request through an 8-phase pipeline that takes you from raw idea to a reviewed, tested, production-ready pull request — with a human review gate at the end before anything ships.

You don't need to know the phases. Claude routes everything automatically. This skill documents how that routing works so you always know where you are.

---

The 8-Phase Pipeline (Plain English)

PhaseNameWhat HappensWho Does It
1IntakeClaude reads your request, classifies what kind of task it is, and decides how much process to applyOrchestrator
2DiscoveryA Product Strategist agent writes a one-page spec (PRD) that defines the problem, who it is for, and what is in scopeproduct-strategist
3DecompositionA Technical Architect maps out what files, APIs, and database tables need to change. A Senior Engineer breaks that into taskstechnical-architect, senior-engineer
4ExecutionSpecialist agents build the feature in parallel, writing tests first (TDD), then codeFrontend, backend, database specialists
5AggregationThe Orchestrator collects all the work, checks nothing conflicts, and runs the full test suiteOrchestrator
6VerificationThree independent checks run in parallel: code quality, acceptance criteria, and design reviewverification, qa-validator, design-reviewer
7IterationIf anything fails verification, the responsible agent fixes it. Maximum 2 fix cyclesSpecialists
8ProductionA PR is created with a full evidence trail. The pipeline stops here — you review and mergedelivery-manager then you

---

Routing by What You Say

Claude listens to your natural language and routes to the right starting phase.

What You SayWhat Claude HearsStarting Phase
"I have an idea for..."New product or feature conceptPhase 1 — full pipeline
"Build me X"Feature request, scope unknownPhase 1 — full pipeline
"Let's create a..."New thing from scratchPhase 1 — full pipeline
"Can we add X to the existing Y?"Feature addition, codebase existsPhase 1 — full pipeline
"Make the button say Submit instead of Send"Copy change, trivial editPhase 4 — skip discovery
"Fix the login page"Bug fixPhase 4 — root-cause first
"Make it work"Something is brokenPhase 4 — diagnose then fix
"Is it ready?"Needs verificationPhase 6 — verification only
"Ship it"Ready to releasePhase 6 then 8 — verify then PR
"What does this do?"Explanation, no build neededNo pipeline — answer only

---

Scope Classifier — 3 Questions

Before running the pipeline, Claude answers these three questions to decide how much process to apply.

Question 1: Is this a single, isolated change?

  • Yes, one file or one value — Trivial — skip to Phase 4
  • No, touches multiple areas — continue to Question 2

Question 2: Does this require changes to the database, API contracts, or authentication?

  • No — Standard — full 8-phase pipeline
  • Yes — Complex — full 8-phase pipeline with extended discovery

Question 3: Could this break existing users if it goes wrong?

  • No — proceed at current scope
  • Yes — HIGH risk flag raised — Claude pauses and confirms with you before executing

Scope Decision Table

ScopeExamplesPhases Used
TrivialChange a label, tweak a config value, fix a typo4 then 6 then 8
StandardNew page, new API endpoint, new feature flag1 through 8
ComplexNew module, database migration, auth changes, new system1 through 8 extended

---

Quick-Start Commands by Scenario

"I have a new idea"

Describe your idea in plain English in chat. Claude classifies scope automatically. For complex features, it will ask up to 3 scoping questions before starting. To explicitly trigger the discovery phase: /new-feature "your idea description"

"Fix something that is broken"

Describe the symptom, not the cause. Claude runs systematic-debugging first, then implements the fix.

pnpm turbo run test          # Check what is failing before Claude starts

"Check if it is ready to ship"

pnpm turbo run type-check    # Types
pnpm turbo run lint          # Code style
pnpm turbo run test          # All tests

Claude also runs a design review if any frontend files were changed.

"Create a PR"

Claude creates the PR at Phase 8 with full evidence. You review and merge. Claude never merges automatically.

"Something went wrong in the pipeline"

Claude will escalate to you with a clear ESCALATION report — what failed, why it cannot auto-fix, and what decision you need to make.

---

Escalation Signals — When Claude Stops and Asks You

Claude runs autonomously through the pipeline but stops for your input when:

SignalWhat Claude Does
Requirements are ambiguous after one clarifying questionOutputs BLUEPRINT_ESCALATION — describes what is unclear and what it needs from you
A fix attempt fails twice (Phase 7 cap reached)Stops, reports what failed, asks you to decide the next step
The change touches authentication, database schema, or auth configPauses and confirms with you before executing — these are HIGH risk
Rubric score below 50 after two iteration cyclesEscalates — the output is not good enough and needs your direction
Multiple agents return failures simultaneouslyEscalates — too many moving parts to auto-resolve safely

When you see an escalation, read the report. It will always tell you:

  • What the pipeline completed successfully
  • What blocked it
  • The single most important decision you need to make to unblock it

---

What You Never Need to Do Manually

The pipeline handles all of this automatically:

  • Writing tests before writing code (TDD — Iron Law)
  • Checking type safety (pnpm turbo run type-check)
  • Running the linter (pnpm turbo run lint)
  • Running the test suite (pnpm turbo run test)
  • Checking that design tokens are used correctly (Scientific Luxury system)
  • Writing the PR description with evidence
  • Checking that nothing from another part of the codebase was accidentally broken

---

Phase Detail Reference

Phase 1: Intake

Owner: orchestrator

1. Classify intent via CLI Control Plane (BUILD, FIX, REFACTOR, etc.) 2. Assess scope: trivial / standard / complex 3. Assess risk: LOW / MEDIUM / HIGH 4. Decide phase range — trivial tasks skip to Phase 4

Phase 2: Discovery

Owner: product-strategist

1. If context is insufficient, run spec-builder interview mode (up to 3 questions) 2. Draft PRD covering problem, users, scope, non-goals, and success metrics 3. Score PRD against rubric via qa-validator (threshold: 70 to proceed, 50-69 iterate, below 50 escalate)

Phase 3: Decomposition

Owner: technical-architect then senior-engineer

1. Technical-architect produces architecture delta (what files and contracts change) 2. Score architecture against rubric via qa-validator 3. Senior-engineer decomposes into implementation tasks 4. Orchestrator assigns tasks to specialist agents

Phase 4: Execution

Owner: orchestrator (coordination), specialists (implementation)

1. Specialists write a failing test first — always 2. Specialists write minimal code to make the test pass 3. Each specialist reports completion with evidence

Phase 5: Aggregation

Owner: orchestrator

1. Collect all specialist outputs 2. Verify interface contracts match across layers 3. Resolve any integration conflicts 4. Run pnpm turbo run type-check lint test

Phase 6: Verification

Three parallel tracks — all must clear thresholds or Phase 7 runs:

TrackAgentChecks
Codeverificationtype-check, lint, test
Acceptanceqa-validatorrubric score 0-100
Designdesign-reviewerUX audit (frontend changes only)

Phase 7: Iteration

Owner: orchestrator

  • Maximum 2 fix cycles
  • Each failure routed to the responsible agent
  • After fixes, Phase 6 re-runs
  • If cap exceeded — escalate to user

Phase 8: Production

Owner: delivery-manager

1. Score release against release rubric 2. Create PR with full evidence trail 3. Produce hand-off documentation 4. STOP — human review gate — you merge, never Claude

---

Where Things Live

WhatWhere
Full harness protocol.claude/AGENT_HARNESS.md
All agent definitions.claude/agents/*/agent.md
Idea to PRD workflow.claude/workflows/idea-to-prd.md
PRD to Spec workflow.claude/workflows/prd-to-spec.md
Spec to Build workflow.claude/workflows/spec-to-build.md
Build to Release workflow.claude/workflows/build-to-release.md
Quality rubrics.claude/rubrics/
Orchestrator agent.claude/agents/orchestrator/agent.md
All 65 skills.skills/AGENTS.md

---

One-Line Summary

You describe what you want. Claude figures out the scope, writes the spec, builds it with tests, verifies it three ways, and hands you a PR. You review and merge. Nothing ships without you.

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.