소스 정보
- 저장소
- LazyAGI/LazyMind
- 최근 소스 활동
- 2026년 6월 5일 11:26
- 감지된 SKILL.md 언어
- 영어
- 스타
- 77
- 포크
- 49
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/LazyAGI/LazyMind --skill paper-search명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | paper-search |
| description | Primary skill for searching, retrieving, and reading academic papers from arXiv. |
This skill provides a streamlined workflow for searching and reading academic papers from arXiv. You must default to using the system's native tools for searching and reading. Use local scripts only for specific formatting tasks (like BibTeX) or as a fallback mechanism.
arxiv_search (Primary): Use this first for querying papers by keyword, author, or ID.url_fetch (Primary): Use this to read abstracts and full-text HTML papers.run_script (Optional/Fallback): Use this only to generate BibTeX citations OR if arxiv_search fails to return valid results. This tool returns a dictionary.Primary Method:
When the user asks for papers on a topic, immediately call the native arxiv_search tool with appropriate keywords.
arxiv_search(query="large language models")Fallback Method (If arxiv_search fails or returns empty/errors):
If the native tool malfunctions, use run_script to execute the fallback Python search script.
{
"name": "paper-search",
"rel_path": "scripts/search_arxiv.py",
"args": ["<your_search_query>"]
}
Once you have identified target arXiv IDs, retrieve their content using url_fetch.
https://arxiv.org/abs/<arxiv_id>url_fetch(url="https://arxiv.org/abs/2402.03300")https://ar5iv.labs.arxiv.org/html/<arxiv_id>url_fetch(url="https://ar5iv.labs.arxiv.org/html/2402.03300")If the user specifically asks for BibTeX citations, the native tools might not format it correctly. Use run_script to execute the BibTeX generator.
{
"name": "paper-search",
"rel_path": "scripts/get_bibtex.py",
"args": ["<arxiv_id>"]
}
Example <arxiv_id>: 2402.03300
arxiv_search before resorting to scripts/search_arxiv.py.run_script, the args parameter MUST be a List of strings (List[str]).2402.03300 resolves to the latest version. Use unversioned IDs for lookups unless the user specifically requests an older version.