Analyze guideline ablation experiment results to determine which guideline sections are essential, marginal, or dispensable. Use when the user asks to analyze ablation results, interpret guideline compaction data, or wants to know which guidelines to keep for AGENTS.md.
npx skills add https://github.com/get-convex/convex-evals --skill analyze-ablation
List the ablation/results/ directory to see which models have results:
ls ablation/results/
If the directory is empty or doesn't exist, the user needs to either:
bun run scripts/runAblation.ts --model <model> # List recent ablation workflow runs
gh run list --workflow=ablation_experiment.yml --limit=5
# Download the artifact
gh run download <run-id> -n ablation-<model>-<run-id> -D ablation/results/
For the requested model, read the latest JSON file from ablation/results/<model>/.
The file contains:
model: The model nametimestamp: When the experiment ranbaseline: Overall pass/fail counts and per-eval results with the full guideline setsections: Array of per-section ablation results, each with:name: Section name (e.g. "function_guidelines", "query_guidelines")tokensInSection: How many tokens this section costsverdict: "ESSENTIAL" (2+ regressions), "MARGINAL" (1 regression), "DISPENSABLE" (0 regressions)regressions: Eval names that flipped from pass to fail when this section was removedimprovements: Eval names that flipped from fail to pass when removed (guidelines confusing the model)score: Pass/fail counts for this ablation variantPresent a summary table showing:
| Section | Verdict | Regressions | Improvements | Tokens | Score |
|---------|---------|-------------|--------------|--------|-------|
Sort by verdict: ESSENTIAL first, then MARGINAL, then DISPENSABLE.
For each ESSENTIAL and MARGINAL section:
For any section with improvements:
If ablation/results/ has results for multiple models:
Calculate:
Based on the results, recommend one of:
function_guidelines is ESSENTIAL (likely — it's the largest section at ~2400 tokens), suggest a follow-up ablation of its 8 subsections to find further savings.Present findings to the user and ask which direction they want to go. Do NOT make any code changes until asked.
The 10 top-level sections in runner/models/guidelines.ts are:
function_guidelines — Function syntax, HTTP endpoints, validators, registration, calling conventions, function references, API design, paginationvalidator_guidelines — v.bigint deprecation, v.record usageschema_guidelines — Schema location, system fields, index naming, index field orderingtypescript_guidelines — Id types, Record types, strict typing, as const, Array/Record patterns, @types/nodefull_text_search_guidelines — Search index query syntaxquery_guidelines — No filter, no .delete(), .unique(), async iteration, orderingmutation_guidelines — ctx.db.replace vs ctx.db.patchaction_guidelines — "use node", no ctx.db, action syntaxscheduling_guidelines — Cron syntax, FunctionReference usage, crons.ts patterns10. file_storage_guidelines — Storage API, getUrl, system table queries, Blob handling
Integration with protocols.io API for managing scientific protocols. This skill should be used when working with protocols.io to search, create, update, or publish protocols; manage protocol steps and materials; handle discussions and comments; organize workspaces; upload and manage files; or integrate protocols.io functionality into workflows. Applicable for protocol discovery, collaborative protocol development, experiment tracking, lab protocol management, and scientific documentation.
Analyzes job descriptions and generates tailored resumes that highlight relevant experience, skills, and achievements to maximize interview chances
Generate Excalidraw diagrams from natural language descriptions. Use when asked to "create a diagram", "make a flowchart", "visualize a process", "draw a system architecture", "create a mind map", or "generate an Excalidraw file". Supports flowcharts, relationship diagrams, mind maps, and system architecture diagrams. Outputs .excalidraw JSON files that can be opened directly in Excalidraw.
Build and distribute Expo development clients locally or via TestFlight
Use when you have a written implementation plan to execute in a separate session with review checkpoints
Data structure for annotated matrices in single-cell analysis. Use when working with .h5ad files or integrating with the scverse ecosystem. This is the data format skill—for analysis workflows use scanpy; for probabilistic models use scvi-tools; for population-scale queries use cellxgene-census.
Benchling R&D platform integration. Access registry (DNA, proteins), inventory, ELN entries, workflows via API, build Benchling Apps, query Data Warehouse, for lab data management automation.
Comprehensive molecular biology toolkit. Use for sequence manipulation, file parsing (FASTA/GenBank/PDB), phylogenetics, and programmatic NCBI/PubMed access (Bio.Entrez). Best for batch processing, custom bioinformatics pipelines, BLAST automation. For quick lookups use gget; for multi-service integration use bioservices.
Take get-convex/analyze-ablation from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.