You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sistema standalone para crear, analizar y validar planes de negocio completos y profesionales. Dual-LLM para fases estratégicas. Sin dependencias externas — todas las capacidades de investigación, extracción, redacción y evaluación están integradas como skills.
Arquitectura
├── skills/ # Skills del pipeline + negocio
│ ├── pipeline-*/ # 9 fases del pipeline
│ ├── alex-hormozi-pitch/ # Pitch tipo Hormozi
│ ├── straight-line-closer/ # Cierre tipo Jordan Belfort
│ ├── 10x-closer/ # Cierre 10x
│ ├── growth-multiplier/ # Crecimiento exponencial
│ ├── lead-gen-strategist/ # Generación de leads
│ ├── magnetic-marketer/ # Marketing magnético
│ ├── influence-engineer/ # Ingeniería de influencia
│ ├── copy-chief/ # Copywriting persuasivo
│ ├── reality-distortion/ # Reality distortion field
│ ├── wealth-philosopher/ # Filosofía de riqueza
│ ├── entrepreneur-strategist/ # Estrategia emprendedora
│ ├── customer-value/ # Valor del cliente
│ ├── data-extraction/ # Extracción de datos
│ ├── data-crosscheck/ # Validación cruzada
│ ├── business-canvas/ # BMC / Lean Canvas
│ ├── competitive-analysis/ # Análisis competitivo
│ └── risk-assessment/ # Evaluación de riesgos
│
├── scripts/
│ ├── business-plan-pdf.mjs # Generador PDF (Puppeteer)
│ └── validate_plan.py # Validador de artefactos
│
├── schemas/ # JSON Schemas para cada artefacto
│ ├── brief.schema.json
│ ├── ground-truth.schema.json
│ ├── market-analysis.schema.json
│ ├── financials.schema.json
│ ├── strategy.schema.json
│ ├── judge-report.schema.json
│ └── cross-check-report.schema.json
│
├── templates/
│ └── business-plan-template.html # Template HTML para PDF
│
├── tests/ # Tests unitarios
│ ├── fixtures/ # JSON de ejemplo por fase
│ ├── test_schemas.py
│ ├── test_artifacts.py
│ ├── test_pdf_generator.py
│ └── run_all.sh
│
├── tools/ # Herramientas auxiliares
│ ├── financial-charts.py
│ ├── financial-sensitivity.py
│ ├── sector-benchmarks.py
│ └── ...
│
├── research-frameworks/
│ └── BUSINESS-PLANNING-FRAMEWORKS.md # Frameworks de referencia
│
└── generate-skill-registry.py # Genera skill-registry.json
Nota: Las skills son instrucciones (archivos SKILL.md) que guían al LLM. No son código ejecutable — son prompts estructurados que definen cómo ejecutar cada fase.