Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 23 additions & 1 deletion SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -301,6 +301,28 @@ Clean up temporary artifacts created during the loop (for example plan scratch f

If the implementation subagent is still open, close it and clear its saved handle or `session_id` before handing off to finishing.

Report the process to the user using concrete facts and returned artifacts: how many plan-editor rounds, how many code-review rounds, the current `HEAD`, the changed-file list, the implementation subagent's latest summary and verification results, and any reviewer-reported residual issues.
Report the process to the user in this format:

```
## Trycycle Session Report

| Phase | Rounds | Result |
|------------------|--------|---------------------------------------------|
| Planning | {N}/5 | {READY on round N / ESCALATED to user} |
| Test plan | 1 | {approved / revised N times} |
| Implementation | 1 | {complete} |
| Review | {N}/8 | {clean on round N / ESCALATED to user} |

**Convergence:** plan locked in {N} round(s), review passed in {N} round(s)
**HEAD:** `{short hash}`
**Changed files:**
{file list from git diff --name-only}

**Implementation summary:** {from the implementation subagent's latest report}
**Verification results:** {from the implementation subagent's latest report}
**Residual issues:** {any non-blocking issues from the final review, or "none"}
```

Fill each placeholder from the artifacts returned by planning, implementation, and review subagents during the session. Omit sections that do not apply (for example, omit **Residual issues** when there are none).

Then read and follow `<skill-directory>/subskills/trycycle-finishing/SKILL.md` to present the user with options for integrating the implementation workspace (merge, PR, etc.).