.agents/skills/cercano-config/SKILL.md
Query or update Cercano's runtime configuration without restarting the server. Use action 'get' to list available local models from Ollama. Use action 'set' to switch the active local model, change the Ollama endpoint URL, or change the cloud provider and model.
npx skillsauth add GoogleDevRelExplorations/cercano cercano-configInstall 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.
Query or update Cercano's runtime configuration.
Tool name: cercano_config
| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| action | string | Yes | "get" to list available Ollama models, "set" to update config. |
| local_model | string | No | Local model name to set (e.g. "qwen2.5-coder:32b"). |
| cloud_provider | string | No | Cloud provider to set: "google" or "anthropic". |
| cloud_model | string | No | Cloud model to set (e.g. "claude-sonnet-4-20250514"). |
| ollama_url | string | No | Ollama endpoint URL (e.g. "http://mac-studio.local:11434"). |
Switch local model:
{
"action": "set",
"local_model": "qwen2.5-coder:32b"
}
Point to a different Ollama instance:
{
"action": "set",
"ollama_url": "http://mac-studio.local:11434"
}
Switch cloud provider:
{
"action": "set",
"cloud_provider": "anthropic",
"cloud_model": "claude-sonnet-4-20250514"
}
devops
Summarize text or files using local AI via Cercano without sending content to the cloud. Supports brief, medium, and detailed summary lengths.
devops
Submit cloud token usage data to Cercano (opt-in). This sends data, not a report — use cercano_stats to view usage. Helps track cloud tokens alongside local inference for accurate local-vs-cloud comparison.
tools
View Cercano usage statistics and cloud token savings. Shows total requests, tokens processed locally, cloud tokens reported by the host, percentage kept local, and breakdowns by tool, model, and day.
development
Research a question using DuckDuckGo search and local AI analysis. Crafts search queries, fetches top results, and synthesizes a sourced answer — all locally.