dual-axis-skill-reviewer
Audited by Runlayer on Mar 4, 2026
Tool passed security scan
Malicious tool definition detected
Description: f"{'Skill':<40} {'Score':>5} {'Pass':>4} {'High':>4}" print(header) print("-" * len(header)) for row in rows: status = "YES" if row["pass"] else "NO" print(f"{row['skill']:<40} {row['score']:>5} {status:>4} {row['high_findings']:>4}") passed = sum(1 for r in rows if r["pass"]) print(f" Total: {len(rows)} skills, {passed} passed, {len(rows) - passed} failed") # Write summary JSON output_dir = (project_root / args.output_dir).resolve() output_dir.mkdir(parents=True, exist_ok=True) now
Malicious tool definition detected
uv run "$REVIEWER" \ --project-root /path/to/other/project \ --emit-llm-prompt \ --output-dir reports/ ``` ### Step 2: Run LLM Review - Use the generated prompt file in `reports/skill_review_prompt_<skill>_<timestamp>.md`.
Passed Files (4)Click to expand
Tool passed security scan
Tool passed security scan
Tool passed security scan
Tool passed security scan