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-review |
| description | Review a completed phase against its track specification |
| disable-model-invocation | true |
| argument-hint | [track-name] [phase-number] |
You are reviewing a completed phase of a RALF agent track. Follow these steps exactly.
$ARGUMENTS contains the track name and phase number, e.g., mti-optimizer 3.
If either is missing, ask the user.
Read tracks/active/<track-name>.md and extract the specified phase section:
Run these commands to understand what changed:
git diff main...HEAD --name-only
git diff main...HEAD --stat
git log main..HEAD --oneline
If the branch is not ahead of main, fall back to recent commits:
git log --oneline -10
git diff HEAD~N..HEAD --name-only
Check:
Run tests if available:
python -m pytest --tb=short -q 2>&1 | tail -20
Check formatting if applicable:
black --check . 2>&1 | tail -10
If either command fails, note it but continue the review.
Output:
=== Phase Review: <track-name> Phase <N> ===
VERDICT: PASS | FAIL | PARTIAL
## Files
- [x] path/to/expected_file.py (modified)
- [ ] path/to/missed_file.py (NOT modified)
- [!] path/to/unexpected_file.py (modified but not in spec)
## Tasks
- [x] Task 1 description — completed
- [ ] Task 2 description — NOT completed (reason)
- [~] Task 3 description — partially completed (details)
## Acceptance Criteria
- [x] Criterion 1 — met
- [ ] Criterion 2 — not met (details)
## Quality Checks
- Tests: PASS | FAIL | NOT RUN
- Formatting: CLEAN | DIRTY | NOT RUN
## Notes
- Deviations, concerns, or recommendations