reproducibility-architect

reproducibility-architect is a skill for Claude Code, Codex from Nero1688/claude-academic-skills. It costs 606 tokens per session (2,271 once invoked), scanned A, original, MIT.

A guide for packaging research so another person can rerun its data processing and analysis. A replication package is the project files, instructions, code, data guidance, and software details needed to reproduce published results.

In plain words
What is it for?
Use it to organize raw and generated data, separate code from outputs, record R or Python environments and random seeds, and create a one-command process for producing tables and figures.
Why use it?
It reduces uncertainty about how results were produced and helps address review requirements when data is licensed or cannot be shared.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to organize raw and generated data, separate code from outputs, record R or Python environments and random seeds, and create a one-command process for producing tables and figures.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/nero1688/claude-academic-skills/reproducibility-architect
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.

Any agent
npx skills add Nero1688/claude-academic-skills --skill reproducibility-architect
Clone the repo
git clone --depth 1 https://github.com/Nero1688/claude-academic-skills

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 reproducibility-architect

README.md
[![agentmods](https://agentmods.dev/badge/skills/nero1688/claude-academic-skills/reproducibility-architect/github.svg)](https://agentmods.dev/skills/nero1688/claude-academic-skills/reproducibility-architect)
Your own site
<a href="https://agentmods.dev/skills/nero1688/claude-academic-skills/reproducibility-architect"><img src="https://agentmods.dev/badge/skills/nero1688/claude-academic-skills/reproducibility-architect/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for reproducibility-architect

Your own site · 80×15
<a href="https://agentmods.dev/skills/nero1688/claude-academic-skills/reproducibility-architect"><img src="https://agentmods.dev/badge/skills/nero1688/claude-academic-skills/reproducibility-architect.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 606 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,271 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00606 $0.02271
Opus 5 $0.00303 $0.01136
Sonnet 5 $0.00121 $0.00454
Haiku 4.5 $0.00061 $0.00227

Measured 11d ago against content hash 6c9ec5d9f32a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

reproducibility-architect 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 11d 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.

skills/reproducibility-architect/SKILL.md · 94 lines

How it starts

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

可重現性與複製包架構師(Reproducibility Architect)

Step 1|可重現的專案結構(地基)

固定骨架,讓 replicator 一眼看懂:

project/
├── README.md            # replicator 指南(見 Step 5)
├── run_all.R / run_all.py   # master script:一鍵從 raw 跑到 output
├── renv.lock / requirements.txt  # 環境鎖定
├── data/
│   ├── raw/             # 原始資料,唯讀,絕不被程式改寫
│   └── derived/         # 程式產生的中間檔(可由 raw 重建,不進版本庫)
├── code/
│   ├── 01_clean.R
│   ├── 02_integrate.R   # 多源整合(接 multi-source-data-integrator)
│   ├── 03_analysis.R
│   └── 04_tables_figures.R
└── output/
    ├── tables/          # 每個檔對應論文某表
    └── figures/         # 每個檔對應論文某圖

鐵律:raw 唯讀(所有清理輸出到 derived);輸出檔名對應論文表號圖號 (reviewer 追得到「表 4 是哪支程式產的」);master script 按序呼叫,中途不需手動介入。

Step 2|計算環境捕捉(別人跑得出來的關鍵)

  • R:renv::init()renv::snapshot()renv.lock(鎖定套件版本); replicator renv::restore() 還原。
  • Python:pip freeze > requirements.txt 或 conda environment.yml; 進階用 Docker 鎖 OS 層(頂刊複製包漸增)。
  • 亂數種子:所有 bootstrap/模擬/隨機分派設固定 seed,寫在 master script 開頭。
  • 版本聲明:R/Python 版本、作業系統、關鍵套件版本寫進 README—— 計量套件(如 did、fixest)更新可能改變結果,版本是可重現的一部分。
  • 路徑:一律相對路徑(用 here::here / Path);絕不硬編本機絕對路徑 (別人的電腦沒有你家目錄的絕對路徑)。

Step 3|授權/受限資料的可重現困境(你的實際處境)

核心資料受授權(TEJ 等付費庫)不能散布時,可重現≠公開資料。滿足實質要求的階梯:

  1. 程式碼全公開 + 資料存取指引:公開所有程式碼,附「如何取得 TEJ 資料+ 本研究用的確切表/欄位/期間」的清單,讓有授權者能重建。這是最低標,多數頂刊接受。
  2. 合成/模擬資料:提供結構相同(欄位、型別、關聯)但數值為合成的假資料, 讓程式碼能跑通(驗證程式正確性,即使數字非真)。
  3. 可公開的中間結果:若授權允許,公開去識別的迴歸輸入(如已聚合、不可還原 原始的分析檔)。
  4. 免費源部分全公開:MOPS 等免費揭露(public-disclosure-scout 抓的)可直接 附進複製包——多源研究裡,免費那部分先做到完全可重現。 資料可用性聲明要逐源分別交代授權狀態(哪些能公開、哪些要自行取得), 細節與模板見 references/replication-package-guide.md

Step 4|三份聲明(2026 投稿標配)

  1. 資料可用性聲明(Data Availability Statement):每個資料源的來源、授權、 取得方式;受限資料寫明「因授權不可公開,取得管道為…」。接 multi-source-data-integrator 的來源譜系表直接生成。
  2. 程式碼可用性聲明:公開庫連結(如 GitHub/OSF/Zenodo 附 DOI)。
  3. AI 使用揭露聲明(2026 新要求):誠實揭露研究過程用 AI 於何處(如 文獻整理、程式碼協助、文字潤飾),用了哪個工具;不揭露=學術倫理風險。 模板見 references/replication-package-guide.md

Read the full file on GitHub · 94 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. 11d ago First seen · 94 lines · 606 tokens per session scan A 6c9ec5d9f32a

Subscribe to this mod's changes

reproducibility-architect is a skill published in the GitHub repository Nero1688/claude-academic-skills (6 stars, last pushed 9d ago), licensed MIT. It adds 606 tokens to every session and 2,271 once invoked, about $0.0030 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

alterlab-deep-research

Runs a 13-agent deep research pipeline for rigorous academic work on any topic across 7 modes (full research, quick brief, paper review, lit-review, fact-check, Socratic guided research dialogue, and systematic review with optional meta-analysis), covering research-question formulation, Socratic mentoring, methodology…

AlterLab-IEU/AlterLab-Academic-Skills · 239 tokens

alterlab-imaging-data-commons

Query and download public cancer imaging data from the NCI Imaging Data Commons (IDC) using the idc-index Python package, filtering by metadata, visualizing in-browser, and checking licenses, with no authentication required. Use when obtaining large-scale radiology (CT, MR, PET) or digital pathology DICOM datasets for…

AlterLab-IEU/AlterLab-Academic-Skills · 90 tokens

alterlab-pyhealth

Develops, tests, and deploys clinical machine learning models with the PyHealth healthcare AI toolkit. Use when working with electronic health records (EHR), clinical prediction tasks (mortality, readmission, drug recommendation), medical coding systems (ICD, NDC, ATC), physiological signals (EEG, ECG), healthcare…

AlterLab-IEU/AlterLab-Academic-Skills · 117 tokens

alterlab-cobrapy

Build and analyze genome-scale constraint-based metabolic models with COBRApy — flux balance analysis (FBA), flux variability analysis (FVA), gene and reaction knockouts, flux sampling, and SBML model I/O. Use when simulating metabolic networks, predicting growth or knockout phenotypes, or running systems-biology and…

AlterLab-IEU/AlterLab-Academic-Skills · 91 tokens

alterlab-deeptools

Process and visualize deep-sequencing coverage with the deepTools CLI — convert BAM to bigWig (bamCoverage), build log2 ratio tracks (bamCompare), run QC (multiBamSummary correlation, PCA, plotFingerprint), apply the ATAC-seq Tn5 shift (alignmentSieve --ATACshift), and make TSS/peak heatmaps and profiles…

AlterLab-IEU/AlterLab-Academic-Skills · 173 tokens

alterlab-phylogenetics

Build phylogenetic trees end-to-end from raw sequences — MAFFT multiple sequence alignment, optional TrimAl trimming, IQ-TREE 2 maximum-likelihood inference with model selection and bootstraps, FastTree for large datasets, then visualize with ETE3 or FigTree. Use when reconstructing trees from sequences (FASTA) for…

AlterLab-IEU/AlterLab-Academic-Skills · 152 tokens