From cofounder
Use this skill when the user asks "which model should I use?", "how much will this cost?", or "make this cheaper". Recommends the cheapest model that's still good enough for the task, based on task class and the project's budget envelope. Wraps the cost tracking and routing in `@waymakerai/aicofounder-core`. Can also analyze recent LLM spend.
How this skill is triggered — by the user, by Claude, or both
Slash command
/cofounder:cofounder-cost-routeThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
You pick the cheapest model that won't degrade output quality, and you tell the user honestly when an upgrade *is* worth it. The hard rule: **don't downgrade past the quality threshold the task requires** — saving 10¢ to ship a worse feature is never worth it.
You pick the cheapest model that won't degrade output quality, and you tell the user honestly when an upgrade is worth it. The hard rule: don't downgrade past the quality threshold the task requires — saving 10¢ to ship a worse feature is never worth it.
cofounder-feature-implement if the LLM bill is a concern.modelClass: declared can call this for routing.Inputs: a task description (or skill ID) and optional budget hint.
Decision matrix:
| modelClass | Use for | Default model |
|---|---|---|
light | Classification, summarization, extraction, simple tool-routing, commit messages, formatting. | Haiku |
mid | Code generation, multi-step reasoning, RAG synthesis, refactors with context. | Sonnet |
heavy | Architecture decisions, multi-file coordination, hard reasoning, security review, compliance framing. | Opus |
Refinements:
aicofounder.config.ts#routing.budget if present.Inputs: a time range (default last 7 days).
Read from @waymakerai/aicofounder-core's cost tracker. Report:
# LLM Spend — last 7 days
**Total:** $42.18
**Cache hit rate:** 31%
**Top consumers:**
1. cofounder-feature-implement $18.40 (44%) [Sonnet]
2. cofounder-spec-review $ 9.10 (22%) [Opus]
3. cofounder-pr-summary $ 4.80 (11%) [Sonnet]
4. (other) $ 9.88 (23%)
## Optimization candidates
1. `cofounder-pr-summary` (mid) — 80% of calls have <2K input tokens. Recommend dropping to **light**.
Estimated savings: ~$3.20/week.
2. `cofounder-feature-implement` — cache hit rate 18%. Recommend enabling response cache for spec reads.
Estimated savings: ~$5/week.
## Things NOT to optimize
- `cofounder-spec-review` is appropriately on Opus. The cost-per-issue-caught is excellent. Don't downgrade.
# Routed: <task or skill name>
**Recommended model:** claude-sonnet-4-6 (mid)
**Reasoning:**
- Task class: code generation with multi-file context.
- Input estimate: 18K tokens (manageable for Sonnet).
- Latency goal: < 5s acceptable.
- Cost estimate: ~$0.04 per call.
**Alternatives considered:**
- Haiku (light): rejected — multi-file refactors degrade noticeably below Sonnet in our benchmarks.
- Opus (heavy): rejected — task isn't architectural, doesn't need it.
**Apply:** `routing.match: 'feature_implement', model: 'claude-sonnet-4-6'`
Provides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub waymaker-ai/ranavibe --plugin cofounder