Skip to main content

export-citation

Export resolved citations to a reference-manager file format (RIS, BibTeX, CSL JSON, EndNote XML, RefWorks, NBIB, Zotero RDF, CSV, or plain text).

インストールへ移動

ソース情報

リポジトリ
mlava/scholar-sidekick-cursor-plugin
ソースの最終更新活動
2026年5月26日 10:48
検出された SKILL.md の言語
英語
スター
0
フォーク
0

インストール方法

デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。

ソースファイルを確認

インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。

SKILL.md を表示中

SKILL.md
ソースの指示 · 読み取り専用プレビュー
name
export-citation
description
Export resolved citations to a reference-manager file format (RIS, BibTeX, CSL JSON, EndNote XML, RefWorks, NBIB, Zotero RDF, CSV, or plain text).
# exportCitation Resolves identifiers and serialises the resulting items to a bibliography file. Targets reference managers (Zotero, Mendeley, EndNote, RefWorks) and LaTeX workflows (BibTeX/Overleaf). ## When to use - The user wants to import citations into Zotero, Mendeley, EndNote, or a LaTeX project. - An agent needs a `.ris`, `.bib`, or `.json` artifact to attach to a draft. ## Inputs - `text` (string) OR `items` (CSL-JSON[]) — Input identifiers or pre-resolved items. - `format` (string, required) — `ris`, `bibtex`, `csl-json`, `endnote-xml`, `refworks`, `nbib`, `rdf`, `csv`, or `txt`. - `style` (string, optional) — Only used when `format=txt` (selects the formatter style). ## Outputs Plain-text body in the requested format with appropriate `Content-Type` and `Content-Disposition: attachment; filename=...` headers. ## Underlying surfaces - **REST**: `POST /api/export`. - **MCP tool**: `exportCitation`. ## Example ```bash curl -sS -X POST "https://scholar-sidekick.com/api/export" \ -H "Content-Type: application/json" \ -d '{"text":"10.1038/nphys1170\n9780306406157","format":"ris"}' \ -o citations.ris ``` ## See also - `formatCitation` for inline-rendered references. - [`/docs.md#post-apiexport`](https://scholar-sidekick.com/docs.md) for full format reference.
GitHubで見る