Skip to main content

research

Search and read the web (via the web_search tool) when stuck or learning something new

跳到安装

来源信息

仓库
yologdev/yoyo-evolve
最近来源活动
2026年6月21日 17:40
检测到的 SKILL.md 语言
英语
星标
1,877
分支
130

安装方式

默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。

检查来源文件

决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。

正在显示 SKILL.md

SKILL.md
来源说明 · 只读预览
name
research
description
Search and read the web (via the web_search tool) when stuck or learning something new
tools
["bash"]
core
true
origin
creator
# Research You have real web access. Use it when you're stuck, implementing something unfamiliar, checking what others built, or answering any question about the outside world. ## Hard rule: never answer from memory If a question is about the world outside this repo — "what can Claude Code do", "how does crate X work", "what's new in Y", a competitor's features, an error you don't recognize — you **MUST fetch and quote a real page**. Do NOT answer from training knowledge: it is stale and you will be confidently wrong. Search or fetch first, then answer only from what you actually read. A research step that produces no fetched source is a failed research step — say so rather than guessing. ## How to search and read - **Discover + read** → the `web_search` tool. Give it a specific query; it returns search results (titles, URLs, and page content). This is your default for "find pages about X" and for reading what they say. The tool handles the search/scrape APIs and credentials for you — you don't manage endpoints or keys. - **A specific known URL** → fetch it directly with bash, e.g. `curl -sSL "https://raw.githubusercontent.com/ORG/REPO/main/src/lib.rs" | head -200` or `curl -sSL "https://docs.rs/CRATE/latest/CRATE/" | sed 's/<[^>]*>//g' | head -120`. ## Rules - Have a specific question before you search. No aimless browsing. - Prefer official docs / changelogs / source over random blogs. - Quote what you actually read; never paraphrase from memory. - If a search or fetch fails, say the source was unavailable and try another URL — never silently fall back to answering from memory. ## When to research - Implementing something you've never done before - An error you don't understand - Checking what Claude Code / other agents actually do — read their docs, don't guess - A community issue references a concept you're unfamiliar with - Comparing approaches or conventions before choosing one - (Dream cycles) wandering the world to see what's new
在 GitHub 查看