Add a new AI model to the eval runner, update the manual eval workflow, push changes, and trigger baseline eval runs. Use when the user wants to add a new model, onboard a model, or mentions a new model name/link to add to the leaderboard.
npx skills add https://github.com/get-convex/convex-evals --skill add-model
Follow these steps whenever the user asks to add a new AI model to the eval suite.
Determine the following (ask the user if not provided):
anthropic/claude-opus-4.6. If the user gives a marketing name or URL, look up the OpenRouter model id.Claude 4.6 Opus.claude-opus-4.5 is the predecessor of claude-opus-4.6).apiKind - only needed for OpenAI Codex/Responses-API models; set to "responses". Omit for all other models.If you're unsure, check how the closest existing model in the same family is configured in runner/models/index.ts and match it.
runner/models/index.tsOpen runner/models/index.ts and add a new entry to the ALL_MODELS array. Place it next to its family siblings, respecting the existing grouping comments.
Template:
{
name: "<provider>/<model-id>",
formattedName: "<Human Name>",
// apiKind: "responses", // only for OpenAI Codex / Responses-API models
},
Open .github/workflows/manual_evals.yml and replace the entire matrix.model list with only the new model. This workflow exists solely to collect baseline data for newly added models, so it should only ever contain the latest addition.
matrix:
model:
- "<provider>/<model-id>"
Run bun run typecheck to verify no type errors were introduced.
Before committing, run a quick local sanity check with one or two simple evals to confirm the model ID is valid, the API key works, and results are being produced. Use the simplest fundamentals evals:
MODELS=<new-model-name> TEST_FILTER="000-fundamentals/000" bun run local:run
If that passes, optionally run one more:
MODELS=<new-model-name> TEST_FILTER="000-fundamentals/001" bun run local:run
What to look for:
.env file before proceedingOnly proceed to the next step once at least one eval completes successfully.
Create a descriptive commit message and push to main:
git add runner/models/index.ts .github/workflows/manual_evals.yml
git commit -m "add <model-name>; demote older <family> versions"
git push origin main
Use the GitHub CLI to dispatch the manual eval workflow 3 times (to get a statistically meaningful baseline):
gh workflow run manual_evals.yml --ref main
Run this command 3 times, waiting ~5 seconds between dispatches to avoid collisions.
You MUST poll until all 3 runs reach a terminal state (completed/failed/cancelled). Do not stop monitoring early or hand back to the user while runs are still in progress.
Poll every ~2 minutes using:
gh run list --workflow=manual_evals.yml --limit=6
Runs typically take 20-30 minutes. Keep checking until all show completed. If a run fails, immediately investigate:
gh run view <run-id> --log-failed
Report the final pass/fail status for each run to the user once all 3 are done.
ALL_MODELS in runner/models/index.ts.github/workflows/manual_evals.yml matrix replaced with only the new modelbun run typecheck passesmainIntegration 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/add-model 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.