financials

financials is a skill for Claude Code, Codex from jokull/icelandic-data. It costs 28 tokens per session (3,828 once invoked), scanned A, original, MIT.

A pipeline for extracting structured financial figures from Icelandic annual-report PDFs. It covers income statements, balance sheets, cash-flow statements, and financial ratios.

In plain words
What is it for?
Use it to process annual reports identified by a company’s Icelandic registration number and produce structured financial data by company and fiscal year.
Why use it?
It turns difficult-to-search PDF tables into consistent data fields for comparison and analysis. The process downloads reports, reads their tables, and standardizes the results.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is uv run python scripts/financials.py extract /path/to/report.pdf.

Good fit Use it to process annual reports identified by a company’s Icelandic registration number and produce structured financial data by company and fiscal year.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/jokull/icelandic-data
agentmods
npx agentmods add skills/jokull/icelandic-data/financials

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 financials

README.md
[![agentmods](https://agentmods.dev/badge/skills/jokull/icelandic-data/financials.svg)](https://agentmods.dev/skills/jokull/icelandic-data/financials)
Your own site
<a href="https://agentmods.dev/skills/jokull/icelandic-data/financials"><img src="https://agentmods.dev/badge/skills/jokull/icelandic-data/financials.svg" alt="Measured on agentmods" height="20"></a>
Per session 28 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,828 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.00028 $0.03828
Opus 5 $0.00014 $0.01914
Sonnet 5 $0.00006 $0.00766
Haiku 4.5 $0.00003 $0.00383

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

Security

Grade A, and why

financials 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.

.agents/skills/financials/SKILL.md · 498 lines

How it starts

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

Financials (Annual Report Extraction)

Extract structured financial data from Icelandic annual reports (ársreikningar) using AI-powered PDF parsing.

Overview

This skill combines:

  1. skatturinn skill - Downloads annual report PDFs
  2. Docling - IBM's PDF extraction with 97.9% table accuracy
  3. Claude interpretation - Standardizes extracted data into structured format

Pipeline

Company kennitala
    ↓
skatturinn.py download (PDF)
    ↓
Docling (markdown + tables)
    ↓
Claude (structured JSON)
    ↓
Standardized financial data

Output Schema

interface CompanyFinancials {
  // Identification
  company_name: string;
  kennitala: string;
  fiscal_year: number;
  report_type: "full" | "hnappurinn" | "consolidated";

  // Income Statement (Rekstraryfirlit)
  income: {
    revenue: number;              // Rekstrartekjur
    operating_expenses: number;   // Rekstrargjöld
    ebitda: number;               // Afkoma fyrir afskriftir
    depreciation: number;         // Afskriftir
    ebit: number;                 // Afkoma fyrir fjármagnsliði
    financial_income: number;     // Fjármunatekjur
    financial_expenses: number;   // Fjármagnsgjöld
    profit_before_tax: number;    // Afkoma fyrir skatt
    income_tax: number;           // Tekjuskattur
    net_profit: number;           // Hagnaður/Tap ársins
  };

  // Balance Sheet (Efnahagsyfirlit)
  balance: {
    // Assets (Eignir)
    fixed_assets: number;         // Fastafjármunir
    current_assets: number;       // Veltufjármunir
    total_assets: number;         // Eignir samtals

    // Equity & Liabilities
    share_capital: number;        // Hlutafé
    retained_earnings: number;    // Óráðstafað eigið fé
    total_equity: number;         // Eigið fé samtals
    long_term_debt: number;       // Langtímaskuldir
    short_term_debt: number;      // Skammtímaskuldir
    total_liabilities: number;    // Skuldir samtals
  };

  // Cash Flow (if available)
  cashflow?: {
    operating: number;            // Handbært fé frá rekstri
    investing: number;            // Fjárfestingarhreyfingar
    financing: number;            // Fjármögnunarhreyfingar
    net_change: number;           // Breyting á handbæru fé
  };

  // Ownership (from skatturinn page or PDF)
  ownership: Array<{
    name: string;
    kennitala?: string;           // If company owner
    birth_year_month?: string;    // If individual (privacy)
    percentage: number;
    type: "direct" | "indirect";
  }>;

  // Corporate Structure
  parent_company?: {
    name: string;
    kennitala: string;
    ownership_pct: number;
  };

  subsidiaries: Array<{
    name: string;
    kennitala: string;
    ownership_pct: number;        // How much THIS company owns
    book_value?: number;          // Bókfært virði
    equity_method: boolean;       // Hlutdeildaraðferð (20-50% ownership)
  }>;

  associates: Array<{             // Hlutdeildarfélög (20-50% ownership)
    name: string;
    kennitala: string;
    ownership_pct: number;
    book_value?: number;
  }>;

  // Key Metrics (calculated)
  metrics: {
    equity_ratio: number;         // Eiginfjárhlutfall
    current_ratio?: number;       // Veltufjárhlutfall
    debt_to_equity?: number;      // Skuldir/Eigið fé
    profit_margin?: number;       // Hagnaðarhlutfall
  };

  // Notable Events
  events: Array<{
    type: "acquisition" | "investment" | "dividend" | "restructuring" | "other";
    description: string;
    amount?: number;
  }>;

  // Data Quality
  extraction: {
    source_pdf: string;
    extracted_at: string;
    confidence: "high" | "medium" | "low";
    notes: string[];
  };
}

Read the full file on GitHub · 498 lines

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 First seen · 498 lines · 28 tokens per session scan A ba4ec88f35ad

Subscribe to this mod's changes

financials is a skill published in the GitHub repository jokull/icelandic-data (52 stars, last pushed yesterday), licensed MIT. It adds 28 tokens to every session and 3,828 once invoked, about $0.0001 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.