Back to skills
Skill

gad:eval-list

gad-eval-list

List available eval projects and their run history

Display all eval projects in `evals/` with their run count, latest run status, and last baseline SHA.
  1. Find eval projects:

    ls -d evals/*/ 2>/dev/null || echo "NO_PROJECTS"
    

    If none: No eval projects found. Create one at evals/<name>/REQUIREMENTS.md.

  2. For each project, read its run history:

    ls -d "evals/$PROJECT"/v*/ 2>/dev/null | sort -V
    

    Read the latest RUN.md for status and baseline.

  3. Display table:

    GAD Eval Projects
    
    NAME              RUNS   LATEST   STATUS     BASELINE
    ─────────────────────────────────────────────────────────
    portfolio-bare    2      v2       completed  abc1234
    my-feature        0      —        —          —
    
  4. Show totals:

    2 projects, 2 total runs
    
Source on GitHub

vendor/get-anything-done/sdk/skills/gad-eval-list/SKILL.md

Client debug · NEXT_PUBLIC_CLIENT_DEBUG=1
0 lines

No events yet. Window errors, unhandled rejections, and React render errors appear here. Set NEXT_PUBLIC_CLIENT_DEBUG_CONSOLE=1 to mirror console.error / console.warn.