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:34
forks:0
updated:May 6, 2026 at 16:15
File Explorer
SKILL.md
| name | playwright-test-diagnosis |
| description | Analyze playwright test results |
Turn heal-traces.ndjson into a concise root-cause report with statement-level evidence.
heal-traces/<executionId>/<playwrightTestId>/<attempt>/heal-traces.ndjson<attempt>/ dir: trace.zip,
screenshots/stmt-*.png, videos/<file>.webm (when present)heal-traces/executions.ndjson — append-only run index; the latest
line is the most recent runheal-traces/<executionId>/execution.json — per-run manifest
(totals, git, duration, per-test summaries)statement.loc and source text)If multiple trace files exist, prioritize the latest failing attempt.
<executionId> is an auto-generated uuidv4 per run; pick the newest
entry in executions.ndjson to find the most recent execution dir.
test-result event and note final status, duration, stderr, and stdout.status != ok)durationMs outliers)sourceloc.line and file contexthigh, medium, or low.Use this structure:
## Test Failure Analysis
- Test: <name>
- Status: <failed/passed>
- Confidence: <high|medium|low>
### What failed
- <1-2 bullets with exact failing statement and error>
### Root cause hypothesis
- <most likely cause tied to statement-level evidence>
### Evidence
- <statement source + line + key variable values>
- <timing or API correlation>
- <screenshot/locator evidence if available>
### Recommended fix
- <smallest practical change>
### Verification
- Re-run: <command>
- Expectation: <what should change in trace>
Use fast filters when needed:
rg '"status":"(fail|error)"' heal-traces -g "*.ndjson"rg '"durationMs":[1-9][0-9]{3,}' heal-traces -g "*.ndjson"rg '"error"|\"stderr\"' heal-traces -g "*.ndjson"tail -n 1 heal-traces/executions.ndjson → read executionId[HINT] Download the complete skill directory including SKILL.md and all related files