baseline

Establishes verified reference baselines through attach, import, reproduce, or repair routes.

Updated Apr 1, 2026
One-click install
npx skills add https://github.com/zniihgnexy/vid_tokenizer --skill baseline-zniihgnexy
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: baseline
Source: https://github.com/zniihgnexy/vid_tokenizer/tree/main/.ds/codex-home/skills/deepscientist-baseline
Command: npx skills add https://github.com/zniihgnexy/vid_tokenizer --skill baseline-zniihgnexy

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Research quests need a trustworthy reference system before any comparison work can begin, but baselines are often unverified, stale, broken, or missing entirely. This Skill guides the full lifecycle of attaching, importing, reproducing, or repairing a baseline and verifying its metrics before downstream comparison. ## Core Features & Use Cases - Four baseline routes: Attach an existing reusable baseline, import a baseline package, reproduce from a source paper and repo, or repair a broken baseline line. - Verification and comparability contract: Classify results as verified_match, verified_close, verified_diverged, or broken, and record dataset, split, metric keys, and deviations in a canonical metric_contract.json. - Durable artifacts and gates: Produce PLAN.md, CHECKLIST.md, verification notes, and a confirmed baseline gate via artifact.confirm_baseline before downstream stages proceed. - Use Case: A quest needs to compare a new video codec against NVRC. Use this Skill to reproduce the NVRC baseline with uv-managed environments, run a bounded smoke test, verify reported metrics against the paper, and publish the accepted baseline artifact. ## Quick Start Ask the agent to establish and verify a baseline for the current quest by reproducing the source repo's evaluation path and confirming the baseline gate.

Frequently Asked Questions about baseline

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I reproduce a baseline from a research paper and repo?▼

Read the source paper and repo first, identify the real run and evaluation entrypoints, then set up the environment with uv, run one bounded smoke test, and launch the real run. Verify the metrics against the paper before accepting the baseline.

When should I attach or import a baseline instead of reproducing it?▼

Prefer attach or import when a verified reusable baseline already exists and its provenance, dataset, and metric contract match the quest. Reproduce only when no credible baseline exists, and repair only for bounded failures in an existing line.

What makes a baseline verified enough for downstream comparison?▼

A baseline is verified when the run finished, metrics came from the intended dataset and split, metric definitions match the quest contract, and deviations are recorded. The comparability contract must state task, dataset version, split, evaluation path, metric keys, and source commit.

Why does baseline reproduction diverge from paper-reported metrics?▼

Divergence usually comes from implementation mismatch, environment differences, data or split mismatch, or expected stochastic variance. Verification must separate these causes explicitly and classify the outcome as verified_match, verified_close, verified_diverged, or broken.

What Python environment tool does baseline setup use?▼

Python baseline setup is standardized around uv. Use uv sync when a uv.lock or solid pyproject.toml exists, otherwise uv venv and uv pip install, and run commands through uv run for reproducibility.

What happens when a baseline cannot be reproduced?▼

Record the blocked class explicitly, such as missing_source, environment_infeasible, run_failed, or verification_failed, along with what was tried and log paths. Then route to attach, import, retry, repair, or an explicit waiver via artifact.waive_baseline.