| name | tapps-review-pipeline |
| user-invocable | true |
| model | claude-sonnet-4-6 |
| description | Orchestrate a parallel review-fix-validate pipeline across multiple changed files. Spawns tapps-review-fixer agents in worktrees for parallel processing. Use when you have multiple changed Python files that need parallel review, scoring, and quality gate fixing before declaring work complete. |
| allowed-tools | mcp__nlt-build__tapps_validate_changed mcp__nlt-build__tapps_checklist |
| context | fork |
| agent | general-purpose |
Run a parallel review-fix-validate pipeline on changed Python files:
- Call
mcp__nlt-build__tapps_session_start if not already called
- Determine scope: detect changed Python files via git diff or accept a file list
- For each file (or batch of files), spawn a
tapps-review-fixer agent in a worktree:
- Use the Task tool with
subagent_type: "general-purpose" and isolation: "worktree"
- Pass the file path and instructions to score, fix, and gate the file
- Wait for all agents to complete and collect their results
- Merge any worktree changes back (review diffs before accepting)
- Call
mcp__nlt-build__tapps_validate_changed with explicit file_paths to verify all files pass
- Call
mcp__nlt-build__tapps_checklist(task_type="review") for final verification
- Present a summary table: file | before score | after score | gate | fixes applied