.claude/skills/ollama/SKILL.md
Offload simple tasks to local Ollama LLM to preserve Claude credits. Use for code summaries, file analysis, diff reviews, quick questions about syntax/APIs, and pre-screening code before deeper Claude analysis. Invoke automatically when exploring files or reviewing code.
npx skillsauth add Vero-Ventures/fuzzycat ollamaInstall 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.
You have access to a local Ollama instance at http://localhost:11434/ for offloading tasks
that don't need Claude's full capabilities. This saves token credits for complex reasoning,
multi-step planning, and tool-heavy workflows.
ALWAYS prefer Ollama for these tasks (saves ~90% of credits for routine work):
Use Claude (not Ollama) for:
The helper script is at .claude/skills/ollama/ollama.sh. Run via Bash:
# Check availability and which model is loaded
.claude/skills/ollama/ollama.sh status
# Quick question (fast, no reasoning ~0.5-2s warm)
.claude/skills/ollama/ollama.sh query "What does pgEnum do in Drizzle?"
# Deep question (with reasoning, slower ~10-30s)
.claude/skills/ollama/ollama.sh think "Should I use a db transaction for this?"
# Summarize a file
.claude/skills/ollama/ollama.sh summarize server/services/payout.ts
# Review code for issues
.claude/skills/ollama/ollama.sh review components/shared/captcha.tsx
# Analyze a diff
git diff --staged | .claude/skills/ollama/ollama.sh diff
# Explain grep matches
.claude/skills/ollama/ollama.sh grep-explain "calculateApplicationFee" server/services/payout.ts
status early
in a session to warm up. Subsequent requests are fast (~0.5-2s).for f in server/services/*.ts; do
echo "=== $f ==="; .claude/skills/ollama/ollama.sh summarize "$f"; echo
done
git diff --staged | .claude/skills/ollama/ollama.sh diff
.claude/skills/ollama/ollama.sh query "Write bun:test stubs for: export function getEffectiveShareRate(clinic: { revenueShareBps: number; foundingClinic: boolean; foundingExpiresAt: Date | null }): number"
tools
Manage Vercel deployments via CLI. Check deployment status, view logs, manage environment variables, inspect domains, trigger builds, and debug production issues. Use for any deployment or hosting task.
development
Manage Twilio SMS service via REST API. Send test messages, check message logs, inspect phone numbers, check account balance, and debug SMS delivery issues. Use for any SMS/Twilio administration task.
tools
Manage Supabase projects via CLI and Management API. List projects, check auth config, manage users, update settings, query databases, and inspect project health. Use for any Supabase administration task.
development
Interact with Stripe via REST API. List customers, payments, payouts, connected accounts, check balances, view webhook events, and manage Stripe Connect. Use for any Stripe administration, debugging, or data inspection task.