claude.symlink/skills/search/SKILL.md
Expert web research with advanced search techniques. Use for deep research, information gathering, or fact verification.
npx skillsauth add htlin222/dotfiles searchInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Find and synthesize information effectively.
# Exact phrase
"error handling best practices"
# Exclude terms
python tutorial -beginner
# Site-specific
site:github.com react hooks
# File type
filetype:pdf security audit
# Date range (use WebSearch date filtering)
react 18 features 2024
# WebSearch with domain filtering
WebSearch(
query="kubernetes best practices",
allowed_domains=["kubernetes.io", "cloud.google.com", "docs.aws.amazon.com"],
)
# Exclude unreliable sources
WebSearch(
query="health benefits of X",
blocked_domains=["pinterest.com", "quora.com"],
)
# Broad search first
queries = [
"main topic overview",
"main topic best practices",
"main topic common problems",
]
# Follow up on promising results
for result in initial_results:
if is_authoritative(result):
content = WebFetch(url=result.url, prompt="Extract key findings")
facts.append(content)
## Research Summary: [Topic]
### Key Findings
1. **Finding 1** - [Source](url)
- Supporting detail
- Supporting detail
2. **Finding 2** - [Source](url)
- Supporting detail
### Consensus
- Points that multiple sources agree on
### Contradictions
- Areas where sources disagree
### Gaps
- Questions that couldn't be answered
### Sources
- [Title](url) - Credibility: High/Medium/Low
| Indicator | High Credibility | Low Credibility | | --------- | ------------------------------ | ----------------------- | | Domain | .gov, .edu, major publications | Unknown, user-generated | | Author | Named expert, organization | Anonymous, unclear | | Date | Recent, regularly updated | Outdated, no date | | Citations | Links to sources | No references | | Bias | Balanced, factual | Promotional, extreme |
Input: "Research best auth solutions for SaaS" Action: Search auth providers, compare features, check reviews, summarize
Input: "Verify this claim about performance" Action: Find benchmarks, check methodology, cross-reference results
testing
Converts narrative medical text into Pocket Medicine bullet-style notes with proper abbreviations, then modularizes sections exceeding 20 lines into linked standalone files.
devops
Use when deploying Docker services on the local VM (hostname: vm, Pop!_OS) with Traefik reverse proxy and Homepage dashboard. Covers crane image workflow, Traefik file-provider registration, Homepage services.yaml entries, and compose templates on the traefik-proxy network.
development
Use when reviewing a data visualization or figure for clarity, checking if a graph communicates its message without additional context, or iterating on R/Python plot scripts until a naive reader can fully understand the figure.
development
Runs Vale prose linter on markdown/text files and auto-fixes issues. Use when the user asks to lint, proofread, or improve writing quality of markdown or text files.