Skills for helping academic researchers take a research repository from closed to fully open source. Compatible with Claude Code, Gemini CLI, OpenAI Codex, GitHub Copilot, and any agent supporting the Agent Skills open standard.
| Skill | Description |
|---|---|
secrets-scan |
Safety gate — scans working tree and git history for secrets and PII |
assess-readiness |
Scorecard across safety, legal, citation, reproducibility, and documentation |
citation-check |
DOI verification, CITATION.cff validation/generation, codemeta.json |
readme-gen |
Drafts a research-tuned README with academic sections |
open-source-plan |
Synthesizes findings into a phased, decision-surfacing migration checklist |
secrets-scan [path]— always first; gate everything on this resultassess-readiness [path]— full picture of what needs workcitation-check [path]— verify and generate citation metadatareadme-gen [path]— draft the READMEopen-source-plan [path]— generate the full migration checklist
git clone https://github.com/VERSO-UVM/academic-open-source-helper ~/.claude/plugins/academic-open-source-helperRegister in ~/.claude/settings.json:
{
"plugins": ["~/.claude/plugins/academic-open-source-helper"]
}Skills are available as /academic-open-source-helper:secrets-scan, etc.
# Copy individual skills
cp -r skills/secrets-scan ~/.claude/skills/
cp -r skills/assess-readiness ~/.claude/skills/
# etc.
# Or symlink the whole directory
ln -s $(pwd)/skills/* ~/.claude/skills/Skills are available as /secrets-scan, etc.
git clone https://github.com/VERSO-UVM/academic-open-source-helper ~/.gemini/extensions/academic-open-source-helperThe gemini-extension.json manifest and GEMINI.md context file are included.
git clone https://github.com/VERSO-UVM/academic-open-source-helperPoint Codex to the skills/ directory, or copy AGENTS.md to your project root for context. Individual skill directories follow the Agent Skills standard and are read directly.
Any agent supporting the Agent Skills standard can load skills from the skills/ directory directly. Clone the repo and configure your agent to read from skills/.
Copilot reads .github/copilot-instructions.md for project context. Copy that file to your research repository to give Copilot the full skill descriptions and recommended workflow. For full skills support, use a Copilot-compatible agent.
Issues-first, researcher-as-author. This plugin never silently makes changes to the scholarly record. CRITICAL findings (secrets, PII, dead DOIs) are reported with exact remediation steps — the researcher acts, not the tool. Generated files (CITATION.cff, README drafts) are clearly marked as drafts for human review.
Built by VERSO / ORCA at the University of Vermont. Part of a broader effort to make research software open-sourcing repeatable and teachable. See project_spec.md for the full architecture including a planned MCP server layer.
Skills follow established research-software standards: CITATION.cff, codemeta, FAIR principles, OSI licenses, and Zenodo for DOI minting. The plugin format follows the Agent Skills open standard.