SEC 10-K Company Analysis
Use this skill to analyze one company from a SQLite SEC filings database and produce distinct, data-grounded QA pairs.
Inputs you need
- Company identifier: CIK preferred (or ticker/name if unavailable).
- Database connection or path.
- Target output count if specified; otherwise produce 18–26 distinct QA pairs.
Required workflow
Step 1: Schema discovery
Always inspect tables first before querying. Confirm exact column names — never assume aliases.
Key schema facts:
filings table: columns are cik, form, filing_date, report_date, accession_number (NOT form_type)
financial_facts table: columns include fact_name, fact_value, unit, fiscal_year, fiscal_period, end_date, accession_number, form_type, dimension_segment, dimension_geography
- If a query fails with "no such column", inspect the table schema and correct immediately — do not retry the same failing query.
Step 2: Company identity and context
SELECT * FROM companies WHERE cik = '<CIK>'
SELECT cik, ticker, exchange FROM company_tickers WHERE cik = '<CIK>'
Note the SIC industry code — it governs which industry-specific metrics to prioritize in Steps 4–5.
Step 3: Filing context — use the full available history
SELECT cik, form, filing_date, report_date, accession_number
FROM filings WHERE cik = '<CIK>' AND form = '10-K'
ORDER BY filing_date DESC LIMIT 15
Identify all available 10-K filings. A longer time horizon enables richer comparisons (e.g., pre-crisis vs. post-crisis, pre-spinoff vs. post-spinoff). Use the full history in trend queries wherever data exists.
Step 4: Metric discovery (do this before bulk queries)
-- All available fact names for this company (paginate with OFFSET if needed)
SELECT DISTINCT fact_name FROM financial_facts
WHERE cik = '<CIK>' AND form_type = '10-K'
ORDER BY fact_name LIMIT 300
-- Revenue alias search
SELECT DISTINCT fact_name FROM financial_facts
WHERE cik = '<CIK>' AND form_type = '10-K'
AND (fact_name LIKE '%Revenue%' OR fact_name LIKE '%Sales%'
OR fact_name LIKE '%ContractWithCustomer%')
Revenue/income labels vary by company — discover actuals first, then use them. Also scan for industry-specific tags based on the company's SIC code.
Annual data filter: Add AND fiscal_period = 'FY' to evidence queries to isolate full-year facts and avoid quarterly contamination when pulling trend data.
Step 5: Pull evidence across four rounds
Round A — Core multi-year trends (filter form_type = '10-K' and fiscal_period = 'FY', order by end_date, spanning the full available history):
- Revenue, net income, operating income, gross profit
- Total assets, liabilities, stockholders' equity
- Operating cash flow, investing cash flow, financing cash flow
- Long-term debt, shares outstanding, diluted EPS
- Dividends per share, interest expense, income tax expense
Round B — Detail and niche metrics (pull what's available; skip silently if absent):
- Comprehensive income, accumulated OCI (
AccumulatedOtherComprehensiveIncomeLossNetOfTax)
- Working capital components: accounts receivable, inventory, accounts payable, current assets, current liabilities
- Working capital changes from OCF statement:
IncreaseDecreaseInAccountsReceivable, IncreaseDecreaseInInventories, IncreaseDecreaseInAccountsPayable, IncreaseDecreaseInDeferredRevenue — these reveal cash conversion dynamics beyond balance sheet levels
- Debt carrying amount vs. fair value:
DebtInstrumentCarryingAmount, LongTermDebtFairValue, DebtInstrumentFairValue, LongTermDebtWeightedAverageInterestRateAtPointInTime
- Operating lease right-of-use assets, operating lease liabilities, finance lease assets and liabilities (query separately — both sides matter)
- Depreciation and amortization (separate from combined D&A if available)
- Interest income (relevant for cash-rich companies), deferred revenue, deferred tax
- Impairment charges, restructuring charges, goodwill and intangibles
- Share-based compensation, retained earnings
- Segment or geography data (
dimension_segment, dimension_geography filters)
- Industry-specific: R&D expense (pharma/tech), benefits/claims expense (insurance), lease revenue (REITs), investment income (financial), DD&A and exploration expense (energy), capex intensity, remaining performance obligations (aerospace/defense/contract manufacturers), asset retirement obligations (utilities/energy), environmental accruals
Round C — Business context and structural events:
-- Impairment and restructuring history
SELECT fact_name, fact_value, end_date FROM financial_facts
WHERE cik = '<CIK>' AND form_type = '10-K' AND fiscal_period = 'FY'
AND (fact_name LIKE '%Impairment%' OR fact_name LIKE '%Restructuring%')
ORDER BY end_date
-- Goodwill history — signals acquisition activity
SELECT fact_name, fact_value, end_date FROM financial_facts
WHERE cik = '<CIK>' AND form_type = '10-K'
AND fact_name LIKE '%Goodwill%' ORDER BY end_date
-- Advertising and brand investment
SELECT fact_name, fact_value, end_date FROM financial_facts
WHERE cik = '<CIK>' AND form_type = '10-K'
AND (fact_name LIKE '%Advertising%' OR fact_name LIKE '%MarketingExpense%')
ORDER BY end_date
-- Segment structure changes
SELECT DISTINCT fact_name, fact_value, end_date FROM financial_facts
WHERE cik = '<CIK>' AND form_type = '10-K'
AND fact_name IN ('NumberOfOperatingSegments', 'NumberOfReportableSegments')
ORDER BY end_date
Round D — Deep-dive niche metrics (probe these to unlock hard-to-replicate QA angles):
-- Customer concentration risk
SELECT fact_name, fact_value, end_date FROM financial_facts
WHERE cik = '<CIK>' AND form_type = '10-K'
AND (fact_name LIKE '%Concentration%' OR fact_name LIKE '%MajorCustomer%')
ORDER BY end_date
-- Derivative and hedge activity
SELECT DISTINCT fact_name FROM financial_facts
WHERE cik = '<CIK>' AND form_type = '10-K'
AND (fact_name LIKE '%Derivative%' OR fact_name LIKE '%Hedging%'
OR fact_name LIKE '%HedgeGainLoss%')
-- Debt extinguishment
SELECT fact_name, fact_value, end_date FROM financial_facts
WHERE cik = '<CIK>' AND form_type = '10-K'
AND (fact_name LIKE '%GainLossOnRepurchase%' OR fact_name LIKE '%ExtinguishmentOfDebt%'
OR fact_name LIKE '%DebtIssuanceCosts%')
ORDER BY end_date
-- Equity method investment income
SELECT fact_name, fact_value, end_date FROM financial_facts
WHERE cik = '<CIK>' AND form_type = '10-K'
AND (fact_name LIKE '%EquityMethodInvestment%' OR fact_name LIKE '%IncomeLossFromEquityMethod%')
ORDER BY end_date
-- FX effects on cash
SELECT fact_name, fact_value, end_date FROM financial_facts
WHERE cik = '<CIK>' AND form_type = '10-K'
AND fact_name LIKE '%EffectOfExchangeRate%'
ORDER BY end_date
-- Nonoperating income and gains/losses from asset sales
SELECT fact_name, fact_value, end_date FROM financial_facts
WHERE cik = '<CIK>' AND form_type = '10-K' AND fiscal_period = 'FY'
AND (fact_name LIKE '%GainLossOnSale%' OR fact_name LIKE '%NonoperatingIncome%'
OR fact_name LIKE '%OtherNonoperating%')
ORDER BY end_date
-- Allowance for doubtful accounts / credit risk
SELECT fact_name, fact_value, end_date FROM financial_facts
WHERE cik = '<CIK>' AND form_type = '10-K'
AND fact_name LIKE '%AllowanceForDoubtful%'
ORDER BY end_date
Understanding structural events (acquisitions, divestitures, spinoffs, crises, segment reorganizations, derivative programs) allows QA pairs to explain not just what changed but why.
Step 6: Generate QA pairs from evidence
The core rule: only submit a QA pair when the specific data points cited in the answer are present in your query results. Do not generalize beyond what was retrieved.
Before submitting any QA pair, verify:
- All cited values are exact retrieved figures — not approximations, ranges, or estimates. "approximately $11B" or "$7.4B–$8.3B" are not acceptable when exact figures are available. If a precise value was not retrieved, do not submit the pair.
- The answer explains both WHAT happened (with exact data) AND WHY it matters (business interpretation). A pure list of numbers with no interpretation, or an interpretation with no grounding data, both fail this bar.
- The angle has not already been covered by a submitted QA pair. Two questions about lease obligations from different phrasings still occupy the same analytical position — pick the stronger framing and discard the weaker.
- The question and answer are specific to this company's situation — not generic statements that could apply to any firm in the sector.
Submit a QA pair immediately when you have multi-datapoint support for a non-trivial conclusion. Keep exploring after each submission — aim for 18–26 distinct pairs covering different angles.
Identify this company's defining story: Before generating pairs, ask what makes this company's financial trajectory distinctive — a pandemic revenue cycle, a major acquisition, a regulatory restructuring, heavy infrastructure investment, a delevering campaign. Anchor several QA pairs to these defining narratives; they produce the most analytically valuable pairs and are impossible to generate without close reading of the data.
Before finalizing, do a completeness sweep: review your query results and identify any significant findings (a trend, ratio shift, structural event, or comparison) not yet captured. Each meaningful finding deserves its own pair. Niche metrics (AOCI, hedge activity, customer concentration, debt extinguishment, FX effects) often yield the most analytically distinctive pairs — do not skip them when data is available. Then review all submitted pairs for angle overlap and merge or drop any redundant ones.
QA angle checklist
Work through as many distinct angles as the data supports. Each angle should occupy a distinct analytical position — do not generate multiple QA pairs on the same theme with different wording:
- Revenue growth drivers, trajectory, and volatility
- Profitability trajectory (operating income, net income, margins as % of revenue)
- Earnings quality: operating cash flow vs. net income (OCF/net income ratio; divergence signals)
- Capital allocation: dividends, buybacks, capex — what does the mix reveal about management priorities?
- Balance sheet evolution: leverage, equity growth, asset mix
- Debt profile: level, interest rate trajectory, maturity management, fair vs. carrying value divergence
- Liquidity: cash position, working capital components (AR, inventory, AP), current ratio
- Per-share trends: EPS, dividend per share, share count (dilution or buyback)
- Comprehensive income vs. net income: OCI items, AOCI composition (forex, pension, hedges)
- Cost structure shifts: COGS, SG&A, R&D as % of revenue over time
- D&A and capex as signals of asset intensity, growth investment, and capital cycle stage
- Impairment and restructuring as transformation or risk signals
- Tax dynamics: effective rate trend, deferred taxes, valuation allowances
- Segment or geographic concentration (if data present); segment count changes as reorganization signals
- Industry-specific metrics (claims ratio, R&D intensity, lease income, DD&A, exploration spending, RPO/backlog, contract loss provisions, environmental accruals, etc.)
- Lease obligations: operating AND finance lease profiles (both sides of the lease relationship)
- Long-term obligations: pension/post-retirement benefits, AROs, environmental accruals
- Deferred revenue and contract liability trends (signal of demand health or billing dynamics)
- Goodwill and intangibles trajectory (signals acquisition history and impairment risk)
- Historical anchoring: how does current performance compare to a prior peak, trough, or pre-event period?
- Interest income and net interest position (especially for cash-rich companies)
- Financing cash flow pattern: debt issuance, equity issuance, buybacks — what does composition reveal?
- Working capital changes from OCF (IncreaseDecrease in AR/inventory/AP): reveals cash conversion vs. balance sheet levels
- Customer concentration risk: revenue dependency on major customers
- Derivative and hedge activity: commodity, interest rate, or FX risk management approach
- Debt extinguishment / refinancing: early repayment gains/losses, cost-of-debt evolution
- Equity method investment income: JV performance and strategic partnership contribution
- FX effects on cash: foreign currency translation exposure for international operators
- Advertising / brand investment: trend as % of revenue (relevant for consumer, pharma, technology)
- Nonoperating income and asset sale gains: one-time vs. recurring contribution to reported earnings
- Allowance for doubtful accounts: credit risk evolution and receivables quality
- Retained earnings trajectory: cumulative profitability and capital return history
QA style
Question form: Prefer synthesis-oriented framing — "What does [metric trend] reveal about [business quality/risk/strategy/sustainability]?" Questions should be specific to this company's period and situation.
Good question examples:
- "What does EOG Resources' OCF-to-net-income ratio reveal about its earnings quality?"
- "How does ConocoPhillips' capex trajectory from 2020 to 2024 reflect its capital discipline strategy?"
- "What does Kraft Heinz's derivative and hedge activity from 2022 to 2024 reveal about its risk management approach to commodity exposure?"
Answer form: 1–2 sentences. Lead with a concrete trend or comparison (include specific values and period references), then state the implication or business meaning. Limit to 3–4 numbers — prefer qualitative synthesis over numeric recaps.
Answer structure: [Direction + magnitude with exact figures across named periods] → [What this means for the business — quality, risk, strategy, or sustainability]. Both elements must be present in every answer.
Good example:
q: How does AvalonBay's operating cash flow compare to its dividend obligations?
a: Operating cash flow of $1.61B in 2024 comfortably exceeds dividend payments of $969M (~1.65× coverage), and the pattern has held consistently from 2022–2024, indicating strong and sustainable dividend coverage.
Poor — imprecise values (do not submit):
a: Total assets grew from roughly $19B to approximately $21B, while stockholders' equity increased to around $11.8B (based on 2023 data), maintaining a healthy equity ratio.
Poor — no business interpretation:
a: OCF was $1.61B in 2024, $1.52B in 2023, $1.42B in 2022. Dividends were $969M, $935M, $891M.
Poor — generic qualifier without quantitative support:
a: The company demonstrated disciplined leverage management throughout the period, reflecting its commitment to financial stability.
Poor — claim not in evidence (never submit without retrieved data):
a: Operating margins improved from 15% to 22%, reflecting pricing power gains. ← only submit if you queried and retrieved those margin values.
Edge-case handling
- Missing expected metrics: search for alternate
fact_name values; never invent absent fields.
- Imprecise data: if exact values cannot be retrieved (e.g., a metric only appears as a range in disclosure, or two overlapping accessions give different figures), note this explicitly in the answer or skip this data point. Never substitute a range or approximation when an exact figure was not retrieved.
- Empty results: relax one filter at a time (remove accession constraint, widen date range, try alternate tag names, drop
fiscal_period = 'FY' if truly necessary).
- Mixed annual/quarterly facts: keep 10-K trend analysis annual-focused; use
fiscal_period = 'FY' to isolate full-year facts when available.
- Duplicate facts for same period: prefer the latest accession number; document only stable comparisons.
- Query errors: read the error, correct schema usage, and continue — do not retry the identical failing query.
- Short filing history: if fewer than 4 annual filings exist, note the limitation explicitly and focus QA on available periods.
- Taxonomy shifts: some companies change XBRL tags across years (e.g.,
NetIncomeLoss → ProfitLoss). When this happens, query both tag names and note the discontinuity in the answer if it affects comparability.
Output format
For each QA pair:
q: one analytical question with clear scope and period.
a: concise answer grounded in retrieved facts (values, direction, period, implication).
Quality bar:
- Evidence-grounded: every value cited was retrieved from the database in this session, and is exact — not approximated or estimated.
- Non-redundant: each pair occupies a distinct analytical angle; no two pairs address the same thesis from different phrasings.
- Specific: questions name the company, metric, and time period.
- Synthetic: answers explain what the data means (implication) in addition to what it shows (trend).
- Self-contained: answers are interpretable without additional context.
- Comprehensive: together, the pairs give a reader a full financial picture across operational, balance sheet, cash flow, strategic, and risk dimensions.
1---2name: sec-10k-company-analysis-83description: Analyze a company in an SEC 10-K SQLite database and produce high-quality evidence-grounded financial QA pairs. Use this whenever the user asks to analyze a company by CIK/ticker, inspect 10-K financial trends, generate finance QA datasets, or work with filings/financial_facts tables.4---56# SEC 10-K Company Analysis78Use this skill to analyze one company from a SQLite SEC filings database and produce distinct, data-grounded QA pairs.910## Inputs you need11- Company identifier: CIK preferred (or ticker/name if unavailable).12- Database connection or path.13- Target output count if specified; otherwise produce **18–26 distinct QA pairs**.1415## Required workflow1617### Step 1: Schema discovery18Always inspect tables first before querying. Confirm exact column names — never assume aliases.1920Key schema facts:21- `filings` table: columns are `cik`, `form`, `filing_date`, `report_date`, `accession_number` (NOT `form_type`)22- `financial_facts` table: columns include `fact_name`, `fact_value`, `unit`, `fiscal_year`, `fiscal_period`, `end_date`, `accession_number`, `form_type`, `dimension_segment`, `dimension_geography`23- If a query fails with "no such column", inspect the table schema and correct immediately — do not retry the same failing query.2425### Step 2: Company identity and context26```sql27SELECT * FROM companies WHERE cik = '<CIK>'28SELECT cik, ticker, exchange FROM company_tickers WHERE cik = '<CIK>'29```30Note the SIC industry code — it governs which industry-specific metrics to prioritize in Steps 4–5.3132### Step 3: Filing context — use the full available history33```sql34SELECT cik, form, filing_date, report_date, accession_number35FROM filings WHERE cik = '<CIK>' AND form = '10-K'36ORDER BY filing_date DESC LIMIT 1537```38Identify **all available 10-K filings**. A longer time horizon enables richer comparisons (e.g., pre-crisis vs. post-crisis, pre-spinoff vs. post-spinoff). Use the full history in trend queries wherever data exists.3940### Step 4: Metric discovery (do this before bulk queries)41```sql42-- All available fact names for this company (paginate with OFFSET if needed)43SELECT DISTINCT fact_name FROM financial_facts44WHERE cik = '<CIK>' AND form_type = '10-K'45ORDER BY fact_name LIMIT 3004647-- Revenue alias search48SELECT DISTINCT fact_name FROM financial_facts49WHERE cik = '<CIK>' AND form_type = '10-K'50AND (fact_name LIKE '%Revenue%' OR fact_name LIKE '%Sales%'51 OR fact_name LIKE '%ContractWithCustomer%')52```53Revenue/income labels vary by company — discover actuals first, then use them. Also scan for industry-specific tags based on the company's SIC code.5455**Annual data filter**: Add `AND fiscal_period = 'FY'` to evidence queries to isolate full-year facts and avoid quarterly contamination when pulling trend data.5657### Step 5: Pull evidence across four rounds5859**Round A — Core multi-year trends** (filter `form_type = '10-K'` and `fiscal_period = 'FY'`, order by `end_date`, spanning the full available history):60- Revenue, net income, operating income, gross profit61- Total assets, liabilities, stockholders' equity62- Operating cash flow, investing cash flow, financing cash flow63- Long-term debt, shares outstanding, diluted EPS64- Dividends per share, interest expense, income tax expense6566**Round B — Detail and niche metrics** (pull what's available; skip silently if absent):67- Comprehensive income, accumulated OCI (`AccumulatedOtherComprehensiveIncomeLossNetOfTax`)68- Working capital components: accounts receivable, inventory, accounts payable, current assets, current liabilities69- **Working capital changes from OCF statement**: `IncreaseDecreaseInAccountsReceivable`, `IncreaseDecreaseInInventories`, `IncreaseDecreaseInAccountsPayable`, `IncreaseDecreaseInDeferredRevenue` — these reveal cash conversion dynamics beyond balance sheet levels70- Debt carrying amount vs. fair value: `DebtInstrumentCarryingAmount`, `LongTermDebtFairValue`, `DebtInstrumentFairValue`, `LongTermDebtWeightedAverageInterestRateAtPointInTime`71- Operating lease right-of-use assets, operating lease liabilities, finance lease assets and liabilities (query separately — both sides matter)72- Depreciation and amortization (separate from combined D&A if available)73- Interest income (relevant for cash-rich companies), deferred revenue, deferred tax74- Impairment charges, restructuring charges, goodwill and intangibles75- Share-based compensation, retained earnings76- Segment or geography data (`dimension_segment`, `dimension_geography` filters)77- Industry-specific: R&D expense (pharma/tech), benefits/claims expense (insurance), lease revenue (REITs), investment income (financial), DD&A and exploration expense (energy), capex intensity, remaining performance obligations (aerospace/defense/contract manufacturers), asset retirement obligations (utilities/energy), environmental accruals7879**Round C — Business context and structural events**:80```sql81-- Impairment and restructuring history82SELECT fact_name, fact_value, end_date FROM financial_facts83WHERE cik = '<CIK>' AND form_type = '10-K' AND fiscal_period = 'FY'84AND (fact_name LIKE '%Impairment%' OR fact_name LIKE '%Restructuring%')85ORDER BY end_date8687-- Goodwill history — signals acquisition activity88SELECT fact_name, fact_value, end_date FROM financial_facts89WHERE cik = '<CIK>' AND form_type = '10-K'90AND fact_name LIKE '%Goodwill%' ORDER BY end_date9192-- Advertising and brand investment93SELECT fact_name, fact_value, end_date FROM financial_facts94WHERE cik = '<CIK>' AND form_type = '10-K'95AND (fact_name LIKE '%Advertising%' OR fact_name LIKE '%MarketingExpense%')96ORDER BY end_date9798-- Segment structure changes99SELECT DISTINCT fact_name, fact_value, end_date FROM financial_facts100WHERE cik = '<CIK>' AND form_type = '10-K'101AND fact_name IN ('NumberOfOperatingSegments', 'NumberOfReportableSegments')102ORDER BY end_date103```104105**Round D — Deep-dive niche metrics** (probe these to unlock hard-to-replicate QA angles):106```sql107-- Customer concentration risk108SELECT fact_name, fact_value, end_date FROM financial_facts109WHERE cik = '<CIK>' AND form_type = '10-K'110AND (fact_name LIKE '%Concentration%' OR fact_name LIKE '%MajorCustomer%')111ORDER BY end_date112113-- Derivative and hedge activity114SELECT DISTINCT fact_name FROM financial_facts115WHERE cik = '<CIK>' AND form_type = '10-K'116AND (fact_name LIKE '%Derivative%' OR fact_name LIKE '%Hedging%'117 OR fact_name LIKE '%HedgeGainLoss%')118119-- Debt extinguishment120SELECT fact_name, fact_value, end_date FROM financial_facts121WHERE cik = '<CIK>' AND form_type = '10-K'122AND (fact_name LIKE '%GainLossOnRepurchase%' OR fact_name LIKE '%ExtinguishmentOfDebt%'123 OR fact_name LIKE '%DebtIssuanceCosts%')124ORDER BY end_date125126-- Equity method investment income127SELECT fact_name, fact_value, end_date FROM financial_facts128WHERE cik = '<CIK>' AND form_type = '10-K'129AND (fact_name LIKE '%EquityMethodInvestment%' OR fact_name LIKE '%IncomeLossFromEquityMethod%')130ORDER BY end_date131132-- FX effects on cash133SELECT fact_name, fact_value, end_date FROM financial_facts134WHERE cik = '<CIK>' AND form_type = '10-K'135AND fact_name LIKE '%EffectOfExchangeRate%'136ORDER BY end_date137138-- Nonoperating income and gains/losses from asset sales139SELECT fact_name, fact_value, end_date FROM financial_facts140WHERE cik = '<CIK>' AND form_type = '10-K' AND fiscal_period = 'FY'141AND (fact_name LIKE '%GainLossOnSale%' OR fact_name LIKE '%NonoperatingIncome%'142 OR fact_name LIKE '%OtherNonoperating%')143ORDER BY end_date144145-- Allowance for doubtful accounts / credit risk146SELECT fact_name, fact_value, end_date FROM financial_facts147WHERE cik = '<CIK>' AND form_type = '10-K'148AND fact_name LIKE '%AllowanceForDoubtful%'149ORDER BY end_date150```151152Understanding structural events (acquisitions, divestitures, spinoffs, crises, segment reorganizations, derivative programs) allows QA pairs to explain not just what changed but why.153154### Step 6: Generate QA pairs from evidence155156**The core rule**: only submit a QA pair when the specific data points cited in the answer are present in your query results. Do not generalize beyond what was retrieved.157158**Before submitting any QA pair, verify:**1591. All cited values are exact retrieved figures — not approximations, ranges, or estimates. "approximately $11B" or "$7.4B–$8.3B" are not acceptable when exact figures are available. If a precise value was not retrieved, do not submit the pair.1602. The answer explains both WHAT happened (with exact data) AND WHY it matters (business interpretation). A pure list of numbers with no interpretation, or an interpretation with no grounding data, both fail this bar.1613. The angle has not already been covered by a submitted QA pair. Two questions about lease obligations from different phrasings still occupy the same analytical position — pick the stronger framing and discard the weaker.1624. The question and answer are specific to this company's situation — not generic statements that could apply to any firm in the sector.163164Submit a QA pair immediately when you have multi-datapoint support for a non-trivial conclusion. Keep exploring after each submission — aim for **18–26 distinct pairs** covering different angles.165166**Identify this company's defining story**: Before generating pairs, ask what makes this company's financial trajectory distinctive — a pandemic revenue cycle, a major acquisition, a regulatory restructuring, heavy infrastructure investment, a delevering campaign. Anchor several QA pairs to these defining narratives; they produce the most analytically valuable pairs and are impossible to generate without close reading of the data.167168**Before finalizing**, do a completeness sweep: review your query results and identify any significant findings (a trend, ratio shift, structural event, or comparison) not yet captured. Each meaningful finding deserves its own pair. Niche metrics (AOCI, hedge activity, customer concentration, debt extinguishment, FX effects) often yield the most analytically distinctive pairs — do not skip them when data is available. Then review all submitted pairs for angle overlap and merge or drop any redundant ones.169170## QA angle checklist171172Work through as many distinct angles as the data supports. Each angle should occupy a **distinct analytical position** — do not generate multiple QA pairs on the same theme with different wording:1731741. Revenue growth drivers, trajectory, and volatility1752. Profitability trajectory (operating income, net income, margins as % of revenue)1763. Earnings quality: operating cash flow vs. net income (OCF/net income ratio; divergence signals)1774. Capital allocation: dividends, buybacks, capex — what does the mix reveal about management priorities?1785. Balance sheet evolution: leverage, equity growth, asset mix1796. Debt profile: level, interest rate trajectory, maturity management, **fair vs. carrying value** divergence1807. Liquidity: cash position, working capital components (AR, inventory, AP), current ratio1818. Per-share trends: EPS, dividend per share, share count (dilution or buyback)1829. Comprehensive income vs. net income: OCI items, **AOCI composition** (forex, pension, hedges)18310. Cost structure shifts: COGS, SG&A, R&D as % of revenue over time18411. D&A and capex as signals of asset intensity, growth investment, and capital cycle stage18512. Impairment and restructuring as transformation or risk signals18613. Tax dynamics: effective rate trend, deferred taxes, valuation allowances18714. Segment or geographic concentration (if data present); **segment count changes** as reorganization signals18815. Industry-specific metrics (claims ratio, R&D intensity, lease income, DD&A, exploration spending, RPO/backlog, contract loss provisions, environmental accruals, etc.)18916. Lease obligations: operating AND finance lease profiles (both sides of the lease relationship)19017. Long-term obligations: pension/post-retirement benefits, AROs, environmental accruals19118. Deferred revenue and contract liability trends (signal of demand health or billing dynamics)19219. Goodwill and intangibles trajectory (signals acquisition history and impairment risk)19320. Historical anchoring: how does current performance compare to a prior peak, trough, or pre-event period?19421. Interest income and net interest position (especially for cash-rich companies)19522. Financing cash flow pattern: debt issuance, equity issuance, buybacks — what does composition reveal?19623. **Working capital changes from OCF** (IncreaseDecrease in AR/inventory/AP): reveals cash conversion vs. balance sheet levels19724. **Customer concentration risk**: revenue dependency on major customers19825. **Derivative and hedge activity**: commodity, interest rate, or FX risk management approach19926. **Debt extinguishment / refinancing**: early repayment gains/losses, cost-of-debt evolution20027. **Equity method investment income**: JV performance and strategic partnership contribution20128. **FX effects on cash**: foreign currency translation exposure for international operators20229. **Advertising / brand investment**: trend as % of revenue (relevant for consumer, pharma, technology)20330. **Nonoperating income and asset sale gains**: one-time vs. recurring contribution to reported earnings20431. **Allowance for doubtful accounts**: credit risk evolution and receivables quality20532. Retained earnings trajectory: cumulative profitability and capital return history206207## QA style208209**Question form**: Prefer synthesis-oriented framing — "What does [metric trend] reveal about [business quality/risk/strategy/sustainability]?" Questions should be specific to this company's period and situation.210211Good question examples:212- "What does EOG Resources' OCF-to-net-income ratio reveal about its earnings quality?"213- "How does ConocoPhillips' capex trajectory from 2020 to 2024 reflect its capital discipline strategy?"214- "What does Kraft Heinz's derivative and hedge activity from 2022 to 2024 reveal about its risk management approach to commodity exposure?"215216**Answer form**: 1–2 sentences. Lead with a concrete trend or comparison (include specific values and period references), then state the implication or business meaning. Limit to 3–4 numbers — prefer qualitative synthesis over numeric recaps.217218**Answer structure**: `[Direction + magnitude with exact figures across named periods] → [What this means for the business — quality, risk, strategy, or sustainability]`. Both elements must be present in every answer.219220Good example:221> q: How does AvalonBay's operating cash flow compare to its dividend obligations?222> a: Operating cash flow of $1.61B in 2024 comfortably exceeds dividend payments of $969M (~1.65× coverage), and the pattern has held consistently from 2022–2024, indicating strong and sustainable dividend coverage.223224Poor — imprecise values (do not submit):225> a: Total assets grew from roughly $19B to approximately $21B, while stockholders' equity increased to around $11.8B (based on 2023 data), maintaining a healthy equity ratio.226227Poor — no business interpretation:228> a: OCF was $1.61B in 2024, $1.52B in 2023, $1.42B in 2022. Dividends were $969M, $935M, $891M.229230Poor — generic qualifier without quantitative support:231> a: The company demonstrated disciplined leverage management throughout the period, reflecting its commitment to financial stability.232233Poor — claim not in evidence (never submit without retrieved data):234> a: Operating margins improved from 15% to 22%, reflecting pricing power gains. ← only submit if you queried and retrieved those margin values.235236## Edge-case handling237238- **Missing expected metrics**: search for alternate `fact_name` values; never invent absent fields.239- **Imprecise data**: if exact values cannot be retrieved (e.g., a metric only appears as a range in disclosure, or two overlapping accessions give different figures), note this explicitly in the answer or skip this data point. Never substitute a range or approximation when an exact figure was not retrieved.240- **Empty results**: relax one filter at a time (remove accession constraint, widen date range, try alternate tag names, drop `fiscal_period = 'FY'` if truly necessary).241- **Mixed annual/quarterly facts**: keep 10-K trend analysis annual-focused; use `fiscal_period = 'FY'` to isolate full-year facts when available.242- **Duplicate facts for same period**: prefer the latest accession number; document only stable comparisons.243- **Query errors**: read the error, correct schema usage, and continue — do not retry the identical failing query.244- **Short filing history**: if fewer than 4 annual filings exist, note the limitation explicitly and focus QA on available periods.245- **Taxonomy shifts**: some companies change XBRL tags across years (e.g., `NetIncomeLoss` → `ProfitLoss`). When this happens, query both tag names and note the discontinuity in the answer if it affects comparability.246247## Output format248249For each QA pair:250- `q`: one analytical question with clear scope and period.251- `a`: concise answer grounded in retrieved facts (values, direction, period, implication).252253Quality bar:254- Evidence-grounded: every value cited was retrieved from the database in this session, and is exact — not approximated or estimated.255- Non-redundant: each pair occupies a distinct analytical angle; no two pairs address the same thesis from different phrasings.256- Specific: questions name the company, metric, and time period.257- Synthetic: answers explain what the data means (implication) in addition to what it shows (trend).258- Self-contained: answers are interpretable without additional context.259- Comprehensive: together, the pairs give a reader a full financial picture across operational, balance sheet, cash flow, strategic, and risk dimensions.