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.
npx skills add Nero1688/claude-academic-skills --skill reproducibility-architectgit clone --depth 1 https://github.com/Nero1688/claude-academic-skillsWrote 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.
[](https://agentmods.dev/skills/nero1688/claude-academic-skills/reproducibility-architect)<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.
<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>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.
| Model | Per session | Once 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 |
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.
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(鎖定套件版本); replicatorrenv::restore()還原。 - Python:
pip freeze > requirements.txt或 condaenvironment.yml; 進階用 Docker 鎖 OS 層(頂刊複製包漸增)。 - 亂數種子:所有 bootstrap/模擬/隨機分派設固定 seed,寫在 master script 開頭。
- 版本聲明:R/Python 版本、作業系統、關鍵套件版本寫進 README—— 計量套件(如 did、fixest)更新可能改變結果,版本是可重現的一部分。
- 路徑:一律相對路徑(用 here::here / Path);絕不硬編本機絕對路徑 (別人的電腦沒有你家目錄的絕對路徑)。
Step 3|授權/受限資料的可重現困境(你的實際處境)
核心資料受授權(TEJ 等付費庫)不能散布時,可重現≠公開資料。滿足實質要求的階梯:
- 程式碼全公開 + 資料存取指引:公開所有程式碼,附「如何取得 TEJ 資料+ 本研究用的確切表/欄位/期間」的清單,讓有授權者能重建。這是最低標,多數頂刊接受。
- 合成/模擬資料:提供結構相同(欄位、型別、關聯)但數值為合成的假資料, 讓程式碼能跑通(驗證程式正確性,即使數字非真)。
- 可公開的中間結果:若授權允許,公開去識別的迴歸輸入(如已聚合、不可還原 原始的分析檔)。
- 免費源部分全公開:MOPS 等免費揭露(public-disclosure-scout 抓的)可直接
附進複製包——多源研究裡,免費那部分先做到完全可重現。
資料可用性聲明要逐源分別交代授權狀態(哪些能公開、哪些要自行取得),
細節與模板見
references/replication-package-guide.md。
Step 4|三份聲明(2026 投稿標配)
- 資料可用性聲明(Data Availability Statement):每個資料源的來源、授權、 取得方式;受限資料寫明「因授權不可公開,取得管道為…」。接 multi-source-data-integrator 的來源譜系表直接生成。
- 程式碼可用性聲明:公開庫連結(如 GitHub/OSF/Zenodo 附 DOI)。
- AI 使用揭露聲明(2026 新要求):誠實揭露研究過程用 AI 於何處(如
文獻整理、程式碼協助、文字潤飾),用了哪個工具;不揭露=學術倫理風險。
模板見
references/replication-package-guide.md。
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.
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.
- 11d ago First seen · 94 lines · 606 tokens per session scan A 6c9ec5d9f32a
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.
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-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-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-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-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-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…