Pipeline
Full Claudito pipeline - the complete chain for bulletproof fixes
---
description: Full Claudito pipeline - the complete chain for bulletproof fixes
allowed-tools: Skill, Bash, Read, Grep, Edit, Write
---
# Pipeline - Master Chain Command
## CRITICAL: USER APPROVAL GATE
**NO CODE CHANGES WITHOUT TREY'S EXPLICIT APPROVAL**
The pipeline ALWAYS stops after ARCHITECT and BEFORE FIXER to:
1. REPORT all findings
2. SHOW proposed changes with code preview
3. WAIT for "OK" or "approved" from Trey
4. ONLY THEN proceed to apply fixes
WARDEN → ENTOMOLOGIST → FORENSICS → ARCHITECT ↓ 🛑 USER APPROVAL (Pipeline PAUSES here) ↓ (After Trey approves) ↓ FIXER → DEBUGGER → etc.
## PROMPT CHAINING EXECUTION
This pipeline uses **prompt chaining** - each step outputs in XML tags that feed into the next step.
### STEP 1: WARDEN (Scope Check)
Input: $ARGUMENTS (the task)
Output:
**IF scope_approved=false, STOP and ask user.**
### STEP 2: FORENSICS (Find Issues)
Input:
### STEP 3: ARCHITECT (Plan Fix)
Input:
### STEP 4: FIXER (Apply Fix)
Input:
### STEP 5: DEBUGGER (Test)
Input:
### STEP 6: CRITIC (Review) - LOOP POINT
Input:
**IF approved=false, LOOP back to FIXER with constraints. Max 3 loops.**
### STEP 7: VALIDATOR (Quality Gate)
Input:
### STEP 8: FORENSICS AGAIN (Landmine Check)
Input:
**IF clean=false, mini fix cycle: FIXER → DEBUGGER → VALIDATOR → back here**
### STEP 9: SCRIBE (Document)
Input: All previous outputs Output: Updates to ogz-meta/claudito_context.md
### STEP 10: COMMITTER (Git)
Input:
### STEP 11: CHANGELOG
Input:
### STEP 12: JANITOR (Cleanup)
Output:
### STEP 13: LEARNING (Record)
Input: All outputs from pipeline
Output:
### STEP 14: WARDEN (Final Check)
Input: All changes made
Output:
## EXECUTION COMMAND
When `/pipeline` is invoked with arguments, execute ALL steps above in sequence.
Pass outputs between steps using the XML tags shown.
STOP on any blocking failure and report to user.
## THE FULL CHAIN
### PHASE 1: Analysis & Planning
```yaml
step: 1
clauditos: [Orchestrator, Warden, Architect, Purpose]
flow:
1. Orchestrator: Receive task, coordinate team
2. Warden: Check for scope creep, enforce standards
3. Architect: Design technical approach
4. Purpose: Verify alignment with mission
hooks:
- TASK_RECEIVED → Orchestrator
- SCOPE_CHECKED → Warden
- APPROACH_DESIGNED → Architect
- MISSION_ALIGNED → Purpose
PHASE 2: Fix Cycle (ITERATIVE)
step: 2
clauditos: [Fixer, Debugger, Validator, Critic]
flow:
1. Fixer: Apply minimal fix
2. Debugger: Test the fix works
3. Validator: Quality gate check
4. Critic: Find weaknesses
LOOP until Critic approves:
→ Fixer (address weaknesses)
→ Debugger (retest)
→ Validator (revalidate)
→ Critic (review again)
max_iterations: 3
hooks:
- FIX_APPLIED → Fixer
- TESTS_PASSED → Debugger
- QUALITY_GATE_PASSED → Validator
- CRITIC_APPROVED → Critic (or CRITIC_REJECTED with constraints)
PHASE 3: Deep Verification
step: 3
clauditos: [CI/CD, Telemetry, Validator, Forensics]
flow:
1. CI/CD: Run full test suite
2. Telemetry: Check metrics, no regressions
3. Validator: Final quality check
4. Forensics: Hunt for landmines introduced
IF Forensics finds issues:
→ Fixer → Debugger → Validator → Critic → Forensics
(mini fix cycle)
hooks:
-
Maintain Pipeline?
Let people know it's listed here — add the badge (live metrics, light/dark aware) or a plain link to your README or docs.
[Pipeline on getagentictools](https://getagentictools.com/loops/cgp-me-pipeline-master-chain-command?ref=badge) npx agentictools info loops/cgp-me-pipeline-master-chain-command The second line is the CLI lookup for this page — handy in READMEs and docs.