agent-identifier
Use when creating or configuring Claude Code agents and their frontmatter.
Use when the user asks to generate daily paper digests on a general topic. This skill supports both arXiv and bioRxiv (or either one), then produces structured Chinese/English summaries for selected papers.
$ npx -y skills add Galaxy-Dawn/claude-scholar --skill daily-paper-generator --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/daily-paper-generatorContext preview
The summary Claude sees to decide when to auto-load this skill.
Use when the user asks to generate daily paper digests on a general topic. This skill supports both arXiv and bioRxiv (or either one), then produces structured Chinese/English summaries for selected papers.
name: daily-paper-generator description: Use when the user asks to generate daily paper digests on a general topic. This skill supports both arXiv and bioRxiv (or either one), then produces structured Chinese/English summaries for selected papers. version: 0.5.1
Discover, screen, and summarize recent papers for any research topic.
Supported sources:
Core workflow: 1. Define topic query and time window 2. Search papers from arXiv / bioRxiv 3. Select Top 10 candidates per field 4. Score and narrow to Top 3 per field 5. Choose Top 1 per field 6. Generate bilingual summaries 7. Save outputs to `daily paper/`
Use this skill when:
Each summary should contain: 1. Paper title 2. Authors and venue/source 3. Link(s) and date 4. Chinese review (~300 words) 5. English review (concise academic prose) 6. Metadata table 7. Appendix (optional resources)
| Task | Method | |---|---| | Search papers | Use `scripts/arxiv_search.py` with `--source arxiv|biorxiv|both` | | Topic selection | Use general-topic queries from `references/keywords.md` | | Evaluate quality | Use `references/quality-criteria.md` | | Write Chinese review | Use `references/writing-style.md` | | Write English review | Follow scientific writing best practices |
Choose a concrete topic query. Examples:
Use helper script:
python skills/daily-paper-generator/scripts/arxiv_search.py \ --query "test-time adaptation for medical imaging" \ --source both \ --months 1 \ --max-results 80 \ --output /tmp/papers.json
Notes:
For each candidate paper: 1. Check topic relevance from title + abstract 2. Remove obviously off-topic papers 3. Keep **Top 10 candidates** for this field
Minimum rule:
For the Top 10 pool: 1. Score each paper with `references/quality-criteria.md` 2. Rank by weighted score 3. Keep **Top 3**
For the Top 3 shortlist: 1. Compare novelty + method completeness + experimental credibility 2. Check practical impact for the field 3. Select **Top 1** as the final pick
Required output trace:
For each selected paper, generate:
Recommended directory and naming:
daily paper/ YYYY-MM-DD-HHMM-paper-1.md YYYY-MM-DD-HHMM-paper-2.md YYYY-MM-DD-HHMM-paper-3.md
1. Use explicit topic queries, avoid single-word vague queries. 2. Keep the time window explicit (`--months N`). 3. Distinguish source in metadata (`arxiv` vs `biorxiv`). 4. Use the fixed narrowing rule: **Top 10 -> Top 3 -> Top 1** (per field). 5. If a paper lacks robust evaluation, mark confidence and limitations clearly. 6. Do not fabricate unavailable fields (institution/GitHub/code links).
Semi-automated research assistant for academic research and software development. Supports Claude Code, Codex CLI, Kimi Code CLI, and OpenCode across ideation, coding, experiments, writing, and publication.
Repo: Galaxy-Dawn/claude-scholar
Use when creating or configuring Claude Code agents and their frontmatter.
Use only when creating new registrable ML components that require Factory or Registry patterns.
This skill should be used when the user asks to "debug this", "fix this error", "investigate this bug", "troubleshoot this issue", "find the problem",…
This skill provides reference guidance for citation verification in academic writing. Use when the user asks about "citation verification best practices", "how…
This skill should be used when the user asks to review a diff or pull request, write review comments, audit code quality, establish review standards, or…
This skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command…