revenue-decomp

revenue-decomp is a skill for Claude Code from agentii-ai/agentii-investment-intelligence. It costs 41 tokens per session (1,410 once invoked), scanned A, original, Apache-2.0.

A method for breaking a company’s total revenue into parts, such as business segments, regions, products, customers, or sales channels. It can also show how those parts change over time and how dependent revenue is on a few sources.

In plain words
What is it for?
Use it for segment and geographic breakdowns, product-line waterfalls, revenue-mix analysis, divisional performance, concentration risk, customer dependency, and channel analysis.
Why use it?
It helps reveal what is driving growth or decline and whether revenue is concentrated in one segment, customer, region, or channel. The analysis uses structured financial data rather than searching through documents.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Part of the business-intelligence plugin — 4 skills, 4 commands shipped together

Good fit Use it for segment and geographic breakdowns, product-line waterfalls, revenue-mix analysis, divisional performance, concentration risk, customer dependency, and channel analysis.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/agentii-ai/agentii-investment-intelligence/revenue-decomp
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 agentii-ai/agentii-investment-intelligence --skill revenue-decomp
Clone the repo
git clone --depth 1 https://github.com/agentii-ai/agentii-investment-intelligence

Made for: Claude Code.

Or install business-intelligence, the plugin that ships this one along with the rest of its 4 skills, 4 commands.

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 revenue-decomp

README.md
[![agentmods](https://agentmods.dev/badge/skills/agentii-ai/agentii-investment-intelligence/revenue-decomp/github.svg)](https://agentmods.dev/skills/agentii-ai/agentii-investment-intelligence/revenue-decomp)
Your own site
<a href="https://agentmods.dev/skills/agentii-ai/agentii-investment-intelligence/revenue-decomp"><img src="https://agentmods.dev/badge/skills/agentii-ai/agentii-investment-intelligence/revenue-decomp/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 revenue-decomp

Your own site · 80×15
<a href="https://agentmods.dev/skills/agentii-ai/agentii-investment-intelligence/revenue-decomp"><img src="https://agentmods.dev/badge/skills/agentii-ai/agentii-investment-intelligence/revenue-decomp.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 41 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,410 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.00041 $0.01410
Opus 5 $0.00020 $0.00705
Sonnet 5 $0.00008 $0.00282
Haiku 4.5 $0.00004 $0.00141

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

Security

Grade A, and why

revenue-decomp 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 7d 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.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

  • what-if — 88% identical, 40 lines differ
plugins/vertical-plugins/business-intelligence/skills/agentii/revenue-decomp/SKILL.md · 120 lines

How it starts

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

revenue-decomp

Triggers

  • Revenue decomposition
  • segment breakdown
  • geographic revenue split
  • product-line waterfall
  • revenue mix analysis
  • business segment performance
  • divisional revenue
  • revenue concentration
  • customer revenue dependency
  • channel revenue analysis

Defaults

Parameter Default Value Rationale
ticker (required) Stock symbol to analyze
lookback_quarters 4 Standard lookback for this skill type

Methodology

1. Retrieval Scope

This skill operates with retrieval_scope: structured_only. It performs structured data retrieval only (XBRL facts, financials, earnings calendar) — no unstructured document search. Document-retrieval tools are excluded from allowed_tools.

2. Retrieval Strategy

Follows the retrieval strategy decision tree in contracts/retrieval.md. Primary branch: (a) Structured Data Query. Resolve the canonical ticker first (exact → fuzzy alias → share-class) before any data call.

3. Temporal Scope

Default lookback: 4 fiscal quarter(s); maximum: 8. The default balances recency against the trend window this analysis requires.

4. Tool Allowlist

Per frontmatter allowed_tools:

  • search_companies — ticker resolution + company context (entity-alias fuzzy match)
  • search_xbrl_facts — primary structured financial facts (is_primary default)
  • get_company_financials — consolidated IS/BS/CF highlights
  • get_company_profile — sector/industry classification + metadata
  • list_xbrl_concepts — XBRL concept discovery for non-standard line items (namespace param; default us-gaap — use ifrs-full for foreign filers)

5. Protocol

  1. Pre-flight (mandatory): call get_company_fiscal_calendar/{ticker} then get_ticker_coverage/{ticker}; route on coverage.
  2. Concept discovery (non-standard concepts only): list_xbrl_concepts(query=<term>, ticker=<T>).
  3. Structured retrieval: search_xbrl_facts(ticker, concept=[...], fiscal_year=[...]) (is_primary default) and/or get_company_financials/{ticker}.
  4. Batch rule: 3+ same-tool queries → consolidate via batch_search (≤8 sub-queries).
  5. Output: write the deliverable per ## Output File, then append to agentii.md.

Read the full file on GitHub · 120 lines

Files

What ships with it

4 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. 7d ago Changed · +3 lines cc1debd075f0
  2. 12d ago First seen · 117 lines · 41 tokens per session scan A 915d55169a39

Subscribe to this mod's changes

revenue-decomp is a skill published in the GitHub repository agentii-ai/agentii-investment-intelligence (204 stars, last pushed yesterday), licensed Apache-2.0. It adds 41 tokens to every session and 1,410 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-08-30.

Related

Other skills, from other repositories

deal-packet

Produce the full institutional deal packet for a deal — Excel underwriting model + Word IC memo + PowerPoint deck + PDF one-pager — all Bristol-branded, fully cited, and cross-linked to one sources registry. Use when the user says "build the packet," "full workup," "put together the IC package," "model this deal," or…

Fusion-Data-Company/bristol-os · 83 tokens

deal-memo

Assemble research into a polished investment committee memo, market study, or deal one-pager. Use when the user says "write the memo," "put together an IC memo," "make a one-pager," "turn this into a document for the committee/lenders/LPs," or wants research packaged into a deliverable.

Fusion-Data-Company/bristol-os · 71 tokens

deal-pipeline

Track deals across stages and produce status updates. Use when the user says "track this deal," "what's in my pipeline," "update the status on [deal]," "give me a pipeline summary," or wants an overview of what's moving.

Fusion-Data-Company/bristol-os · 53 tokens

investor-sourcing

Research capital partners and LPs for a raise, and research who owns or controls a parcel or entity and how to contact them. Use when the user says "find investors," "who could fund this," "research this capital partner," "who owns this land/parcel," "who's behind this LLC," or needs investor/owner background and…

Fusion-Data-Company/bristol-os · 76 tokens

underwriting-research

Research the real-world assumptions behind a multifamily underwriting model — achievable rents, operating expenses, taxes, insurance, construction/hard costs, and available incentives. Use when the user says "check my assumptions," "what should I underwrite for," "research expenses/taxes/insurance/construction costs,"…

Fusion-Data-Company/bristol-os · 86 tokens

market-comp-analysis

Pull rent comps, occupancy, supply pipeline, absorption, and cap-rate trends for a submarket, then build a market study. Use when the user asks for "comps," "rent comps," "market study," "what are rents doing," "cap rates," "what's the competition," or needs the market picture behind a deal.

Fusion-Data-Company/bristol-os · 73 tokens