Project Handoff Pipeline¶
A maturity-driven pipeline so ideas only reach autonomous execution once they're ready, and they get routed to the right runtime (local / cloud / home-lab).
Pipeline¶
flowchart LR
Idea[Idea in AnyType] --> Shaping[Shaping with PKM + wiki]
Shaping --> Score[handoff-readiness-assessor]
Score -- Go --> Packet[project-packet-builder]
Score -- Conditional --> Remediate[One remediation pass]
Score -- No-Go --> Park[Park / continue shaping]
Remediate --> Score
Packet --> Route[execution-router]
Route --> Local[Local agent]
Route --> Cloud[Cloud agent]
Route --> HomeLab[Home-lab agent]
Local --> Eval[post-handoff evaluation]
Cloud --> Eval
HomeLab --> Eval
Eval --> Calibrate[Adjust one variable]
Calibrate --> Score
Files¶
readiness-rubric.md— the 5-dimension, 0-5 scoring rubric with go/conditional/no-go thresholds.routing-policy.md— deterministic rules for runtime selection.templates/readiness-scoring-sheet.md— fill-in scoring template.templates/handoff-packet.md— fill-in packet template.templates/post-handoff-evaluation.md— outcome log template.calibration-changelog.md— single-variable changes per trial.
Companion skills¶
handoff-readiness-assessor— score against the rubric, emit decision.project-packet-builder— generate a complete handoff packet from PKM + wiki context.execution-router— apply routing policy and emit chosen runtime + rationale.
Success gate¶
5-trial calibration loop with ≥ ⅗ trials succeeding first-pass and ≤ 1 major rework loop on successful handoffs.