account-research
Research a company or person and get actionable sales intel. Works standalone with web search, supercharged when you connect enrichment tools or your CRM.…
\"Apply DuPont Analysis to decompose Return on Equity (ROE) into profitability, efficiency, and leverage components. Use this skill when the user needs to diagnose why ROE is high or low, compare financial performance drivers across companies, or identify which operational lever
$ npx -y skills add charlieviettq/awesome-agent-skill --skill biz-dupont --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/biz-dupontContext preview
The summary Claude sees to decide when to auto-load this skill.
\"Apply DuPont Analysis to decompose Return on Equity (ROE) into profitability, efficiency, and leverage components. Use this skill when the user needs to diagnose why ROE is high or low, compare financial performance drivers across companies, or identify which operational lever
name: "\"biz-dupont\"" description: "\"Apply DuPont Analysis to decompose Return on Equity (ROE) into profitability, efficiency, and leverage components. Use this skill when the user needs to diagnose why ROE is high or low, compare financial performance drivers across companies, or identify which operational lever to pull — even if they say 'why is our ROE declining' or 'how do we improve returns'.\"." allowed-tools: Bash, Read, Write, Edit, Glob, Grep
DuPont decomposes ROE into three multiplicative components: Net Profit Margin × Asset Turnover × Equity Multiplier. This reveals whether ROE is driven by profitability, efficiency, or leverage — critical for diagnosis and comparison.
**Trigger conditions:**
**When NOT to use:**
IRON LAW: Three-Factor Decomposition
ROE = Net Profit Margin × Asset Turnover × Equity Multiplier
= (Net Income/Revenue) × (Revenue/Total Assets) × (Total Assets/Equity)
All three factors MUST be calculated and analyzed. Reporting ROE without
decomposition is like reporting a fever without checking symptoms.IRON LAW: High Leverage ≠ Good Performance A high Equity Multiplier (Assets/Equity) inflates ROE through debt. A company with 5% margin, 1.0x turnover, and 6x leverage has ROE of 30% — but is one bad quarter away from insolvency. Always flag when leverage is the dominant driver.
| Component | Formula | What It Measures | |-----------|---------|-----------------| | Net Profit Margin | Net Income / Revenue | Profitability — how much of each dollar of revenue becomes profit | | Asset Turnover | Revenue / Total Assets | Efficiency — how well assets generate revenue | | Equity Multiplier | Total Assets / Shareholders' Equity | Leverage — how much debt amplifies equity returns |
Compare each component to industry benchmarks and trends:
Calculate DuPont components for 3-5 years. Identify:
Compare DuPont components across competitors to identify relative strengths/weaknesses.
> ⚠️ **Decimal vs percent**: The bundled script returns ROE and all margin/burden > components as **decimals** (`0.2014` means 20.14%, NOT `20.14`). The narrative > table below renders them as percentages for humans, but JSON outputs and any > downstream pipeline must use decimals consistently.
# DuPont Analysis: {Company}
## ROE Decomposition
| Component | Value | Industry Avg | Trend (3yr) |
|-----------|-------|-------------|-------------|
| Net Profit Margin | X% | X% | ↑/↓/→ |
| Asset Turnover | X.Xx | X.Xx | ↑/↓/→ |
| Equity Multiplier | X.Xx | X.Xx | ↑/↓/→ |
| **ROE** | **X%** | **X%** | ↑/↓/→ |
## Diagnosis
- Primary ROE driver: {margin / turnover / leverage}
- Risk flag: {leverage concern if applicable}
## Peer Comparison
| Company | Margin | Turnover | Leverage | ROE |
|---------|--------|----------|----------|-----|
| {Company} | X% | X.Xx | X.Xx | X% |
| {Peer A} | ... | ... | ... | ... |
## Recommendations
1. {Which lever to improve and how}**Scenario:** DuPont for two Taiwanese retailers
| | Company A | Company B | |---|---|---| | Net Profit Margin | 2% | 8% | | Asset Turnover | 3.5x | 1.2x | | Equity Multiplier | 2.0x | 2.0x | | **ROE** | **14%** | **19.2%** |
Diagnosis: Company A is turnover-driven (high-volume, low-margin retail). Company B is margin-driven (premium positioning). Both have similar leverage — ROE difference comes from operations ✓
| Script | Description | Usage | |--------|-------------|-------| | `scripts/dupont.py` | Decompose ROE into 3-factor or 5-factor DuPont components | `python scripts/dupont.py --help` |
Run `python scripts/dupont.py --verify` to execute built-in sanity tests.
Curated skill pack for LLM agents in engineer and science workflow (Cursor & Claude ready).
Research a company or person and get actionable sales intel. Works standalone with web search, supercharged when you connect enrichment tools or your CRM.…
Evaluate LLM agents and tool-using workflows—task success, tool accuracy, latency/cost, safety, and regression suites. Use when shipping agent features,…
Design agent tools and CLI surfaces—schemas, naming, errors, idempotency, and discoverability for LLM callers. Use when defining tools for agents, SDKs, or…
\"Implement and select ad bidding strategies from manual CPC to automated target-CPA and target-ROAS. Use this skill when the user needs to choose a bidding…
\"Optimize advertising budget allocation across campaigns using marginal returns analysis. Use this skill when the user needs to distribute budget across…
\"Build CTR prediction models for estimating ad click-through rates from features. Use this skill when the user needs to predict click probability, build an ad…