[DEPRECATED 2026-04-15] Use /ingest --mode deep instead. Interactive paper review — legacy, schema 없음.
⚠️ 이 스킬은 DEPRECATED 됨. 2026-04-15 결정 — ingest 스킬이 상위 호환.
대체:
/ingest <DOI|URL> --mode deep/ingest <DOI|URL> --mode paper1 --section §N.M --tier X --role anchor자세한 내용: [[../../../99-meta/llm-skill-playbook|LLM Skill Playbook]] §4
Load a paper from Zotero, DOI, URL, or existing vault note, conduct an interactive review discussion, then automatically save the review note.
Save location (2026-04-15 update): 07-wiki/paper-notes/{AuthorYear}.md. NOT 01-inbox/. See 07-wiki/_protocol.md.
Must-read before executing: 07-wiki/_protocol.md (wiki 운영 규칙).
Input: $ARGUMENTS — one of:
10.1016/j.ijmecsci.2025.110723)https://arxiv.org/abs/... or ScienceDirect link)(Paper) Hao 2025 d-PINN...)Determine the input type from $ARGUMENTS:
if starts with "10." or "doi:" → DOI mode
if starts with "http" → URL mode
if matches "(Paper)" or exists as vault .md file → Vault note mode
else → Zotero search mode
https://doi.org/[DOI]Continue to Step 1 below.
Detect the Zotero data directory automatically based on the OS:
OS="$(uname -s)"
case "$OS" in
Linux*)
if grep -qi microsoft /proc/version 2>/dev/null; then
WIN_USER=$(cmd.exe /C "echo %USERNAME%" 2>/dev/null | tr -d '\r')
ZOTERO_DIR="/mnt/c/Users/${WIN_USER}/Zotero"
else
ZOTERO_DIR="$HOME/Zotero"
fi
;;
Darwin*)
ZOTERO_DIR="$HOME/Zotero"
;;
esac
If the directory is not found at the expected location, search for zotero.sqlite under the user's home directory to locate it.
Query zotero.sqlite to find matching papers. Search across titles, creators, and collection names. If multiple results are found, present a numbered list and ask the user to choose.
For the selected paper, extract full metadata: title, authors, date, DOI, journal, abstract, tags, and PDF attachment path.
The PDF path format is storage:filename.pdf. The actual file is at:
{ZOTERO_DIR}/storage/{attachment_key}/{filename}
Use the Read tool to read the PDF file. Focus on extracting:
Present a structured briefing to the user:
## [Paper Title]
**Authors:** [list] | **Year:** [year] | **Journal:** [journal]
### One-line Summary
[What this paper does in one sentence]
### Key Contributions (3 items max)
1. ...
2. ...
3. ...
### Methodology
[Brief description of the approach]
### Limitations
- [Author-acknowledged limitations]
- [Your observed limitations]
---
### Discussion Topics
I'd like to discuss these aspects with you:
1. **[Topic 1]** — [Why this is interesting/debatable]
2. **[Topic 2]** — [Connection to your research area]
3. **[Topic 3]** — [Potential gap or extension]
Which topic interests you, or do you have your own topic to start with?
After presenting the briefing, engage in natural conversation. Both you and the user can propose new discussion topics. Continue until the user indicates the discussion is complete (e.g., "done", "save", "끝", "저장", or moves to a new task).
When the discussion concludes, automatically create a review note:
Read 99-meta/tag-taxonomy.md from the vault and select 3-6 appropriate tags.
Search the Obsidian vault for related notes by key terms from the paper. Suggest 2-5 wikilinks.
IMPORTANT (2026-04-15 update): Paper notes are interpreted data and MUST be saved to 07-wiki/paper-notes/, NOT 01-inbox/ or 08-raw/. See 07-wiki/_protocol.md and 08-raw/_protocol.md.
Save to 07-wiki/paper-notes/ with filename format: {FirstAuthor}{Year}.md (e.g., Kim2024.md, Hao2025.md, Chaboche1988b.md).
중복 체크 필수: 생성 전 ls 07-wiki/paper-notes/{AuthorYear}*.md 확인. 이미 있으면 update 로 전환 (overwrite 금지, append/merge).
Note template:
---