financial-analyst

financial-analyst is a skill for Claude Code from strikersam/autonomous-ai-agency. It costs 33 tokens per session (597 once invoked), scanned A, original, MIT.

A financial-analysis tool for AI infrastructure spending that calculates burn rate, runway, gross margin, and return on investment.

In plain words
What is it for?
Reviewing infrastructure costs, measuring financial health, and recommending whether to cut, scale, hold, or investigate budget lines.
Why use it?
It turns cost and revenue data into budget decisions when teams need to control spending or assess growth.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

Good fit Reviewing infrastructure costs, measuring financial health, and recommending whether to cut, scale, hold, or investigate budget lines.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/strikersam/autonomous-ai-agency/financial-analyst
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.

Any agent
npx skills add strikersam/autonomous-ai-agency --skill financial-analyst
Clone the repo
git clone --depth 1 https://github.com/strikersam/autonomous-ai-agency

Made for: Claude Code.

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 financial-analyst

README.md
[![agentmods](https://agentmods.dev/badge/skills/strikersam/autonomous-ai-agency/financial-analyst/github.svg)](https://agentmods.dev/skills/strikersam/autonomous-ai-agency/financial-analyst)
Your own site
<a href="https://agentmods.dev/skills/strikersam/autonomous-ai-agency/financial-analyst"><img src="https://agentmods.dev/badge/skills/strikersam/autonomous-ai-agency/financial-analyst/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for financial-analyst

Your own site · 80×15
<a href="https://agentmods.dev/skills/strikersam/autonomous-ai-agency/financial-analyst"><img src="https://agentmods.dev/badge/skills/strikersam/autonomous-ai-agency/financial-analyst.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 33 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 597 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00033 $0.00597
Opus 5 $0.00016 $0.00298
Sonnet 5 $0.00007 $0.00119
Haiku 4.5 $0.00003 $0.00060

Measured 9d ago against content hash 8492882b4e31, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

financial-analyst 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 9d 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.

.claude/skills/financial-analyst/SKILL.md · 86 lines

What it actually says

Skill: financial-analyst (Agentic CFO)

Purpose

Autonomous financial analysis for AI infrastructure costs. Ingests cost lines, computes standard CFO metrics, and emits per-line budget recommendations.

When to Use

  • After adding new cost lines to the infrastructure budget
  • Monthly financial review cycles
  • Before scaling any AI service that incurs cost
  • When runway drops below 6 months (triggers CUT recommendations)

Components

Class Role
CostLine Single budget line item (name, monthly_cost, revenue_attributed)
FinancialMetrics Core metrics: burn rate, runway, gross margin
BudgetOptimizer Greedy ROI-weighted budget reallocation
FinancialAgent Recommendation engine: CUT / SCALE / HOLD / INVESTIGATE

Quick Start

from agents.financial_analyst import (
    CostLine, FinancialMetrics, FinancialAgent,
)

metrics = FinancialMetrics(
    monthly_revenue=50_000,
    monthly_costs=35_000,
    cash_on_hand=200_000,
    cost_lines=[
        CostLine("gpu", 20_000, revenue_attributed=40_000, category="cogs"),
        CostLine("api", 5_000, revenue_attributed=50_000, category="operations"),
    ],
)

agent = FinancialAgent()
recs = agent.assess(metrics)
for line_name, rec in recs.items():
    print(f"{line_name}: {rec.value}")

Decision Rules

Condition Recommendation
runway < 6 months CUT lowest-ROI line
gross_margin < 0.40 INVESTIGATE COGS lines
line.roi > 5.0 and category in {sales, R&D} SCALE
line.roi < 0.5 and not strategic CUT
otherwise HOLD

Testing

pytest tests/test_financial_analyst.py -v

22 tests covering CostLine, FinancialMetrics, BudgetOptimizer, and FinancialAgent.

Branch

fix/quick-note-236-agentic-cfo

SKILL.md refresh Tue Jun 2 11:35:52 CEST 2026

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. 9d ago First seen · 86 lines · 33 tokens per session scan A 8492882b4e31

Subscribe to this mod's changes

financial-analyst is a skill published in the GitHub repository strikersam/autonomous-ai-agency (8 stars, last pushed today), licensed MIT. It adds 33 tokens to every session and 597 once invoked, about $0.0002 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-09-03.

Related

Other skills, from other repositories

agent-agentic-payments

Agent skill for agentic-payments - invoke with $agent-agentic-payments.

ruvnet/ruflo · 22 tokens

cost-efficiency-analyzer

Analyzes cost structure, cost efficiency, and expense management from P&L data. Use when the user asks about costs, expenses, COGS, operating expenses, cost ratios, cost control, spending efficiency, margin compression from cost side, or wants to understand where money is going. Also use for "are we spending too…

awslabs/agentcore-samples · 98 tokens

assimilate-popular-workflows

This skill should be used when the user asks to "find skills in the wild", "assimilate popular workflows", "discover SKILL.md files in repos", "research external skills", "find workflow patterns", "survey the skill landscape", "what skills exist out there", or wants to investigate public repositories for extractable…

a5c-ai/babysitter · 110 tokens

mcp-app-verification

Comprehensive verification checklists for MCP Apps. Tests with basic-host reference, validates handler-before-connect, text fallback, resource URI linking, single-file bundling, host styling, CSP, and legacy pattern detection.

a5c-ai/babysitter · 48 tokens

guardrails-ai-setup

Guardrails AI validation framework setup for LLM applications. Implement input/output validation, safety checks, and structured output enforcement.

a5c-ai/babysitter · 30 tokens

frontmatter-parsing

YAML frontmatter parsing and manipulation for .planning/ documents. Provides read, write, update, query, and validation operations on frontmatter blocks in GSD markdown artifacts.

a5c-ai/babysitter · 40 tokens