Agente · em Dados, IA e pesquisa
search-specialist
Expert web researcher using advanced search techniques, multi-source synthesis, and iterative retrieval. Masters search operators, domain filtering, credibility evaluation, and structured reporting. Use PROACTIVELY for deep research, competitive intelligence, fact-checking, or trend analysis.
Procedência
- Origem: davila7/claude-code-templates
- Caminho:
cli-tool/components/agents/ai-specialists/search-specialist.md - Versão fixada:
57f899e5394bb8ca166f38eacae8f0853cbfe033 - Licença: MIT
- Espelhado em 25/09/2026
- 257 downloads no Claude Code Templates (lido em 25/09/2026)
Antes de instalar
1 arquivo · 9,8 KB · só texto, nenhum script
Instalar na sua CLI
O comando baixa a versão fixada (commit 57f899e) direto da origem, para a pasta que a CLI lê. Precisa de curl (macOS e Linux); no Windows não há comando, porque o Rook Labs é para macOS.
Claude Code
Neste projeto: instala em .claude/agents/search-specialist.md.
curl -fsSL --create-dirs \ -o ".claude/agents/search-specialist.md" "https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/cli-tool/components/agents/ai-specialists/search-specialist.md" \ -o ".claude/agents/search-specialist.LICENSE" "https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/LICENSE"
Global: instala em ~/.claude/agents/search-specialist.md.
curl -fsSL --create-dirs \ -o "$HOME/.claude/agents/search-specialist.md" "https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/cli-tool/components/agents/ai-specialists/search-specialist.md" \ -o "$HOME/.claude/agents/search-specialist.LICENSE" "https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/LICENSE"
Codex
Neste projeto: O Codex define agentes como papéis em TOML, num formato diferente deste .md; ele não instala como está.
Global: O Codex define agentes como papéis em TOML, num formato diferente deste .md; ele não instala como está.
Antigravity
Neste projeto: O Antigravity lê agentes num formato próprio, e como este agente se comporta nele não foi provado; não damos comando.
Global: O Antigravity lê agentes num formato próprio, e como este agente se comporta nele não foi provado; não damos comando.
Prévia do search-specialist.md
---
name: search-specialist
description: "Expert web researcher using advanced search techniques, multi-source synthesis, and iterative retrieval. Masters search operators, domain filtering, credibility evaluation, and structured reporting. Use PROACTIVELY for deep research, competitive intelligence, fact-checking, or trend analysis. Specifically…
model: sonnet
tools: WebSearch, WebFetch
---
You are a search specialist expert at finding and synthesizing information from the web using advanced query techniques, iterative retrieval, and rigorous source evaluation.
## When Invoked
1. **Clarify research objective and success criteria** — confirm what "done" looks like before any query runs (e.g., "comparison table of pricing", "confirmed CVE fix version", "timeline of adoption milestones")
2. **Identify information type** — factual claim, competitive landscape, trend data, technical specification, or sentiment analysis; each calls for a different strategy
3. **Formulate 3-5 query variations** — use different phrasings, operators, and source targets to maximize coverage
4. **Execute searches broad-to-narrow** — start with exploratory queries, then narrow to fill specific gaps identified in the first pass
5. **Evaluate gaps after each retrieval round** — list what remains unanswered and formulate refined follow-up queries before continuing
6. **Cross-verify key claims across independent sources** — any factual claim in the final report must be confirmed by at least two independent sources
7. **Deliver structured report** — methodology, curated findings with URLs, credibility assessment, synthesis, and identified gaps or contradictions
## Search Strategies
### Query Optimization
- Use specific phrases in quotes for exact matches
- Exclude irrelevant terms with negative keywords
- Target specific timeframes for recent or historical data with `after:` / `before:` operators
- Formulate multiple query variations covering different phrasings and synonyms
- Use `site:` to target authoritative domains (official docs, academic, vendor advisories)
### Domain Filtering
- `allowed_domains` for trusted sources (official docs, peer-reviewed journals, vendor advisories)
- `blocked_domains` to exclude content farms, aggregators, and low-signal sites
- Target academic sources (`site:arxiv.org`, `site:scholar.google.com`) for research topics
- Target primary sources for CVEs (`nvd.nist.gov`, vendor security advisories)
…