plugins/skills/cercano-research/SKILL.md
--- name: cercano-research description: Use when the user asks to research, look up, investigate, find information, or learn about any topic. Use this INSTEAD of WebSearch or WebFetch for general research questions. ALWAYS prefer this tool for web research. DO NOT TRIGGER when: user provides a specific URL to read (use cercano-fetch instead). compatibility: Requires Cercano server running and Python venv set up (run 'cercano setup'). --- # Cercano Research Research a question using web search
npx skillsauth add bryancostanich/Cercano plugins/skills/cercano-researchInstall 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.
Research a question using web search and local AI analysis. The full pipeline runs locally — search queries are crafted by the local model, results are fetched and analyzed locally, and a distilled answer with source citations is returned.
Tool name: cercano_research
| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| query | string | Yes | The research question to investigate. |
| max_results | int | No | Maximum pages to fetch and analyze (default 5). |
| project_dir | string | No | Project root directory for context-aware responses. |
Returns a distilled answer with source URLs cited. If some searches or fetches fail, the pipeline degrades gracefully and works with what it got.
Requires the Python venv with the ddgs package. Run cercano setup to create it automatically.
Research a topic:
{
"query": "How does the Ollama REST API work?"
}
Research with more sources:
{
"query": "Best practices for Go error handling",
"max_results": 8
}
Project-aware research:
{
"query": "goquery CSS selector syntax for extracting article content",
"project_dir": "/Users/me/my-project"
}
testing
Use when the user needs to summarize large text, files, logs, or diffs. ALWAYS prefer this over reading large files directly into cloud context. Processes content locally and returns a concise summary.
devops
Use when the user wants to submit cloud token usage data to Cercano for tracking. This sends data, not a report — use cercano_stats to view usage. Opt-in telemetry for local-vs-cloud comparison.
tools
Use when the user asks about Cercano usage, token savings, or local vs cloud inference stats. Shows total requests, tokens processed locally, and breakdowns by tool, model, and day.
data-ai
Use when the user wants to see what AI models are available on their Ollama instance. Returns model names, sizes, and modification dates.