finfocus-routing

finfocus-routing is a skill for Claude Code, Codex from rshade/finfocus. It costs 101 tokens per session (1,046 once invoked), scanned A, original, Apache-2.0.

A skill for configuring how FinFocus sends cost queries to different plugins.

In plain words
What is it for?
Use it to set plugin priorities, provider or resource matching patterns, supported features, and fallback behavior.
Why use it?
It helps control which plugin handles a query, which one is preferred, and when another plugin should be tried after an error or empty result.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/rshade/finfocus/finfocus-routing
Any agent
npx skills add rshade/finfocus --skill finfocus-routing
Clone the repo
git clone --depth 1 https://github.com/rshade/finfocus

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for finfocus-routing

README.md
[![agentmods](https://agentmods.dev/badge/skills/rshade/finfocus/finfocus-routing.svg)](https://agentmods.dev/skills/rshade/finfocus/finfocus-routing)
Your own site
<a href="https://agentmods.dev/skills/rshade/finfocus/finfocus-routing"><img src="https://agentmods.dev/badge/skills/rshade/finfocus/finfocus-routing.svg" alt="Measured on agentmods" height="20"></a>
Per session 101 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,046 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00101 $0.01046
Opus 5 $0.00051 $0.00523
Sonnet 5 $0.00020 $0.00209
Haiku 4.5 $0.00010 $0.00105

Measured 5d ago against content hash a61ffb65c11d, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

Grade A, and why

finfocus-routing scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

agent-skills/finfocus-routing/SKILL.md · 121 lines

How it starts

The opening of the file, as written. The whole thing — 121 lines — stays where its author put it; the contents beside it link to each section on GitHub.

FinFocus Plugin Routing

Route cost queries to the right plugin based on provider, region, patterns, and priority.

No Config = No Routing

Without a routing: section in config.yaml, the engine queries all plugins for every resource. Add routing config only when you need control.

Config Format

# ~/.finfocus/config.yaml (or $PROJECT/.finfocus/config.yaml)
routing:
  plugins:
    - name: aws-public        # Must match installed plugin name
      priority: 10            # Higher = preferred (default: 0)
      features:               # Limit capabilities (default: all)
        - ProjectedCosts
      patterns:               # Declarative type matching (optional)
        - type: glob
          pattern: "aws:ec2:*"
      fallback: true          # Try next on failure (default: true)

Priority and Fallback

  • Higher number = higher priority (sorted descending, stable sort)
  • Equal priority (all 0) = plugins queried in parallel
  • $0.00 is a VALID result — does NOT trigger fallback
  • Only nil/empty results or errors trigger fallback to next plugin
  • InvalidArgument does NOT trigger fallback (plugin explicitly rejected)

Features

Feature gRPC Method Capability
ProjectedCosts GetProjectedCost PLUGIN_CAPABILITY_PROJECTED_COSTS
ActualCosts GetActualCost PLUGIN_CAPABILITY_ACTUAL_COSTS
Recommendations GetRecommendations PLUGIN_CAPABILITY_RECOMMENDATIONS
Carbon GetCarbonFootprint PLUGIN_CAPABILITY_CARBON
DryRun PerformDryRun PLUGIN_CAPABILITY_DRY_RUN
Budgets GetBudgetStatus + 3 others PLUGIN_CAPABILITY_BUDGETS
BatchCost BatchCost PLUGIN_CAPABILITY_BATCH_COST

Empty features list = all features enabled. Feature names are case-sensitive.

Pattern Matching

Two types for declarative resource type matching:

Read the full file on GitHub · 121 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 121 lines · 101 tokens per session scan A a61ffb65c11d

Subscribe to this mod's changes

finfocus-routing is a skill published in the GitHub repository rshade/finfocus (5 stars, last pushed 5d ago), licensed Apache-2.0. It adds 101 tokens to every session and 1,046 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

aws-cost-ops

AWS Cost Explorer — spending analysis, service breakdowns, forecasts, cost anomalies. Use when analyzing AWS spending, investigating cost spikes, reviewing network cost drivers like NAT Gateway, or forecasting next month's bill.

automateyournetwork/netclaw · 45 tokens

dashboards

Use when creating or extending Costory dashboards, generating interesting FinOps overviews (suggestgroupby + suggestusagemetrics + text widgets), adding or replacing widgets, copying widgets between dashboards, editing dashboardContext (global filter / period / groupBy) via updatedashboard, or applying shared-context…

costory-io/costory-finops-mcp-skills · 92 tokens

reports

Use when creating, previewing, updating, scheduling, or exploring Costory reports. Route by intent: scheduled Slack/Teams/email sharing (Schedule — ask before build) vs explain last-month cost with preview-first DIGEST (Explain — chat preview required; not query+compare). Workflows are named, never lettered. DIGEST AI…

costory-io/costory-finops-mcp-skills · 136 tokens

query

Use when exploring Costory cost, usage, metric, formula, budget, or external-metric data with the query tool — scope vs split (filterCel / groupBy), explorer PoP comparison, CEL discovery, unit economics, budgets. Not for one-shot "what changed last month" change trees — those use recipes explain-period-change /…

costory-io/costory-finops-mcp-skills · 93 tokens

cost-change-investigation

Use when investigating a cost change to explain what changed, when, and the best-supported drivers with contribution, timing, usage, metric, event, alert, and terminology evidence. Call getskill with skillId "cost-change-investigation" before starting the investigation.

costory-io/costory-finops-mcp-skills · 57 tokens

runway

Show current cloud credit and spend numbers - how much credit was granted, how much is used, how much is left, when it expires, and where the money went. Use whenever the user asks about cloud spend, cloud costs, credits, AWS/Azure/GCP spend, "how much have I spent", "how much is left", "what's my burn", "what's my…

ozkilim/runway · 123 tokens