93 lines
2.6 KiB
Markdown
93 lines
2.6 KiB
Markdown
---
|
|
description: Verify phase completion and create checkpoint commit
|
|
agent: tier2-tech-lead
|
|
---
|
|
|
|
# /conductor-verify
|
|
|
|
Execute phase completion verification and create checkpoint.
|
|
|
|
## Prerequisites
|
|
- All tasks in the current phase must be marked `[x]`
|
|
- All changes must be committed
|
|
|
|
## CRITICAL: Use MCP Tools Only
|
|
|
|
All operations must use Manual Slop's MCP tools:
|
|
- `manual-slop_read_file` - read files
|
|
- `manual-slop_get_git_diff` - check changes
|
|
- `manual-slop_run_powershell` - shell commands
|
|
|
|
## Verification Protocol
|
|
|
|
1. **Announce Protocol Start:**
|
|
Inform user that phase verification has begun.
|
|
|
|
2. **Determine Phase Scope:**
|
|
- Find previous phase checkpoint SHA in `plan.md` via `manual-slop_read_file`
|
|
- If no previous checkpoint, scope is all changes since first commit
|
|
|
|
3. **List Changed Files:**
|
|
Use `manual-slop_run_powershell`:
|
|
```powershell
|
|
git diff --name-only <previous_checkpoint_sha> HEAD
|
|
```
|
|
|
|
4. **Verify Test Coverage:**
|
|
For each code file changed (exclude `.json`, `.md`, `.yaml`):
|
|
- Check if corresponding test file exists via `manual-slop_search_files`
|
|
- If missing, create test file via @tier3-worker
|
|
|
|
5. **Execute Tests in Batches:**
|
|
**CRITICAL**: Do NOT run full suite. Run max 4 test files at a time.
|
|
|
|
Announce command before execution:
|
|
```
|
|
I will now run: uv run pytest tests/test_file1.py tests/test_file2.py -v
|
|
```
|
|
|
|
Use `manual-slop_run_powershell` to execute.
|
|
|
|
If tests fail with large output:
|
|
- Pipe to log file
|
|
- Delegate analysis to @tier4-qa
|
|
- Maximum 2 fix attempts before escalating
|
|
|
|
6. **Present Results:**
|
|
```
|
|
## Phase Verification Results
|
|
|
|
**Phase:** {phase name}
|
|
**Files Changed:** {count}
|
|
**Tests Run:** {count}
|
|
**Tests Passed:** {count}
|
|
**Tests Failed:** {count}
|
|
|
|
[Detailed results or failure analysis]
|
|
```
|
|
|
|
7. **Await User Confirmation:**
|
|
**PAUSE** and wait for explicit user approval before proceeding.
|
|
|
|
8. **Create Checkpoint:**
|
|
Use `manual-slop_run_powershell`:
|
|
```powershell
|
|
git add .
|
|
git commit --allow-empty -m "conductor(checkpoint): Phase {N} complete"
|
|
$hash = git log -1 --format="%H"
|
|
git notes add -m "Verification: [report summary]" $hash
|
|
```
|
|
|
|
9. **Update Plan:**
|
|
- Add `[checkpoint: {sha}]` to phase heading in `plan.md`
|
|
- Use `manual-slop_set_file_slice` or `manual-slop_read_file` + write
|
|
- Commit: `git add plan.md && git commit -m "conductor(plan): Mark phase complete"`
|
|
|
|
10. **Announce Completion:**
|
|
Inform user that phase is complete with checkpoint created.
|
|
|
|
## Error Handling
|
|
- If any verification fails: HALT and present logs
|
|
- Do NOT proceed without user confirmation
|
|
- Maximum 2 fix attempts per failure
|