ukgovernmentbeis/inspect_evals · Archived

prepare-submission-workflow

Prepare an evaluation for PR submission as an entry to the register. Use when user asks to prepare an eval for submission or finalize a PR. Trigger when the user asks you to run the "Prepare Evaluation For Submission" workflow.

First seen Jun 24, 2026

Installation

$ npx skills add ukgovernmentbeis/inspect_evals --skill prepare-submission-workflow

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from ukgovernmentbeis/inspect_evals · top by installs.

npx skills add ukgovernmentbeis/inspect_evals

Browse all from ukgovernmentbeis/inspect_evals

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 571
License LICENSE
Default branch main
Open issues 128
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 3,755 B
  • docs SUMMARY.md 262 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 3 installs

SKILL.md

Prepare Eval For Submission

Since May 2026, new evaluations are submitted as entries to the register — the evaluation code lives in your own upstream repository, and you add a pointer to it here. Code is no longer added directly to src/inspect_evals/. If the user appears to be submitting evaluation code into the repo, direct them to [register/README.md](../../../register/README.md) for the full process.

Workflow Steps

To prepare an evaluation for submission as a pull request:

1. Verify upstream repo requirements

The upstream repo must:

  • Have a pyproject.toml with a [project] table so it can be installed via uv sync
  • Declare inspect_ai as a dependency
  • Define each task with the @task decorator from inspect_ai

Ask the user whether their upstream repo meets these requirements. Offer to check for them — if they provide the GitHub repository URL, fetch the repo's pyproject.toml and task files (e.g. via WebFetch on the raw GitHub URLs) to verify the requirements are met. If any requirement is not met, tell the user what needs to be fixed upstream before they can register.

Important: The submitter must be the owner or a maintainer of the upstream repository. The submission workflow enforces this — if they are not, they will need to fork the repo so they can be listed as a maintainer.

2. Gather information and create register/<eval_name>/eval.yaml

Skip this step if register/<eval_name>/eval.yaml already exists.

Use [register/exampleeval.yaml](../../../register/exampleeval.yaml) as the template — it documents every field. Don't ask the user field-by-field; instead, derive what you can from the upstream repo first, then ask one batched question for what's missing.

Hints on what to derive from the upstream repo (don't ask):

  • source.repository_url — from step 1.
  • source.repository_commit — fetch the latest commit SHA on the default branch (must be a 40-char SHA, not a tag or branch).
  • tasks[].name and tasks[].task_path — locate every @task-decorated function in the repo and record the function name and file path.
  • title — from the upstream README heading or pyproject.toml [project].name.
  • description — draft from the upstream README; keep to one short paragraph since the generated README links back upstream.
  • source.maintainers — defaults to the repo owner; only override if the repo is org-owned and the real maintainers are individuals.

Use [register/exampleeval.yaml](../../../register/exampleeval.yaml) to determine what additional questions are needed. Note: contributors and tags are deprecated fields — do not include them in new submissions.

Show the user the drafted YAML for confirmation before writing the file. Do not set id — it is auto-injected from the directory name.

3. Run validation

make check

This validates the eval.yaml and auto-generates a README.md next to it. The README is fully generated from eval.yaml — do not edit it by hand.

Because the generated page defers to upstream for details, make sure the upstream repo's README covers the dataset, scorer, task parameters, and how the eval was validated.

4. Create a changelog fragment

uv run scriv create

5. Open a PR

Use the [PR template](../../.github/PULLREQUESTTEMPLATE.md). The reviewer will ping anyone listed under source.maintainers for acknowledgement before merging.