Agent Skills
› QuixiAI/Hexis
› research
research
GitHub指导Agent如何通过web_search和web_fetch获取外部信息,结合recall交叉验证并存储记忆。适用于缺乏知识、需核实事实或查询最新事件时进行信息检索与研究。
Trigger Scenarios
用户询问未知话题或最新事实
现有记忆置信度低或过时
需要验证信息准确性
Install
npx skills add QuixiAI/Hexis --skill research -g -y
SKILL.md
Frontmatter
{
"name": "research",
"aliases": [
"research",
"look",
"find",
"search",
"investigate",
"learn",
"read",
"web",
"online",
"news"
],
"contexts": [
"heartbeat",
"chat"
],
"requires": {
"tools": [
"web_search",
"web_fetch"
],
"config": [
"tavily"
]
},
"bound_tools": [
"web_search",
"web_fetch",
"recall",
"remember",
"web_summarize",
"brave_search",
"firecrawl_scrape"
],
"description": "How to research topics using web tools"
}
Research Methodology
When investigating a topic that requires current or external information:
- Use
web_searchfor broad queries to find relevant sources - Use
web_fetchto read the most promising results in full - Cross-reference findings with existing memories via
recall - Store important findings with
rememberfor future reference
When to Research
- When a goal requires information you don't have in memory
- When existing memories have low confidence or are outdated
- When the user asks about recent events or facts
- When you need to verify something before acting on it
Research Quality
- Use specific, targeted search queries rather than broad ones
- Cross-reference multiple sources before accepting a claim
- Note the source URL when storing findings as memories
- Prefer authoritative sources (official docs, academic, established media)
Version History
- 97f625f Current 2026-08-29 01:32
- 990da5f 2026-08-20 13:53


