feat(pipeline): PIPELINE-ALPHA — 10-step tri pipeline orchestrator#580
Merged
Conversation
- Add src/tri/pipeline.zig - PipelineRun: 10-step orchestrator (scan→pick→research→spec→gen→test→verdict→experience→commit→loop) Fail threshold (3 consecutive = stop), progress tracking Issue binding, step recording, shouldContinue logic - ExperienceStore: cross-session experience persistence findSimilar for pattern matching, success rate tracking - ToxicVerdict: before/after scoring with delta threshold Multi-category verdict aggregation, overall pass/fail - Verdict: per-category with before→after delta - 6 tests: step recording, progress, fail threshold, experience save/query, verdict pass, verdict fail Closes #496
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
PIPELINE-ALPHA: 10-step automated development pipeline orchestrator.
New file
src/tri/pipeline.zig— 326 LOCPipeline steps
scan— find similar issues + experiencepick— smart selection with MNL avoidanceresearch— immutable GitHub recordspec_create— reuse closest templategen— .tri → .zig via VIBEEtest— run tests, capture failuresverdict— toxic verdict checkexperience_save— persist episode + learningsgit_commit— commit with issue referenceloop_decide— continue or stopComponents
PipelineRun: step tracking, fail threshold (3), progressExperienceStore: cross-session memory, pattern matching, success rateToxicVerdict: before/after scoring with delta thresholdVerdict: per-category pass/failTests (6)
Closes #496