1.5 KiB
1.5 KiB
name, description
| name | description |
|---|---|
| paper-code-audit | Use this when the task is to compare a paper against its repository, verify whether claims are implemented, or assess reproducibility risk. |
Paper Code Audit
When To Use
Use this skill for:
- paper-versus-code verification
- implementation gap analysis
- reproducibility audits
- checking whether public code matches reported results
Procedure
- Locate the paper with
alpha_search. - Load the paper with
alpha_get_paper. - Extract implementation-relevant details using
alpha_ask_paper:- datasets
- preprocessing
- model architecture
- hyperparameters
- evaluation protocol
- If the paper links a repository, inspect it using
alpha_read_code. - Compare paper claims against code realities:
- are all components present
- do defaults match the paper
- are metrics/eval scripts exposed
- are hidden assumptions required
- Record concrete mismatches, not vibes.
- Save the audit in
outputs/. - If you find a durable gotcha, save it with
alpha_annotate_paper. - End with a
Sourcessection for the paper and repository.
Pitfalls
- Do not infer repository behavior without opening the relevant files.
- Do not assume README claims reflect the actual defaults.
- Do not mark something as missing if it exists under another name without checking.
Deliverable
Include:
- paper summary
- repository coverage
- confirmed matches
- mismatches or omissions
- reproducibility risks
- recommended next actions
- sources