autocodabench-plan

autocodabench-plan is a skill for Claude Code, Codex from ihsaan-ullah/auto-codabench. It costs 119 tokens per session (5,221 once invoked), scanned A, original, MIT.

The planning phase of an AutoCodabench session, where AutoCodabench is a system for creating Codabench machine-learning competitions. It produces a detailed implementation_plan.md file for the later packaging phase.

In plain words
What is it for?
Planning all seven design sections of a Codabench competition, including baselines and implementation details, without writing the competition code yet.
Why use it?
It records concrete competition decisions in one self-contained plan so the next phase can build the bundle without the earlier conversation.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/ihsaan-ullah/auto-codabench/plan
Any agent
npx skills add ihsaan-ullah/auto-codabench --skill plan
Clone the repo
git clone --depth 1 https://github.com/ihsaan-ullah/auto-codabench

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for autocodabench-plan

README.md
[![agentmods](https://agentmods.dev/badge/skills/ihsaan-ullah/auto-codabench/plan.svg)](https://agentmods.dev/skills/ihsaan-ullah/auto-codabench/plan)
Your own site
<a href="https://agentmods.dev/skills/ihsaan-ullah/auto-codabench/plan"><img src="https://agentmods.dev/badge/skills/ihsaan-ullah/auto-codabench/plan.svg" alt="Measured on agentmods" height="20"></a>
Per session 119 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 5,221 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00119 $0.05221
Opus 5 $0.00060 $0.02610
Sonnet 5 $0.00024 $0.01044
Haiku 4.5 $0.00012 $0.00522

Measured 3d ago against content hash 0dac4f578b9c, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

autocodabench-plan scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

src/autocodabench/skills/plan/SKILL.md · 426 lines

How it starts

The opening of the file, as written. The whole thing — 426 lines — stays where its author put it; the contents beside it link to each section on GitHub.

AutoCodabench — Phase 1: Plan

You are a scientific friend helping a researcher design a Codabench competition. Phase 1's job is planning only. You produce one artifact: implementation_plan.md. Phase 2 reads that plan and writes the Codabench bundle directly from it — no intervening notebook step.

This separation exists for one hard reason: cost. When planning is done, we discard the entire conversation and Phase 2 starts fresh, reading only the plan. So the plan has to be self-contained and concrete — assume Phase 2 has never met the user and only sees this one markdown file. Vague language ("an appropriate model") forces Phase 2 to invent details, which is exactly the kind of cost-burn we're trying to avoid.


0. Hard rules — re-read every turn

  1. First tool call is autocodabench_open_run(slug=<short-kebab>).
  2. No code, no notebook. Don't write Python in chat code-fences, don't call any nb_* tool. Phase 2 writes code.
  3. One artifact: <run>/specs/implementation_plan.md. Save via autocodabench_snapshot_spec(filename="implementation_plan.md", body=<md>). The argument is filename (NOT name) and it is written verbatim — it MUST end in .md, or Phase 2 cannot find the plan.
  4. Be specific, but version-robust. Every section must name concrete things Phase 2 can implement without asking. See the §2 template — fields like "primary metric" should be sklearn.metrics.f1_score(...), not "an F1-like score". Baseline = a named class (e.g. sklearn.linear_model.LogisticRegression), not "a simple model". When you specify constructor arguments, set only the ones that change behavior and rely on library defaults otherwise; do NOT pin keyword arguments that recent releases have deprecated or removed (for example, LogisticRegression(multi_class=...) was removed in scikit-learn 1.7 and is redundant for the lbfgs solver). Over-specifying brittle arguments makes Phase 2 fail against the installed library version. Prefer the smallest set of arguments that pins the intended behavior.
  5. HF Spaces compute is small. CPU only, ≤16 GB RAM. Pick toy data (~200 rows) and sklearn-class baselines so Phase 2's bundle actually runs.
  6. Curated whitelist (pre-installed): numpy, pandas, scikit-learn, matplotlib, seaborn, scipy, pillow. These are exactly what the default runtime image ships, so a plan that stays within them needs no special image. If your plan needs anything else, ASK first.
  7. Default runtime image. State the bundle's Docker image in the plan; default to autocodabench/autocodabench-base-cpu:latest (the curated CPU stack above), or autocodabench/autocodabench-base-gpu:latest only if the task genuinely needs a GPU. Bundles run inside this image exactly as on Codabench, and Phase 2 may change it if the build requires a different one — but name a sensible default here so Phase 2 starts from the fast, pre-built base.
  8. Schedule dates must be concrete. §7's proposed schedule uses real calendar dates (YYYY-MM-DD), never "TBD". Anchor on the user's stated target launch date if one was given (in chat or an attached proposal); otherwise anchor on today's date (given in your runtime note). Compute each phase's start/end by adding its duration to the previous phase's end — derive every date from the anchor, don't invent one.
  9. Citations are clickable markdown links[Author YYYY](https://openalex.org/Wxxxxx) or [Pavão et al., Ch. X §Y](https://ai-competitions-book.github.io/ai-competitions-book-full-project.pdf). Bare [oa:Wxxxxx] without a URL is forbidden.
  10. Stay tight. Target 3-6 user turns total: roadmap, 1-2 gap questions, draft, hand-off. Don't perfect the plan here.
  11. Hand-off, not advance. When the plan is saved, hand off to Phase 2 — Competition Creation following the surface-specific instruction in your runtime note at the end of this prompt. You do not start Phase 2 yourself.

Read the full file on GitHub · 426 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 426 lines · 119 tokens per session scan A 0dac4f578b9c

Subscribe to this mod's changes

autocodabench-plan is a skill published in the GitHub repository ihsaan-ullah/auto-codabench (2 stars, last pushed 1mo ago), licensed MIT. It adds 119 tokens to every session and 5,221 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

instrument-data-to-allotrope

Convert laboratory instrument output files (PDF, CSV, Excel, TXT) to Allotrope Simple Model (ASM) JSON format or flattened 2D CSV. Use this skill when scientists need to standardize instrument data for LIMS systems, data lakes, or downstream analysis. Supports auto-detection of instrument types. Outputs include full…

anthropics/knowledge-work-plugins · 123 tokens

agent-platform-model-registry

Agent Platform Model Registry Management. Use when you need to upload, list, describe, update, or delete machine learning models (and their versions) in the Agent Platform Model Registry. Don't use for model training, model deployment to endpoints, or managing non-Agent Platform models.

google/skills · 60 tokens

html-ppt-hermes-cyber-terminal

OpenDesign + BYOK: choosing and wiring your own model, hands-on — cost, quality, and the routing decision. Built as a decision-grade AI literacy deck for engineers, IT, applied-AI teams.

nexu-io/open-design · 53 tokens

foundry-config-setup

Resolve missing setup caused by a hardcoded Foundry project endpoint or model in a sample. Use when a sample fails because it uses a placeholder/hardcoded projectendpoint (for example "https://your-project.services.ai.azure.com") or a hardcoded model instead of reading them from the environment.

microsoft/agent-framework · 65 tokens

auditing-subgroup-fairness

Audit an OpenMed NER or de-identification model for performance disparities across demographic subgroups (sex, age band, race/ethnicity when available) using openmed.eval.fairnessreport. Use when the user wants per-subgroup recall and leakage, wants to check whether de-identification under-protects a group, wants to…

maziyarpanahi/openmed · 148 tokens

aatmf-t10-confidentiality-breach

AATMF T10 — Integrity & Confidentiality Breach. System prompt extraction, training-data extraction, model-weight leakage, private-key recovery.

PurpleAILAB/Decepticon · 39 tokens