用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/graphistry/graphistry-skills --skill benchmarks命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | benchmarks |
| description | Internal maintainer skill for running, validating, and publishing eval benchmarks for this repository. |
| metadata | {"internal":true} |
Use this for repository maintenance workflows. It is not a user-facing Graphistry domain skill.
pass_bool is used for pass rate calculation (not score >= 0.8)skills=on pass rate minus skills=off pass rate (in percentage points)codex, claude, jq~/.codex, ~/.claudegraphistry-skills/OUT="/tmp/graphistry_skills_sweep_$(date +%Y%m%d-%H%M%S)"
./bin/agent.sh \
--codex --claude \
--journeys all \
--skills-mode both \
--skills-delivery native \
--max-workers 2 \
--out "$OUT"
Check skills=off logs for no skill file reads:
grep -l "SKILL.md" "$OUT"/raw/*skills_off* 2>/dev/null && echo "CONTAMINATION DETECTED" || echo "Clean"
python3 scripts/benchmarks/make_report.py \
--public-safe \
--rows "$OUT/rows.jsonl" \
--title "Eval Sweep $(date +%Y-%m-%d)" \
--out-md benchmarks/reports/$(date +%Y-%m-%d)-sweep.md \
--out-json benchmarks/data/$(date +%Y-%m-%d)-sweep/combined_metrics.json
python3 scripts/benchmarks/readme_snippet.py \
--rows "$OUT/rows.jsonl" \
--title "Fresh eval sweep"
README.md Evals section with generated snippetbenchmarks/README.md with new pack referenceCHANGELOG.md under [Development] sectionAfter PR merge:
git fetch origin main && git checkout main && git pull
git tag -a vX.Y.Z -m "Release vX.Y.Z: <summary>"
git push origin vX.Y.Z
evals/journeys/*.jsonscripts/benchmarks/make_report.py, scripts/benchmarks/readme_snippet.pybenchmarks/reports/*.mdbenchmarks/data/*/combined_metrics.jsonrows.jsonl, manifest.json, traces, logsrows.jsonl (contains full prompt/response text)manifest.json, otel_ids.json, or raw logs--public-safe flag for checked-in reportspass_bool for official metrics, not score thresholdseval-otel: OTel trace validation and inspectionplan: Multi-session task planning (for complex benchmark campaigns)release: Semver bump + changelog + tag + GitHub release workflow