scholaraio: Skill for Claude Code

.claude/skills/export/SKILL.md

export is a skill for Claude Code from ZimoLiao/scholaraio. It costs 36 tokens per session (2,279 once invoked), scanned A, original, MIT.

A paper-library export tool for turning saved references into BibTeX, RIS, or Markdown lists, and converting Markdown into Word files.

In plain words
What is it for?
Use it to create citation files for LaTeX, Zotero, EndNote, or Mendeley; make filtered reference lists; or share Markdown content as a DOCX file.
Why use it?
It avoids retyping references or manually reformatting them for different writing and sharing tools.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

This is ZimoLiao/scholaraio's own configuration. It tells Claude Code how to work on scholaraio itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything scholaraio configures →

Part of the scholaraio plugin — 47 skills, 1 hook, 1 MCP server shipped together

Reuse

Borrowing it

Nothing to install: this file belongs to ZimoLiao/scholaraio. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/ZimoLiao/scholaraio/main/.claude/skills/export/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/ZimoLiao/scholaraio

Made for: Claude Code.

Or install scholaraio, the plugin that ships this one along with the rest of its 47 skills, 1 hook, 1 MCP server.

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 export

README.md
[![agentmods](https://agentmods.dev/badge/skills/zimoliao/scholaraio/export.svg)](https://agentmods.dev/skills/zimoliao/scholaraio/export)
Your own site
<a href="https://agentmods.dev/skills/zimoliao/scholaraio/export"><img src="https://agentmods.dev/badge/skills/zimoliao/scholaraio/export.svg" alt="Measured on agentmods" height="20"></a>
Per session 36 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,279 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.00036 $0.02279
Opus 5 $0.00018 $0.01140
Sonnet 5 $0.00007 $0.00456
Haiku 4.5 $0.00004 $0.00228

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

Security

Grade A, and why

export 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 7d 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.

.claude/skills/export/SKILL.md · 235 lines

How it starts

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

导出论文与文档

将本地论文库导出为标准引用格式,或将任意 Markdown 内容转换为 Word 文件。

支持的导出格式

格式 命令 用途
BibTeX .bib export bibtex LaTeX 写作引用
RIS .ris export ris Zotero / Endnote / Mendeley 导入
Markdown 文献列表 export markdown 直接粘贴到文档、综述草稿
Word DOCX export docx 分享给同事、导师,任意 Markdown 内容

BibTeX 导出

# 导出全部论文到屏幕
scholaraio export bibtex --all

# 导出全部论文到文件
scholaraio export bibtex --all -o workspace/library.bib

# 导出指定论文
scholaraio export bibtex "Smith-2023-Turbulence" "Doe-2024-DNS"

# 按年份筛选导出
scholaraio export bibtex --all --year 2020-2024 -o workspace/recent.bib

# 按期刊筛选导出
scholaraio export bibtex --all --journal "Fluid Mechanics" -o workspace/jfm.bib

RIS 导出(Zotero / Endnote / Mendeley)

# 导出全部论文
scholaraio export ris --all -o workspace/library.ris

# 导出指定论文
scholaraio export ris "Smith-2023-Turbulence" "Doe-2024-DNS" -o workspace/refs.ris

# 按年份筛选
scholaraio export ris --all --year 2022-2024 -o workspace/recent.ris

导出后可直接在 Zotero 中:File → Import → 选择 .ris 文件

Markdown 文献列表导出

内置格式(--style)

格式名 说明 典型场景
apa(默认) APA 7th 作者-年份 社科、心理、教育
vancouver Vancouver/ICMJE 编号 医学、生命科学
chicago-author-date Chicago 17 作者-年份 人文、社科
mla MLA 9th 文学、语言学
<自定义> 期刊专属格式 见下方「自定义格式」
# 导出全部论文(APA 风格,默认)
scholaraio export markdown --all

# 指定引用格式
scholaraio export markdown --all --style vancouver
scholaraio export markdown --all --style chicago-author-date
scholaraio export markdown --all --style jcp        # 自定义格式

# 导出到文件
scholaraio export markdown --all --style apa -o workspace/references.md

# 无序列表
scholaraio export markdown --all --bullet

# 按年份筛选
scholaraio export markdown --all --year 2020-2024 -o workspace/recent_refs.md

查看可用格式

scholaraio style list           # 列出全部格式(内置 + 自定义)
scholaraio style show jcp       # 查看某个自定义格式的代码

自定义期刊引用格式(Agent 精确控制)

原理

自定义格式以 Python 文件存储在配置的 citation styles 目录中。fresh 默认是 data/libraries/citation_styles/<name>.py。如果用户仍有旧版 data/citation_styles/ 内容,先通过 scholaraio migrate upgrade --migration-id <id> --confirm 迁移后再导出。格式文件必须实现一个函数:

Read the full file on GitHub · 235 lines

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. 7d ago First seen · 235 lines · 36 tokens per session scan A e51a5a2d3655

Subscribe to this mod's changes

export is a skill published in the GitHub repository ZimoLiao/scholaraio (569 stars, last pushed 7d ago), licensed MIT. It adds 36 tokens to every session and 2,279 once invoked, about $0.0002 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-30.

Related

Other skills, from other repositories

infrastructure-validation

Skill for the validation infrastructure module providing PDF validation, markdown validation, output integrity checks, link verification, documentation audits, issue categorization, and repository scanning. Use when validating research outputs, checking document quality, running audits, or verifying cross-references.

docxology/template · 54 tokens

infrastructure-steganography

Skill for the steganography infrastructure module providing QR code generation with dynamic mailto links, hash manifests, metadata payloads, and document-wide overlay processing. Use this module to insert opt-in cryptographic and steganographic provenance data onto PDFs.

docxology/template · 55 tokens

template-pitch-deck

Pitch-deck generation exemplar — short/medium/long PDF+PPTX decks from one token-resolved, diligence-cited content source.

docxology/template · 35 tokens

infrastructure-documentation

Skill for the documentation infrastructure module providing figure management, image handling, markdown integration, and API glossary generation. Use when managing research figures, inserting images into manuscripts, auto-numbering figures, or generating API documentation.

docxology/template · 47 tokens

template-validation-quality

Run validation CLI, prerender, markdown/PDF/integrity gates, and QA workflows for the Research Project Template. USE WHEN validate manuscript, check PDF for ?? refs, prerender gate, link checker, output integrity, or pre-commit validation — even without validationquality prompt.

docxology/template · 64 tokens

template-storybook

Full-page illustrated storybook exemplar — symbolic shape-family characters, page-level raster scenes, text overlays, deterministic PDF assembly.

docxology/template · 28 tokens