Paper Search Assistant
Goal
Find papers for a user-specified research topic and conference scope, prioritizing recent papers and official sources, then summarize them as a clean Chinese table.
Before Searching
Read references/search-guidelines.md before doing the search.
Extract these inputs from the user request:
- Topic or keywords, such as
federated learning, LLM agent, CV, RAG, or Chinese equivalents.
- Conference scope, such as
三大A, CCF-A, ICLR/ICML/NeurIPS, ACL/AAAI/KDD/CVPR, or named conferences.
- Year scope. If absent, search recent years first and prefer newer papers.
- Desired count. If absent, target 10-20 high-relevance papers.
Ask only for the missing topic if it cannot be inferred. If the conference or year scope is missing, use the defaults in references/search-guidelines.md and state the assumption.
Search Workflow
- Use web search. Paper lists, conference acceptances, paper links, and code availability are current information and must be verified online.
- Search official conference/proceedings sources first. Use arXiv only as a fallback or companion link when an official paper page is not available.
- For each candidate, verify that the paper actually matches both the target topic and the requested conference/year.
- Check code availability from credible sources: official project page, paper page, author GitHub, or Papers with Code. Do not mark code as open-source from an unverified third-party mirror.
- Deduplicate by title. Prefer the final conference version over arXiv preprints.
- Sort by newest year first, then by conference priority and topic relevance.
Output Format
Return a short Chinese note describing the search scope, then a Markdown table:
| 标题 | 会议-年份 | 关键词 | 论文链接 | 是否开源代码 |
| --- | --- | --- | --- | --- |
| 《...》 | ICLR-2026 | FL,CV,Agent | 官方链接或 arXiv 链接 | 是:https://github.com/... |
Rules:
- Use Chinese for the surrounding explanation and keywords.
- Keep titles exact. Wrap paper titles in
《》.
- Use
NeurIPS for recent papers, but accept user wording NIPS.
- In
论文链接, prefer the official publication/proceedings/OpenReview/CVF/ACL/ACM/PMLR page; use arXiv if the official page is unavailable.
- In
是否开源代码, use 是:<code link> only when a credible code repository is found. Use 否(未检索到) when not found after checking.
- Include source links in table cells whenever possible.
- If fewer papers are found than requested, say so and explain the limiting condition.
Quality Check
Before finalizing:
- Confirm every row has title, conference-year, topic keywords, paper link, and code status.
- Confirm every included paper is in the requested conference/year scope.
- Confirm links are not invented and code links are not confused with paper links.
- Confirm the table is useful for copying into notes or spreadsheets.
1---2name: paper-search-assistant3description: Search and curate recent research paper collections by target conference set, year range, and research topic, then return a verified Chinese table with title, conference-year, keywords, paper link, and open-source code status. Use when the user asks to find papers from CCF-A/AI conferences, top conferences such as ICLR, ICML, NeurIPS/NIPS, ACL, AAAI, KDD, CVPR, or strong B conferences such as ICASSP, EMNLP, IJCAI, especially for a topic-focused literature list or paper collection.4---56# Paper Search Assistant78## Goal910Find papers for a user-specified research topic and conference scope, prioritizing recent papers and official sources, then summarize them as a clean Chinese table.1112## Before Searching1314Read `references/search-guidelines.md` before doing the search.1516Extract these inputs from the user request:1718- Topic or keywords, such as `federated learning`, `LLM agent`, `CV`, `RAG`, or Chinese equivalents.19- Conference scope, such as `三大A`, `CCF-A`, `ICLR/ICML/NeurIPS`, `ACL/AAAI/KDD/CVPR`, or named conferences.20- Year scope. If absent, search recent years first and prefer newer papers.21- Desired count. If absent, target 10-20 high-relevance papers.2223Ask only for the missing topic if it cannot be inferred. If the conference or year scope is missing, use the defaults in `references/search-guidelines.md` and state the assumption.2425## Search Workflow26271. Use web search. Paper lists, conference acceptances, paper links, and code availability are current information and must be verified online.282. Search official conference/proceedings sources first. Use arXiv only as a fallback or companion link when an official paper page is not available.293. For each candidate, verify that the paper actually matches both the target topic and the requested conference/year.304. Check code availability from credible sources: official project page, paper page, author GitHub, or Papers with Code. Do not mark code as open-source from an unverified third-party mirror.315. Deduplicate by title. Prefer the final conference version over arXiv preprints.326. Sort by newest year first, then by conference priority and topic relevance.3334## Output Format3536Return a short Chinese note describing the search scope, then a Markdown table:3738```markdown39| 标题 | 会议-年份 | 关键词 | 论文链接 | 是否开源代码 |40| --- | --- | --- | --- | --- |41| 《...》 | ICLR-2026 | FL,CV,Agent | 官方链接或 arXiv 链接 | 是:https://github.com/... |42```4344Rules:4546- Use Chinese for the surrounding explanation and keywords.47- Keep titles exact. Wrap paper titles in `《》`.48- Use `NeurIPS` for recent papers, but accept user wording `NIPS`.49- In `论文链接`, prefer the official publication/proceedings/OpenReview/CVF/ACL/ACM/PMLR page; use arXiv if the official page is unavailable.50- In `是否开源代码`, use `是:<code link>` only when a credible code repository is found. Use `否(未检索到)` when not found after checking.51- Include source links in table cells whenever possible.52- If fewer papers are found than requested, say so and explain the limiting condition.5354## Quality Check5556Before finalizing:5758- Confirm every row has title, conference-year, topic keywords, paper link, and code status.59- Confirm every included paper is in the requested conference/year scope.60- Confirm links are not invented and code links are not confused with paper links.61- Confirm the table is useful for copying into notes or spreadsheets.