Run any Skill in Manus
with one click
with one click
Run any Skill in Manus with one click
Get Started$pwd:
$ git log --oneline --stat
stars:0
forks:0
updated:May 6, 2026 at 18:18
SKILL.md
[HINT] Download the complete skill directory including SKILL.md and all related files
| name | phase-handoff |
| description | Prepare handoff context for the next RALF agent |
| disable-model-invocation | true |
| argument-hint | [track-name] [completed-phase] |
You are preparing a handoff document so the next RALF agent can pick up where the previous one left off. Follow these steps exactly.
$ARGUMENTS contains the track name and completed phase number, e.g., mti-optimizer 2.
If either is missing, ask the user.
Read tracks/active/<track-name>.md and extract:
Run:
git log main..HEAD --oneline
git diff main...HEAD --stat
git diff main...HEAD --name-only
Summarize:
Compare the track spec for the completed phase against the actual changes:
Create or update memory/agent-state.md with this format:
# Agent State
**Track:** <track-name>
**Last completed phase:** <N>
**Date:** <today>
**Branch:** feature/<track-name>
## What Was Done (Phase <N>)
- [Bullet points of actual changes]
- [Key decisions made and why]
## Deviations from Spec
- [Any differences from the track file, or "None"]
## Context for Next Agent
- [Important things the next agent needs to know]
- [Any gotchas, edge cases, or non-obvious state]
- [Relevant file paths and their roles]
## Open Questions / Blockers
- [Anything unresolved, or "None"]
## Next Phase Summary
Phase <N+1>: <phase name>
- [Brief list of what Phase N+1 requires]
- [Which files will be touched]
Stage and commit:
git add memory/agent-state.md
git commit -m "chore: update agent state after Phase <N> of <track-name>"
Output a brief summary to the user:
=== Handoff Complete ===
Track: <track-name>
Completed: Phase <N>
Next: Phase <N+1>: <phase name>
Agent state: memory/agent-state.md (committed)
Branch: feature/<track-name>
To start the next agent:
claude "Read tracks/active/<track-name>.md and memory/agent-state.md, then begin Phase <N+1>"