phira-ai/phira · Archived

phira-baseline-parity

Checklist for proving baseline behavior is unchanged (or changes are intentional) via controlled A/B runs.

First seen Jun 23, 2026

Installation

$ npx skills add phira-ai/phira --skill phira-baseline-parity

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 phira-ai/phira.

npx skills add phira-ai/phira

Browse all from phira-ai/phira

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 10
License LICENSE
Default branch main
Open issues 2
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,905 B
  • docs SUMMARY.md 135 B

History

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

SKILL.md

Use this skill when implementing a feature that should be opt-in, when defaults must remain identical, or when reviewers ask "did you change baseline behavior?".

This skill is intended to be lazy-loaded on demand: only run parity A/B commands if the researcher approved running them.

Goal: demonstrate parity between baseline and modified code under the same configuration.

Core principle

If the acceptance criteria does not explicitly change defaults, your implementation should preserve baseline behavior by default.

Parity checklist

  1. Feature gating
  • Ensure the new behavior is behind a config/flag.
  • Default should match baseline behavior unless the task explicitly changes defaults.
  1. Controlled A/B
  • Pick one minimal config that exercises the relevant path.
  • Run A: baseline behavior (flag off / old path).
  • Run B: same config with flag off (in the new codebase) to prove unchanged defaults.
  • Run C (optional): flag on to prove the feature does something.
  1. Fix confounders
  • Same seed(s), same data split, same batch size, same precision settings.
  • If determinism is not guaranteed, compare invariants and qualitative traces (e.g., loss decreases, shapes, number of steps, identical config resolution).
  1. What to compare (choose what exists)
  • Config resolution output / logged hyperparameters
  • First-step loss (or first N steps) within tolerance
  • Model parameter count / module tree
  • Output tensor shapes and dtypes
  • Checkpoint metadata

Reporting (copy/paste)

Baseline parity
- Default behavior preserved: <yes/no/unknown>
- Evidence:
  - A/B commands: <commands>
  - Compared: <what you compared>
  - Outcome: <match/tolerance/diff>
- If not preserved: <why + where documented + migration notes>