一键导入
arxiv-watcher
Search and summarize papers from ArXiv. Use when the user asks for the latest research, specific topics on ArXiv, or a daily summary of AI papers.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Search and summarize papers from ArXiv. Use when the user asks for the latest research, specific topics on ArXiv, or a daily summary of AI papers.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
根据用户提供的代码变更内容、变更描述或 git diff,生成符合约定式提交规范(Conventional Commits) 的 git commit message。当用户需要写提交信息、生成 commit、写 git 记录时使用此技能。 触发关键词:写commit、生成提交信息、commit message、提交说明、git提交、写提交记录。
根据任意编程语言(Java、Python、TypeScript、Go 等)的源代码、架构说明或功能描述, 生成结构规范、语言专业的开发技术文档。当用户需要为模块、功能、类/函数/接口撰写开发文档、 技术说明、架构文档、接口文档、模块说明时使用此技能。 触发关键词:生成文档、写文档、开发文档、技术文档、模块说明、架构文档、接口文档、写说明。
| name | arxiv-watcher |
| description | Search and summarize papers from ArXiv. Use when the user asks for the latest research, specific topics on ArXiv, or a daily summary of AI papers. |
This skill interacts with the ArXiv API to find and summarize the latest research papers.
getPaperById on the ArXiv ID to extract more details if requested.Detect the language of the user's input and respond entirely in that language. If the user writes in Chinese, respond in Chinese. If the user writes in English or Spanish, respond in that language accordingly.
Note: tool call parameters (query, authorName, etc.) should always be passed in English regardless of the user's language, as ArXiv search works best with English keywords.
searchLatestPapers(query, category, maxResults) — results are sorted by submission date (newest first).searchPapers(query, category, maxResults) — results are sorted by relevance.searchPapersByAuthor(authorName, maxResults).getPaperById(arxivId).searchLatestPapers(query, category, maxResults): Search papers sorted by submission date. Use for "latest" or "recent" queries.searchPapers(query, category, maxResults): Search papers sorted by relevance. category options: cs.AI, cs.CL, cs.LG, cs.DB, or leave empty for all.searchPapersByAuthor(authorName, maxResults): Search papers by a specific author.getPaperById(arxivId): Get full details of a paper by its ArXiv ID.