Skip to content

momentumfurkan/idea-to-project-pipeline

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Idea to Project Pipeline

One idea in, complete project out — automatically.

Türkçe | English


🇹🇷 Türkçe

Bir iş fikri verin, karşılığında kodlamaya hazır komple bir proje alın. Bu Claude Code skill'i 3 fazlı bir pipeline çalıştırır: fikri anlar, rakipleri araştırır, ve tam bir proje iskeleti üretir — tek komutla.

Ne Yapar?

Faz Ne Olur Çıktı
Faz 1: Fikir Yakalama Fikri anlar, kısa sorular sorar, iş özeti üretir Business_Brief.md
Faz 2: Rakip Analizi 20 rakip bulur, özellik matrisi, fiyat, şikayet, marka, tech stack analizi 7 dosya (HTML + DOCX + Excel)
Faz 3: Proje Blueprint PRD, DB şema, API kontratları, mikro-servis haritası, CLAUDE.md, multi-agent mimari 14+ MD dosya + modül specleri

Çıktı Dosyaları

UrunAdi/
├── UrunAdi_Business_Brief.md               # Faz 1: İş özeti
├── analysis/                                # Faz 2: Rakip analizi
│   ├── UrunAdi_Tam_Rapor.html              # İnteraktif dashboard
│   ├── UrunAdi_Strateji_Raporu.docx        # Özellik matrisi, gap, AI
│   ├── UrunAdi_Fiyatlandirma_Raporu.docx   # Fiyat analizi, gelir projeksiyonu
│   ├── UrunAdi_Analiz.xlsx                 # 11 sayfalık Excel
│   ├── UrunAdi_Sikayetler.html             # Rakip zayıf noktaları
│   ├── UrunAdi_Marka_Onerileri.html        # 30 isim + renk paletleri
│   └── UrunAdi_Tech_Stack.html             # Teknoloji karşılaştırması
└── blueprint/                               # Faz 3: Proje iskeleti
    ├── 00_OVERVIEW.md                       # Okuma rehberi
    ├── 01_HIGH_LEVEL_PRD.md                 # İş odaklı PRD
    ├── 02_TECHNICAL_PRD.md                  # Teknik PRD
    ├── 03_ARCHITECTURE.md                   # Mimari kararlar
    ├── 04_DATABASE_SCHEMA.md                # DB tabloları, ilişkiler, RLS
    ├── 05_API_CONTRACTS.md                  # Tüm endpoint'ler
    ├── 06_MICROSERVICE_MAP.md               # Modül haritası
    ├── 07_FRONTEND_STRUCTURE.md             # Klasör yapısı
    ├── 08_BACKEND_STRUCTURE.md              # Backend yapısı
    ├── 09_CODING_RULES.md                   # Kodlama kuralları
    ├── 10_TESTING_STRATEGY.md               # Test stratejisi
    ├── 11_MULTI_AGENT_ARCHITECTURE.md       # AI agent geliştirme planı
    ├── 12_IMPLEMENTATION_ROADMAP.md         # Sprint planı
    ├── 13_DEVOPS_PIPELINE.md                # CI/CD, ortamlar
    ├── CLAUDE.md                            # AI agent ana rehberi
    ├── README.md                            # Proje README'si
    └── modules/                             # Her modül için ayrı spec
        ├── auth/
        │   ├── SPEC.md
        │   ├── CLAUDE.md
        │   └── SCHEMA.md
        ├── dashboard/
        └── [diger_moduller]/

Kullanım

Fikrinizi söyleyin, gerisini skill halleder:

"Freelancerlar için kişisel ERP uygulaması yapıyorum.
Finans, proje yönetimi, CRM modülleri olacak. Flutter + Supabase."
"Restoran yönetim sistemi istiyorum — sipariş, stok, mutfak ekranı, QR menü."

Tetikleyici İfadeler

  • "fikir ver projeyi hazırla"
  • "sıfırdan proje kur"
  • "bu fikri projeye çevir"
  • "komple analiz ve proje planı"
  • "her şeyi yap"

Önemli Özellikler

  • 3 faz otomatik çalışır — arada "devam edelim mi?" sormaz
  • 20'ye kadar rakip araştırılır
  • 30-50 özellik karşılaştırma matrisi
  • Her modül için ayrı spec — AI agent'lar paralel geliştirebilir
  • Multi-agent mimari — Architect → Module Agents → Integration → QA → DevOps
  • Dil desteği — Türkçe yazarsanız Türkçe, İngilizce yazarsanız İngilizce üretir

🇬🇧 English

Give a business idea, get a complete coding-ready project in return. This Claude Code skill runs a 3-phase pipeline: understands the idea, researches competitors, and generates a full project scaffold — in one command.

What It Does

Phase What Happens Output
Phase 1: Idea Capture Understands the idea, asks focused questions, produces business brief Business_Brief.md
Phase 2: Competitive Intel Finds 20 competitors, feature matrix, pricing, complaints, brand, tech stack 7 files (HTML + DOCX + Excel)
Phase 3: Project Blueprint PRD, DB schema, API contracts, microservice map, CLAUDE.md, multi-agent architecture 14+ MD files + per-module specs

Output Files

ProductName/
├── ProductName_Business_Brief.md            # Phase 1: Business brief
├── analysis/                                 # Phase 2: Competitive intel
│   ├── ProductName_Full_Report.html         # Interactive dashboard
│   ├── ProductName_Strategy_Report.docx     # Feature matrix, gaps, AI
│   ├── ProductName_Pricing_Report.docx      # Pricing analysis, revenue projection
│   ├── ProductName_Analysis.xlsx            # 11-sheet Excel workbook
│   ├── ProductName_Complaints.html          # Competitor weaknesses
│   ├── ProductName_Brand_Suggestions.html   # 30 names + color palettes
│   └── ProductName_Tech_Stack.html          # Technology comparison
└── blueprint/                                # Phase 3: Project scaffold
    ├── 00_OVERVIEW.md                        # Reading guide
    ├── 01_HIGH_LEVEL_PRD.md                  # Business-facing PRD
    ├── 02_TECHNICAL_PRD.md                   # Engineering PRD
    ├── 03_ARCHITECTURE.md                    # Architecture decisions
    ├── 04_DATABASE_SCHEMA.md                 # Tables, relationships, RLS
    ├── 05_API_CONTRACTS.md                   # All endpoints
    ├── 06_MICROSERVICE_MAP.md                # Module map
    ├── 07_FRONTEND_STRUCTURE.md              # Folder structure
    ├── 08_BACKEND_STRUCTURE.md               # Backend structure
    ├── 09_CODING_RULES.md                    # Coding standards
    ├── 10_TESTING_STRATEGY.md                # Test strategy
    ├── 11_MULTI_AGENT_ARCHITECTURE.md        # AI agent development plan
    ├── 12_IMPLEMENTATION_ROADMAP.md          # Sprint plan
    ├── 13_DEVOPS_PIPELINE.md                 # CI/CD, environments
    ├── CLAUDE.md                             # AI agent master guide
    ├── README.md                             # Project README
    └── modules/                              # Per-module specs
        ├── auth/
        │   ├── SPEC.md
        │   ├── CLAUDE.md
        │   └── SCHEMA.md
        ├── dashboard/
        └── [other_modules]/

Usage

Just describe your idea:

"I'm building an AI-powered online course platform.
React/Next.js + Supabase. Features: course creation, AI tutoring, quizzes."
"Restaurant management system — orders, inventory, kitchen display, QR menu."

Trigger Phrases

  • "idea to project"
  • "full pipeline"
  • "build the whole thing"
  • "complete analysis and project plan"
  • "set up from scratch"

Key Features

  • 3 phases run automatically — no "should I continue?" prompts between phases
  • Up to 20 competitors researched
  • 30-50 feature comparison matrix
  • Per-module specs — AI agents can develop in parallel
  • Multi-agent architecture — Architect → Module Agents → Integration → QA → DevOps
  • Language adaptive — outputs match your input language

Installation

Claude Code

claude install-skill /path/to/idea-to-project-pipeline

Manual

Copy the folder or drop the .skill file into your skills directory.

Requirements

Dependency Purpose
Node.js + docx npm package DOCX report generation
Python 3 + openpyxl Excel workbook generation
Web search access Competitor research

Dependencies are installed automatically when the skill runs.

Project Structure

├── SKILL.md                                  # Skill metadata and triggers
├── idea-to-project.skill                     # Full skill prompt (3-phase pipeline)
├── references/
│   ├── architecture_patterns.md              # Flutter, React/Next.js, backend patterns
│   └── database_patterns.md                  # Supabase, RLS, common schemas
└── evals/
    └── evals.json                            # Test prompts for validation

How It Works

User: "Şu fikrim var: ..."
         │
         ▼
╔══════════════════════════════════════╗
║  PHASE 1: IDEA CAPTURE (~2 min)     ║
║  Understand → Ask → Business Brief  ║
╠══════════════════════════════════════╣
║  PHASE 2: COMPETITIVE INTEL (~10m)  ║
║  20 competitors → features →        ║
║  pricing → complaints → brand →     ║
║  tech → HTML + DOCX + Excel         ║
╠══════════════════════════════════════╣
║  PHASE 3: PROJECT BLUEPRINT (~10m)  ║
║  PRD → DB schema → API →            ║
║  microservices → CLAUDE.md →        ║
║  multi-agent → roadmap              ║
╚══════════════════════════════════════╝
         │
         ▼
Complete project folder on your desktop

License

MIT

About

Claude Code skill: give a business idea, get a complete project — competitive analysis, PRD, DB schema, API contracts, multi-agent architecture. One command, zero manual steps.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors