Use when building the replication package for an American Journal of Political Science (AJPS) manuscript. AJPS is famous for MANDATORY third-party PRE-publication verification — an independent verifier re-runs your deposited code and confirms it reproduces the numerical results in the main text before the article is published, with materials deposited to the AJPS Dataverse on Harvard Dataverse. Prepares the package; it does not waive requirements.
This is AJPS's signature differentiator. Unlike journals that check reproducibility in-house (or not at
all), AJPS sends your deposited materials to an independent third party that actually re-runs the
code and confirms it reproduces the numerical results reported in the main text — before
publication. If it does not reproduce, the article does not publish until it does. Build the package as
you analyze (ajps-data-analysis); it cannot be improvised at acceptance.
When to trigger
Building the replication / verification package
A manuscript is accepted and you have received upload instructions (after final draft, during the
technical check, before copyediting)
Data cannot be fully shared (privacy, ethics, provider restriction) and you need a path
A qualitative or multi-method paper whose evidence needs a documented verification route
How AJPS verification actually works (official baseline checked 2026-06-20)
Deposit to the AJPS Dataverse. Materials go into a Dataset within the AJPS Dataverse on the
Harvard Dataverse Network — not a personal site or generic cloud link. Other copies may exist
elsewhere as long as everything needed is in the AJPS Dataverse Dataset.
Independent third-party verification. A verifier re-runs the code and confirms it reproduces the
numerical results in the main text. The published article carries a statement: "The Cornell
Center for Social Sciences verified that the data and replication code submitted to the AJPS
Dataverse replicates the numerical results reported in the main text of this article." MPSA also
identifies Cornell Center for Social Sciences as the contracted replication-and-verification provider.
Qualitative path. Qualitative / multi-method materials follow the AJPS verification guidelines
and qualitative checklist: document collection procedures, instruments, analytic operations, source
fragments or access restrictions, and any exemption route needed for human-subjects, copyright, or
legal constraints.
Timing. It happens after the final draft is submitted, during the technical check, before
copyediting — late enough that fixing an unscripted analysis under deadline is painful.
Build-as-you-go checklist (so the re-run matches)
readme.txt lists and describes every file (group as "Data files", "Stata .do files", "Files
to Reproduce Table 1", ...)
One master script runs the modular scripts in order and sets the working directory once
set seed for every stochastic step (Monte Carlo, bootstrap, randomization inference, jitter)
1---2name: ajps-replication-and-verification3description: Use when building the replication package for an American Journal of Political Science (AJPS) manuscript. AJPS is famous for MANDATORY third-party PRE-publication verification — an independent verifier re-runs your deposited code and confirms it reproduces the numerical results in the main text before the article is published, with materials deposited to the AJPS Dataverse on Harvard Dataverse. Prepares the package; it does not waive requirements.4---567# Replication & Verification (ajps-replication-and-verification)
89This is AJPS's signature differentiator. Unlike journals that check reproducibility in-house (or not at
10all), **AJPS sends your deposited materials to an independent third party that actually re-runs the
11code** and confirms it reproduces the numerical results reported in the **main text** — *before*
12publication. If it does not reproduce, the article does not publish until it does. Build the package as
13you analyze (`ajps-data-analysis`); it cannot be improvised at acceptance.
1415## When to trigger
1617- Building the replication / verification package
18- A manuscript is accepted and you have received upload instructions (after final draft, during the
19 technical check, before copyediting)
20- Data cannot be fully shared (privacy, ethics, provider restriction) and you need a path
21- A **qualitative** or **multi-method** paper whose evidence needs a documented verification route
2223## How AJPS verification actually works (official baseline checked 2026-06-20)
24251. **Deposit to the AJPS Dataverse.** Materials go into a Dataset within the **AJPS Dataverse on the
26 Harvard Dataverse Network** — not a personal site or generic cloud link. Other copies may exist
27 elsewhere as long as everything needed is in the AJPS Dataverse Dataset.
282. **Independent third-party verification.** A verifier re-runs the code and confirms it reproduces the
29 **numerical results in the main text**. The published article carries a statement: *"The Cornell
30 Center for Social Sciences verified that the data and replication code submitted to the AJPS
31 Dataverse replicates the numerical results reported in the main text of this article."* MPSA also
32 identifies Cornell Center for Social Sciences as the contracted replication-and-verification provider.
333. **Qualitative path.** Qualitative / multi-method materials follow the AJPS verification guidelines
34 and qualitative checklist: document collection procedures, instruments, analytic operations, source
35 fragments or access restrictions, and any exemption route needed for human-subjects, copyright, or
36 legal constraints.
374. **Timing.** It happens **after the final draft is submitted, during the technical check, before
38 copyediting** — late enough that fixing an unscripted analysis under deadline is painful.
3940## Build-as-you-go checklist (so the re-run matches)
4142- [ ] **readme.txt** lists and describes every file (group as "Data files", "Stata .do files", "Files
43 to Reproduce Table 1", ...)
44- [ ] One **master script** runs the modular scripts **in order** and sets the working directory once
45- [ ] **set seed** for every stochastic step (Monte Carlo, bootstrap, randomization inference, jitter)
46- [ ] Explicit **software-version** statements (e.g., "R 4.3.2", "Stata/MP 18.0"); packages pinned
47- [ ] Every **main-text** number, table, and figure is regenerated by the code, names matched
48- [ ] Restricted data: explain why, give exact access instructions, provide synthetic data where feasible
49- [ ] Sharing terms and any access restrictions documented in the Dataverse materials
50- [ ] Preregistration / pre-analysis plan linked (anonymized) where applicable
5152## When data cannot be shared
5354- **Explain why** (ethics, privacy, legal/provider restriction).
55- Provide **README instructions on exactly how others can obtain the data** (process, application, contact).
56- Where possible, **provide synthetic data** resembling the real data so the code can run end to end.
5758## Anti-patterns
5960- Treating the deposit as a post-publication afterthought (it **gates** publication)
61- Depositing code that does not actually regenerate the printed main-text numbers
62- A personal URL instead of the AJPS Dataverse
63- Unseeded, unpinned, hard-coded-path code that "works on my machine" but not on the verifier's
64- Claiming data are restricted with no access path or synthetic substitute
6566## Output format
6768```
69【Repository】AJPS Dataverse (Harvard) — Dataset staged? [Y/N]
70【Reproduces main-text numbers?】master script re-run locally, matches? [Y/N]
71【Files】readme.txt + master script + seeds + pinned versions? [Y/N]
72【Verifier】Cornell Center for Social Sciences / AJPS qualitative checklist path
73【Restricted data?】why + access path + synthetic data?
74【Sharing terms】Dataverse/exemption notes complete?
75【Next】ajps-review-process
76```
7778## Supplementary resources
7980- [`../../resources/external_tools.md`](../../resources/external_tools.md) — replication-package tooling and qualitative-transparency options
81- [`../../resources/official-source-map.md`](../../resources/official-source-map.md) — AJPS Replication & Verification Policy, verifier transition, and AJPS Dataverse
8283---
8485**Source:** [`brycewang-stanford/Awesome-Journal-Skills`](https://github.com/brycewang-stanford/Awesome-Journal-Skills) → `American-Journal-of-Political-Science-Skills/skills/ajps-replication-and-verification/SKILL.md`
Run npx skillmds add thedixitjain/ajps-replication-and-verification in your terminal (requires Node.js), paste this page's agent-chat prompt into Claude, Cursor, or any MCP-connected agent, or download the SKILL.md file and copy it into your agent's skills directory.
Use when building the replication package for an American Journal of Political Science (AJPS) manuscript. AJPS is famous for MANDATORY third-party PRE-publication verification — an independent verifier re-runs your deposited code and confirms it reproduces the numerical results in the main text before the article is published, with materials deposited to the AJPS Dataverse on Harvard Dataverse. Prepares the package; it does not waive requirements. It is listed under Coding & Dev Tools on SkillMD.
This skill has not completed SkillMD's automated safety review yet. Capability flags: makes network calls. SkillMD never runs a skill's scripts for you; review the SKILL.md before installing.
This skill is tagged as working with Claude Code, Claude.ai, OpenAI Codex. SKILL.md is an open format, so most agents that read a skills directory can load it too.
Yes. Installing skills from SkillMD is free, and the skill stays under its author's original license.
thedixitjain (@thedixitjain) published this skill. Their other Agent Skills are listed on their SkillMD profile.