Skip to main content

Value Stream Map

Where does time die when creating a venture on the platform?

Current State (Manual)

[NEED]  →  Wire Composition  →  Wire A2A  →  Scope DB  →  Register Agent  →  Verify  →  [VENTURE]
Root Endpoints Tables Card Boot
StepCycle TimeWait Time%C&ABottleneck?
Wire composition root4h0h60%No
Wire A2A endpoints4h2h (decision on namespace)50%Yes — requires arch knowledge
Scope database tables8h4h (migration review)70%Yes — 18 tables × manual FK
Register agent card2h1h (naming convention)80%No
Verify boot4h0h30%Yes — no test script existed

Lead time: 29 hours (over 3-5 days with context switching) Cycle time: 22 hours Flow efficiency: 22 / 29 = 76% (misleadingly high — real efficiency is low because the entire stream runs once per venture)

Future State (Generator)

[NEED]  →  nx g sprout  →  Boot  →  Accept  →  [VENTURE]
(templates) (auto) (script)
StepCycle TimeWait Time%C&A
Run generator2 min095%
Cold boot30 sec090%
Run acceptance test1 min099%

Lead time: ~4 minutes Improvement: 29 hours → 4 minutes (435x reduction)

Seven Wastes Analysis

WasteCurrent StateGenerator Eliminates?
Waiting7h decision/review waitsYes — decisions encoded in templates
Rework30% boot failures from wiring errorsYes — tested templates
MotionContext switching across 18 tablesYes — single command
Over-processingManual FK validation per tableYes — generator knows schema
TransportCopy-paste from drmg-sales patternsYes — additive templates

Key Finding

The bottleneck isn't any single step — it's that the stream runs at all. The generator eliminates the entire manual stream, not just the slow parts.

Context