feat: add ai-college-news-tracker skill - #116
Open
huangkai15 wants to merge 1 commit into
Open
Conversation
添加高校人工智能学院新闻追踪 Skill,用于按需查询全国本科以上高校人工智能学院的新闻动态。 功能: - 多渠道新闻收集(高校官网、新闻媒体、社交媒体、搜索引擎) - 新闻分类筛选(学院建设、师资动态、学术研究、产学研合作、招生培养、会议活动) - 结构化 Markdown 报告输出 包含参考资料: - 全国高校人工智能学院清单(约40所) - 推荐新闻来源列表
ethan7zhanghx
requested changes
Apr 23, 2026
Collaborator
There was a problem hiding this comment.
Issue 1:执行步骤缺乏工具与方法层面的指引
当前执行步骤(第一步至第三步)描述的是“要做什么”,而非“Agent 如何做到”。例如:
- “访问学院官网新闻栏目”——Agent 应使用 web_search、browser-fetch 还是 playwright?不同工具的适用场景和限制不同,需明确。
- 微信公众号、微博列为采集渠道,但这些平台对 Agent 几乎不可访问,写入执行流程会产生误导。
- 搜索结果如何解析、如何判断相关性、如何去重,均未说明。
建议按 Agent 实际可用的工具(如 web_search、fetch)重写执行步骤,将无法访问的渠道移出执行流程,改为“补充参考”性质。
Issue 2:Step 1 与已有 reference 文件重复
Step 1 描述的是“搜索并整理高校清单,存入 references/ai-colleges-list.md”,但该文件已在 PR 中提供。这会导致 Agent 每次执行时重复搜索重建清单,而非读取现有文件。建议将 Step 1 改为直接读取该文件。
🤖 Co-reviewed with Claude
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
变更信息
业务同学提交到 devdevfeat/ai-college-news-trackerai-college-news-trackerskills/ai-college-news-tracker/feat/ai-college-news-tracker是本次变更内容
skills/ai-college-news-tracker/目录SKILL.md:Skill 主文件,包含适用场景、输入要求、执行步骤、输出要求references/ai-colleges-list.md:全国高校人工智能学院清单(约40所)references/news-sources.md:推荐新闻来源列表验证方式
skills/ai-college-news-tracker/SKILL.md文件存在且内容完整skills/<skill-slug>/SKILL.md补充说明
Agent 提交备注
dev✓