<< All versions
Skill v1.0.1
currentAutomated scan100/100brandonsimpson/devils-advocate/log
+2 new
──Details
PublishedJune 12, 2026 at 07:41 AM
Content Hashsha256:57d524c7ae0bcb00...
Git SHA6388ad2cf80b
Bump Typepatch
──Files
Files (1 file, 1.7 KB)
SKILL.md1.7 KBactive
SKILL.md · 48 lines · 1.7 KB
version: "1.0.1" name: log description: Display session log of all checks and scores.
Session Log
Display the critique history for this session.
Process
- Read the session log — Use the Read tool to read
.devils-advocate/session.mdfrom the project root.
- If the file doesn't exist or is empty — Report that no checks have been run yet and suggest:
/devils-advocate:critique— Critique current code or a plan document
- If the file exists — Display its contents and add a brief summary:
- Total number of checks run
- Pass rate trend (improving, declining, or stable)
- Worst result (the check with the most failing criteria)
- Note: Each entry includes a git SHA linking the check to a specific commit
- List individual log files — Use Glob to check for files in
.devils-advocate/logs/*.md. If any exist, list their filenames so the user knows which detailed critiques are available to read.
Output Format
SESSION LOG═══════════════════════════════════════[contents of .devils-advocate/session.md]───────────────────────────────────────Summary: N checks | Trend: [improving/declining/stable]Worst: Check #X (Y/Z PASS) @ <sha> — [brief note]Detailed Logs: [only if .devils-advocate/logs/ has files]• [filename1]• [filename2]
Rules
- Just display and summarize — do not re-run any assessments
- If the log is very long (>20 entries), show the last 10 and mention how many were omitted
- Never modify the session log file in this skill