スキル一覧に戻る
varde80

obsidian-summarize

by varde80

Claude Code AI Agent for academic paper workflow: arXiv search, Zotero management, Obsidian notes

0🍴 0📅 2026年1月11日
GitHubで見るManusで実行

SKILL.md


name: obsidian-summarize description: Create paper summaries in Obsidian. Use when users want to summarize research papers, create literature notes, or add paper insights to their knowledge base. allowed-tools: Read,Bash,Write

Obsidian Paper Summary Skill

Create structured paper summaries in your Obsidian vault.

Prerequisites

Configuration file at config/config.json with Obsidian settings:

  • obsidian.vault_path: Path to your Obsidian vault
  • obsidian.papers_folder: Subfolder for paper notes (default: "Papers")

Usage

Create a paper summary:

cd /Users/varde/code/arxiv-zotero-obsidian && python3 .claude/skills/obsidian-summarize/scripts/create_summary.py \
  --arxiv-id "2401.12345" \
  --title "Paper Title" \
  --authors "Author One,Author Two" \
  --abstract "Paper abstract..." \
  --summary "Your summary of the paper..."

Available Options

OptionDescriptionRequired
--arxiv-idarXiv paper IDYes
--titlePaper titleYes
--authorsComma-separated author namesYes
--abstractOriginal abstractNo
--publishedPublication dateNo
--zotero-keyZotero item key for linkingNo
--summaryYour summaryNo
--key-findingsPipe-separated findingsNo
--methodologyMethodology notesNo
--contributionsMain contributionsNo
--limitationsPaper limitationsNo
--future-workFuture directionsNo
--personal-notesYour thoughtsNo
--tagsComma-separated tagsNo

Examples

# Basic summary
python3 .claude/skills/obsidian-summarize/scripts/create_summary.py \
  --arxiv-id "1706.03762" \
  --title "Attention Is All You Need" \
  --authors "Ashish Vaswani,Noam Shazeer" \
  --abstract "The dominant sequence transduction models..." \
  --summary "Introduces the Transformer architecture..."

# Full summary with all fields
python3 .claude/skills/obsidian-summarize/scripts/create_summary.py \
  --arxiv-id "1706.03762" \
  --title "Attention Is All You Need" \
  --authors "Ashish Vaswani,Noam Shazeer" \
  --abstract "The dominant sequence transduction models..." \
  --published "2017-06-12" \
  --zotero-key "ABC123XYZ" \
  --summary "Introduces the Transformer architecture..." \
  --key-findings "Self-attention replaces recurrence|Achieves SOTA on translation|Parallelizable training" \
  --methodology "Encoder-decoder with multi-head attention" \
  --tags "transformer,attention,nlp"

Note Structure

The created note includes:

  1. Frontmatter: YAML metadata (title, authors, dates, links)
  2. Overview: Quick reference callout box
  3. Abstract: Original paper abstract
  4. Summary: Your summary
  5. Key Findings: Bullet points
  6. Methodology: Method description
  7. Contributions: Main contributions
  8. Limitations & Future Work: Critical analysis
  9. Personal Notes: Your thoughts
  10. Related Papers: Space for linking other notes

Output

Creates markdown file at: {vault_path}/{papers_folder}/{YYYY-MM-DD}-{title-slug}.md

Integration Workflow

Typical workflow with other skills:

  1. arxiv-search: Find papers on a topic
  2. zotero-add: Add selected papers to Zotero (get item_key)
  3. obsidian-summarize: Create summary note with Zotero link
# After adding to Zotero with item_key ABC123
python3 .claude/skills/obsidian-summarize/scripts/create_summary.py \
  --arxiv-id "2401.12345" \
  --title "Paper Title" \
  --authors "Author" \
  --zotero-key "ABC123" \
  --summary "Claude-generated summary here..."

スコア

総合スコア

50/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です