hive-skills 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (238) hide show
  1. package/LICENSE +28 -0
  2. package/README.md +235 -0
  3. package/assets/LICENSE +32 -0
  4. package/assets/THIRD_PARTY_NOTICES.md +72 -0
  5. package/assets/manifest.json +1290 -0
  6. package/assets/skills/authored/code-review/composable/BUNDLE.md +192 -0
  7. package/assets/skills/authored/code-review/composable/INDEX.md +13 -0
  8. package/assets/skills/authored/code-review/composable/VERSION +1 -0
  9. package/assets/skills/authored/code-review/composable/mini/01-review-method.md +34 -0
  10. package/assets/skills/authored/code-review/composable/mini/02-security-review.md +20 -0
  11. package/assets/skills/authored/code-review/composable/mini/03-correctness-bugs.md +19 -0
  12. package/assets/skills/authored/code-review/composable/mini/04-concurrency.md +16 -0
  13. package/assets/skills/authored/code-review/composable/mini/05-error-handling.md +12 -0
  14. package/assets/skills/authored/code-review/composable/mini/06-performance.md +11 -0
  15. package/assets/skills/authored/code-review/composable/mini/07-api-design.md +20 -0
  16. package/assets/skills/authored/code-review/composable/mini/08-missing-tests.md +25 -0
  17. package/assets/skills/authored/code-review/composable/mini/09-refactoring-and-communication.md +32 -0
  18. package/assets/skills/authored/data-analysis/composable/BUNDLE.md +186 -0
  19. package/assets/skills/authored/data-analysis/composable/INDEX.md +13 -0
  20. package/assets/skills/authored/data-analysis/composable/VERSION +1 -0
  21. package/assets/skills/authored/data-analysis/composable/mini/01-data-quality-profiling.md +26 -0
  22. package/assets/skills/authored/data-analysis/composable/mini/02-aggregation-pitfalls.md +21 -0
  23. package/assets/skills/authored/data-analysis/composable/mini/03-time-series.md +19 -0
  24. package/assets/skills/authored/data-analysis/composable/mini/04-segmentation.md +23 -0
  25. package/assets/skills/authored/data-analysis/composable/mini/05-discount-pricing.md +17 -0
  26. package/assets/skills/authored/data-analysis/composable/mini/06-insight-generation.md +25 -0
  27. package/assets/skills/authored/data-analysis/composable/mini/07-executive-writing.md +26 -0
  28. package/assets/skills/authored/data-analysis/composable/mini/08-recommendations.md +20 -0
  29. package/assets/skills/authored/data-analysis/composable/mini/09-reproducibility-assumptions.md +20 -0
  30. package/assets/skills/authored/financial-analysis/composable/BUNDLE.md +1293 -0
  31. package/assets/skills/authored/financial-analysis/composable/INDEX.md +17 -0
  32. package/assets/skills/authored/financial-analysis/composable/VERSION +1 -0
  33. package/assets/skills/authored/financial-analysis/composable/mini/00-core.md +69 -0
  34. package/assets/skills/authored/financial-analysis/composable/mini/01-profitability-efficiency-ratios.md +173 -0
  35. package/assets/skills/authored/financial-analysis/composable/mini/02-liquidity-leverage-ratios.md +120 -0
  36. package/assets/skills/authored/financial-analysis/composable/mini/03-valuation-ratios-interpretation.md +107 -0
  37. package/assets/skills/authored/financial-analysis/composable/mini/04-dcf-projection-wacc.md +122 -0
  38. package/assets/skills/authored/financial-analysis/composable/mini/05-dcf-terminal-value-sensitivity.md +75 -0
  39. package/assets/skills/authored/financial-analysis/composable/mini/06-comparables-precedents.md +78 -0
  40. package/assets/skills/authored/financial-analysis/composable/mini/07-budget-variance-analysis.md +47 -0
  41. package/assets/skills/authored/financial-analysis/composable/mini/08-driver-based-forecasting-scenarios.md +111 -0
  42. package/assets/skills/authored/financial-analysis/composable/mini/09-rolling-forecasts-accuracy.md +114 -0
  43. package/assets/skills/authored/financial-analysis/composable/mini/10-reporting-exec-summary.md +58 -0
  44. package/assets/skills/authored/financial-analysis/composable/mini/11-industry-adaptations.md +130 -0
  45. package/assets/skills/authored/financial-analysis/composable/mini/12-toolkit-scripts-io.md +102 -0
  46. package/assets/skills/authored/python-api/composable/BUNDLE.md +389 -0
  47. package/assets/skills/authored/python-api/composable/INDEX.md +13 -0
  48. package/assets/skills/authored/python-api/composable/VERSION +1 -0
  49. package/assets/skills/authored/python-api/composable/mini/01-project-structure.md +44 -0
  50. package/assets/skills/authored/python-api/composable/mini/02-routing-and-app.md +38 -0
  51. package/assets/skills/authored/python-api/composable/mini/03-pydantic-models.md +45 -0
  52. package/assets/skills/authored/python-api/composable/mini/04-validation-and-errors.md +59 -0
  53. package/assets/skills/authored/python-api/composable/mini/05-dependencies-and-auth.md +60 -0
  54. package/assets/skills/authored/python-api/composable/mini/06-pagination-filtering.md +44 -0
  55. package/assets/skills/authored/python-api/composable/mini/07-async-performance.md +30 -0
  56. package/assets/skills/authored/python-api/composable/mini/08-testing.md +45 -0
  57. package/assets/skills/authored/python-api/composable/mini/09-middleware-observability.md +29 -0
  58. package/assets/skills/authored/tech-writing/composable/BUNDLE.md +220 -0
  59. package/assets/skills/authored/tech-writing/composable/INDEX.md +12 -0
  60. package/assets/skills/authored/tech-writing/composable/VERSION +1 -0
  61. package/assets/skills/authored/tech-writing/composable/mini/01-audience-analysis.md +26 -0
  62. package/assets/skills/authored/tech-writing/composable/mini/02-document-types.md +27 -0
  63. package/assets/skills/authored/tech-writing/composable/mini/03-readme-quickstart-changelog.md +22 -0
  64. package/assets/skills/authored/tech-writing/composable/mini/04-information-architecture.md +21 -0
  65. package/assets/skills/authored/tech-writing/composable/mini/05-style-clarity.md +29 -0
  66. package/assets/skills/authored/tech-writing/composable/mini/06-breaking-changes-migrations.md +33 -0
  67. package/assets/skills/authored/tech-writing/composable/mini/07-troubleshooting-security.md +30 -0
  68. package/assets/skills/authored/tech-writing/composable/mini/08-faq-voice-tone.md +32 -0
  69. package/assets/skills/converted/claude-api/composable/BUNDLE.md +14996 -0
  70. package/assets/skills/converted/claude-api/composable/INDEX.md +98 -0
  71. package/assets/skills/converted/claude-api/composable/VERSION +1 -0
  72. package/assets/skills/converted/claude-api/composable/mini/00-core.md +235 -0
  73. package/assets/skills/converted/claude-api/composable/mini/01-model-api-quick-reference.md +258 -0
  74. package/assets/skills/converted/claude-api/composable/mini/02-common-pitfalls.md +42 -0
  75. package/assets/skills/converted/claude-api/composable/mini/10-models.md +135 -0
  76. package/assets/skills/converted/claude-api/composable/mini/11-platform-availability.md +96 -0
  77. package/assets/skills/converted/claude-api/composable/mini/12-claude-platform-on-aws.md +59 -0
  78. package/assets/skills/converted/claude-api/composable/mini/13-live-sources.md +143 -0
  79. package/assets/skills/converted/claude-api/composable/mini/14-error-codes.md +256 -0
  80. package/assets/skills/converted/claude-api/composable/mini/15-prompt-caching.md +223 -0
  81. package/assets/skills/converted/claude-api/composable/mini/16-token-counting.md +56 -0
  82. package/assets/skills/converted/claude-api/composable/mini/17-tool-use-concepts.md +444 -0
  83. package/assets/skills/converted/claude-api/composable/mini/18-agent-design.md +101 -0
  84. package/assets/skills/converted/claude-api/composable/mini/19-anthropic-cli.md +246 -0
  85. package/assets/skills/converted/claude-api/composable/mini/20-model-migration.md +1301 -0
  86. package/assets/skills/converted/claude-api/composable/mini/30-managed-agents-overview.md +71 -0
  87. package/assets/skills/converted/claude-api/composable/mini/31-managed-agents-core.md +278 -0
  88. package/assets/skills/converted/claude-api/composable/mini/32-managed-agents-environments.md +219 -0
  89. package/assets/skills/converted/claude-api/composable/mini/33-managed-agents-tools.md +366 -0
  90. package/assets/skills/converted/claude-api/composable/mini/34-managed-agents-events.md +252 -0
  91. package/assets/skills/converted/claude-api/composable/mini/35-managed-agents-outcomes.md +106 -0
  92. package/assets/skills/converted/claude-api/composable/mini/36-managed-agents-multiagent.md +101 -0
  93. package/assets/skills/converted/claude-api/composable/mini/37-managed-agents-webhooks.md +123 -0
  94. package/assets/skills/converted/claude-api/composable/mini/38-managed-agents-memory.md +197 -0
  95. package/assets/skills/converted/claude-api/composable/mini/39-managed-agents-scheduled-deployments.md +146 -0
  96. package/assets/skills/converted/claude-api/composable/mini/40-managed-agents-client-patterns.md +211 -0
  97. package/assets/skills/converted/claude-api/composable/mini/41-managed-agents-onboarding.md +82 -0
  98. package/assets/skills/converted/claude-api/composable/mini/42-managed-agents-api-reference.md +441 -0
  99. package/assets/skills/converted/claude-api/composable/mini/43-managed-agents-self-hosted-sandboxes.md +174 -0
  100. package/assets/skills/converted/claude-api/composable/mini/50-python-readme.md +564 -0
  101. package/assets/skills/converted/claude-api/composable/mini/51-python-tool-use.md +590 -0
  102. package/assets/skills/converted/claude-api/composable/mini/52-python-streaming-batches-files.md +549 -0
  103. package/assets/skills/converted/claude-api/composable/mini/53-python-managed-agents.md +335 -0
  104. package/assets/skills/converted/claude-api/composable/mini/55-typescript-readme.md +404 -0
  105. package/assets/skills/converted/claude-api/composable/mini/56-typescript-tool-use.md +548 -0
  106. package/assets/skills/converted/claude-api/composable/mini/57-typescript-streaming-batches-files.md +384 -0
  107. package/assets/skills/converted/claude-api/composable/mini/58-typescript-managed-agents.md +358 -0
  108. package/assets/skills/converted/claude-api/composable/mini/60-csharp-readme.md +361 -0
  109. package/assets/skills/converted/claude-api/composable/mini/61-csharp-tool-use.md +163 -0
  110. package/assets/skills/converted/claude-api/composable/mini/62-csharp-streaming-batches-files.md +64 -0
  111. package/assets/skills/converted/claude-api/composable/mini/65-go-readme.md +185 -0
  112. package/assets/skills/converted/claude-api/composable/mini/66-go-tool-use.md +219 -0
  113. package/assets/skills/converted/claude-api/composable/mini/67-go-streaming-files.md +63 -0
  114. package/assets/skills/converted/claude-api/composable/mini/68-go-managed-agents.md +564 -0
  115. package/assets/skills/converted/claude-api/composable/mini/70-java-readme.md +237 -0
  116. package/assets/skills/converted/claude-api/composable/mini/71-java-tool-use.md +227 -0
  117. package/assets/skills/converted/claude-api/composable/mini/72-java-streaming-files.md +49 -0
  118. package/assets/skills/converted/claude-api/composable/mini/73-java-managed-agents.md +443 -0
  119. package/assets/skills/converted/claude-api/composable/mini/75-php-readme.md +173 -0
  120. package/assets/skills/converted/claude-api/composable/mini/76-php-tool-use.md +252 -0
  121. package/assets/skills/converted/claude-api/composable/mini/77-php-streaming-batches-files.md +53 -0
  122. package/assets/skills/converted/claude-api/composable/mini/78-php-managed-agents.md +443 -0
  123. package/assets/skills/converted/claude-api/composable/mini/80-ruby-readme.md +133 -0
  124. package/assets/skills/converted/claude-api/composable/mini/81-ruby-tool-use-streaming.md +56 -0
  125. package/assets/skills/converted/claude-api/composable/mini/82-ruby-managed-agents.md +394 -0
  126. package/assets/skills/converted/claude-api/composable/mini/85-curl-examples.md +255 -0
  127. package/assets/skills/converted/claude-api/composable/mini/86-curl-managed-agents.md +340 -0
  128. package/assets/skills/converted/claude-api/composable/presets/csharp.md +1151 -0
  129. package/assets/skills/converted/claude-api/composable/presets/curl.md +1154 -0
  130. package/assets/skills/converted/claude-api/composable/presets/go.md +1598 -0
  131. package/assets/skills/converted/claude-api/composable/presets/java.md +1523 -0
  132. package/assets/skills/converted/claude-api/composable/presets/php.md +1488 -0
  133. package/assets/skills/converted/claude-api/composable/presets/python.md +2605 -0
  134. package/assets/skills/converted/claude-api/composable/presets/ruby.md +1146 -0
  135. package/assets/skills/converted/claude-api/composable/presets/shared.md +6478 -0
  136. package/assets/skills/converted/claude-api/composable/presets/typescript.md +2261 -0
  137. package/assets/skills/converted/docx/composable/BUNDLE.md +617 -0
  138. package/assets/skills/converted/docx/composable/INDEX.md +12 -0
  139. package/assets/skills/converted/docx/composable/VERSION +1 -0
  140. package/assets/skills/converted/docx/composable/mini/00-core.md +26 -0
  141. package/assets/skills/converted/docx/composable/mini/01-reading-converting.md +36 -0
  142. package/assets/skills/converted/docx/composable/mini/02-creating-setup-layout.md +85 -0
  143. package/assets/skills/converted/docx/composable/mini/03-creating-elements.md +257 -0
  144. package/assets/skills/converted/docx/composable/mini/04-editing-existing.md +57 -0
  145. package/assets/skills/converted/docx/composable/mini/05-xml-reference.md +128 -0
  146. package/assets/skills/converted/internal-comms/composable/BUNDLE.md +220 -0
  147. package/assets/skills/converted/internal-comms/composable/INDEX.md +11 -0
  148. package/assets/skills/converted/internal-comms/composable/VERSION +1 -0
  149. package/assets/skills/converted/internal-comms/composable/mini/00-core.md +30 -0
  150. package/assets/skills/converted/internal-comms/composable/mini/01-3p-updates.md +49 -0
  151. package/assets/skills/converted/internal-comms/composable/mini/02-company-newsletter.md +67 -0
  152. package/assets/skills/converted/internal-comms/composable/mini/03-faq-answers.md +32 -0
  153. package/assets/skills/converted/internal-comms/composable/mini/04-general-comms.md +18 -0
  154. package/assets/skills/converted/mcp-builder/composable/BUNDLE.md +2460 -0
  155. package/assets/skills/converted/mcp-builder/composable/INDEX.md +23 -0
  156. package/assets/skills/converted/mcp-builder/composable/VERSION +1 -0
  157. package/assets/skills/converted/mcp-builder/composable/mini/00-core.md +43 -0
  158. package/assets/skills/converted/mcp-builder/composable/mini/01-workflow-research-planning.md +54 -0
  159. package/assets/skills/converted/mcp-builder/composable/mini/02-implementation-process.md +78 -0
  160. package/assets/skills/converted/mcp-builder/composable/mini/03-naming-conventions.md +33 -0
  161. package/assets/skills/converted/mcp-builder/composable/mini/04-response-formats.md +21 -0
  162. package/assets/skills/converted/mcp-builder/composable/mini/05-pagination.md +24 -0
  163. package/assets/skills/converted/mcp-builder/composable/mini/06-transport.md +47 -0
  164. package/assets/skills/converted/mcp-builder/composable/mini/07-annotations.md +20 -0
  165. package/assets/skills/converted/mcp-builder/composable/mini/08-security.md +35 -0
  166. package/assets/skills/converted/mcp-builder/composable/mini/09-error-handling.md +32 -0
  167. package/assets/skills/converted/mcp-builder/composable/mini/10-testing-and-documentation.md +21 -0
  168. package/assets/skills/converted/mcp-builder/composable/mini/11-python-implementation.md +432 -0
  169. package/assets/skills/converted/mcp-builder/composable/mini/12-python-advanced-and-checklist.md +233 -0
  170. package/assets/skills/converted/mcp-builder/composable/mini/13-node-implementation.md +717 -0
  171. package/assets/skills/converted/mcp-builder/composable/mini/14-node-advanced-and-checklist.md +200 -0
  172. package/assets/skills/converted/mcp-builder/composable/mini/15-evaluation-design.md +200 -0
  173. package/assets/skills/converted/mcp-builder/composable/mini/16-evaluation-running.md +198 -0
  174. package/assets/skills/converted/mcp-builder/composable/presets/node-server.md +1381 -0
  175. package/assets/skills/converted/mcp-builder/composable/presets/python-server.md +1129 -0
  176. package/assets/skills/converted/pdf/composable/BUNDLE.md +1284 -0
  177. package/assets/skills/converted/pdf/composable/INDEX.md +14 -0
  178. package/assets/skills/converted/pdf/composable/VERSION +1 -0
  179. package/assets/skills/converted/pdf/composable/mini/00-core.md +46 -0
  180. package/assets/skills/converted/pdf/composable/mini/01-creation.md +176 -0
  181. package/assets/skills/converted/pdf/composable/mini/02-extraction.md +178 -0
  182. package/assets/skills/converted/pdf/composable/mini/03-merge-split-manipulate.md +240 -0
  183. package/assets/skills/converted/pdf/composable/mini/04-images-ocr.md +168 -0
  184. package/assets/skills/converted/pdf/composable/mini/05-encryption.md +51 -0
  185. package/assets/skills/converted/pdf/composable/mini/06-forms.md +300 -0
  186. package/assets/skills/converted/pdf/composable/mini/07-libraries-reference.md +89 -0
  187. package/assets/skills/converted/pptx/composable/BUNDLE.md +911 -0
  188. package/assets/skills/converted/pptx/composable/INDEX.md +12 -0
  189. package/assets/skills/converted/pptx/composable/VERSION +1 -0
  190. package/assets/skills/converted/pptx/composable/mini/00-core.md +37 -0
  191. package/assets/skills/converted/pptx/composable/mini/01-reading.md +37 -0
  192. package/assets/skills/converted/pptx/composable/mini/02-creating-from-scratch.md +422 -0
  193. package/assets/skills/converted/pptx/composable/mini/03-editing-templates.md +207 -0
  194. package/assets/skills/converted/pptx/composable/mini/04-design.md +89 -0
  195. package/assets/skills/converted/pptx/composable/mini/05-qa-and-rendering.md +91 -0
  196. package/assets/skills/converted/pptx/composable/presets/creating.md +659 -0
  197. package/assets/skills/converted/pptx/composable/presets/editing.md +485 -0
  198. package/assets/skills/converted/skill-creator/composable/BUNDLE.md +1681 -0
  199. package/assets/skills/converted/skill-creator/composable/INDEX.md +21 -0
  200. package/assets/skills/converted/skill-creator/composable/VERSION +1 -0
  201. package/assets/skills/converted/skill-creator/composable/mini/00-core.md +59 -0
  202. package/assets/skills/converted/skill-creator/composable/mini/01-creating-a-skill.md +27 -0
  203. package/assets/skills/converted/skill-creator/composable/mini/02-skill-writing-guide.md +71 -0
  204. package/assets/skills/converted/skill-creator/composable/mini/03-test-cases.md +21 -0
  205. package/assets/skills/converted/skill-creator/composable/mini/04-running-and-evaluating.md +128 -0
  206. package/assets/skills/converted/skill-creator/composable/mini/05-improving-the-skill.md +30 -0
  207. package/assets/skills/converted/skill-creator/composable/mini/06-blind-comparison.md +5 -0
  208. package/assets/skills/converted/skill-creator/composable/mini/07-description-optimization.md +74 -0
  209. package/assets/skills/converted/skill-creator/composable/mini/08-packaging.md +11 -0
  210. package/assets/skills/converted/skill-creator/composable/mini/09-environment-specific.md +38 -0
  211. package/assets/skills/converted/skill-creator/composable/mini/10-scripts-and-references.md +34 -0
  212. package/assets/skills/converted/skill-creator/composable/mini/11-json-schemas.md +414 -0
  213. package/assets/skills/converted/skill-creator/composable/mini/12-agent-grader.md +225 -0
  214. package/assets/skills/converted/skill-creator/composable/mini/13-agent-comparator.md +204 -0
  215. package/assets/skills/converted/skill-creator/composable/mini/14-agent-analyzer.md +276 -0
  216. package/assets/skills/converted/skill-creator/composable/presets/authoring.md +198 -0
  217. package/assets/skills/converted/skill-creator/composable/presets/evaluating.md +1334 -0
  218. package/assets/skills/converted/skill-creator/composable/presets/optimizing.md +160 -0
  219. package/assets/skills/converted/skill-creator/composable/presets.json +5 -0
  220. package/assets/skills/meta/ccs-skill-creator/composable/BUNDLE.md +465 -0
  221. package/assets/skills/meta/ccs-skill-creator/composable/INDEX.md +8 -0
  222. package/assets/skills/meta/ccs-skill-creator/composable/VERSION +1 -0
  223. package/assets/skills/meta/ccs-skill-creator/composable/mini/00-core.md +46 -0
  224. package/assets/skills/meta/ccs-skill-creator/composable/mini/01-create-new-skill.md +167 -0
  225. package/assets/skills/meta/ccs-skill-creator/composable/mini/02-convert-existing-skill.md +120 -0
  226. package/assets/skills/meta/ccs-skill-creator/composable/mini/03-review-and-maintain.md +112 -0
  227. package/assets/skills/sources/anthropic/PROVENANCE.md +3 -0
  228. package/assets/skills/sources/anthropic/claude-api/LICENSE.txt +202 -0
  229. package/assets/skills/sources/anthropic/docx/LICENSE.txt +30 -0
  230. package/assets/skills/sources/anthropic/internal-comms/LICENSE.txt +202 -0
  231. package/assets/skills/sources/anthropic/mcp-builder/LICENSE.txt +202 -0
  232. package/assets/skills/sources/anthropic/pdf/LICENSE.txt +30 -0
  233. package/assets/skills/sources/anthropic/pptx/LICENSE.txt +30 -0
  234. package/assets/skills/sources/anthropic/skill-creator/LICENSE.txt +202 -0
  235. package/assets/skills/sources/financial-analyst/PROVENANCE.md +1 -0
  236. package/assets/tools/hive.py +728 -0
  237. package/dist/cli.js +7494 -0
  238. package/package.json +40 -0
@@ -0,0 +1,17 @@
1
+ # Financial Analysis: Loading Menu
2
+
3
+ Loading policy: read this menu, then load 00-core (if present) plus the minis relevant to your task. If most of this skill is relevant, load BUNDLE.md (or a matching presets/*.md) in one read instead.
4
+
5
+ - `mini/00-core.md` - analyst method, 5-phase workflow, data validation, cross-cutting traps, targets - **always load**
6
+ - `mini/01-profitability-efficiency-ratios.md` - ROE, ROA, margins, turnover, DSO - Load when computing profitability or efficiency ratios.
7
+ - `mini/02-liquidity-leverage-ratios.md` - current/quick/cash, D/E, coverage, DSCR - Load when assessing liquidity or leverage/credit.
8
+ - `mini/03-valuation-ratios-interpretation.md` - P/E, P/B, P/S, EV/EBITDA, PEG, ratio best practices - Load when applying valuation multiples or interpreting ratios.
9
+ - `mini/04-dcf-projection-wacc.md` - FCFF projection, revenue forecast, WACC, CAPM - Load when building a DCF or estimating discount rate.
10
+ - `mini/05-dcf-terminal-value-sensitivity.md` - terminal value, equity bridge, sensitivity, pitfalls - Load when finishing a DCF or running sensitivity.
11
+ - `mini/06-comparables-precedents.md` - comps, precedent transactions, framework selection - Load when valuing via multiples or sanity-checking DCF.
12
+ - `mini/07-budget-variance-analysis.md` - variance calc, materiality, favorable/unfavorable - Load when analyzing actual vs budget/prior year.
13
+ - `mini/08-driver-based-forecasting-scenarios.md` - driver models, scenarios (base/bull/bear) - Load when building forecasts or scenarios.
14
+ - `mini/09-rolling-forecasts-accuracy.md` - rolling forecasts, 13-week cash, MAPE - Load when running rolling forecasts or tracking accuracy.
15
+ - `mini/10-reporting-exec-summary.md` - exec summaries, stakeholder framing, cadence - Load when reporting findings.
16
+ - `mini/11-industry-adaptations.md` - SaaS, retail, manufacturing, financial services, healthcare - Load when the target is in a specific sector.
17
+ - `mini/12-toolkit-scripts-io.md` - the four scripts, templates, input JSON shapes, dependencies - Load when running or wiring the toolkit.
@@ -0,0 +1,69 @@
1
+ ---
2
+ pairs-with:
3
+ - data-analysis/01-data-quality-profiling.md
4
+ ---
5
+
6
+ # Core: Financial Analyst Method
7
+
8
+ Always-loaded foundation for a production-ready financial analysis toolkit providing ratio analysis, DCF valuation, budget variance analysis, and rolling forecast construction. Designed for financial modeling, forecasting & budgeting, management reporting, business performance analysis, and investment analysis. Load the focused minis (see INDEX) for formulas, benchmarks, methods, and tooling.
9
+
10
+ ## The 5-Phase Workflow
11
+
12
+ ### Phase 1: Scoping
13
+ - Define analysis objectives and stakeholder requirements
14
+ - Identify data sources and time periods
15
+ - Establish materiality thresholds and accuracy targets
16
+ - Select appropriate analytical frameworks
17
+
18
+ ### Phase 2: Data Analysis & Modeling
19
+ - Collect and validate financial data (income statement, balance sheet, cash flow)
20
+ - **Validate input data completeness** before running ratio calculations (check for missing fields, nulls, or implausible values)
21
+ - Calculate financial ratios across 5 categories (profitability, liquidity, leverage, efficiency, valuation)
22
+ - Build DCF models with WACC and terminal value calculations; **cross-check DCF outputs against sanity bounds** (e.g., implied multiples vs. comparables)
23
+ - Construct budget variance analyses with favorable/unfavorable classification
24
+ - Develop driver-based forecasts with scenario modeling
25
+
26
+ ### Phase 3: Insight Generation
27
+ - Interpret ratio trends and benchmark against industry standards
28
+ - Identify material variances and root causes
29
+ - Assess valuation ranges through sensitivity analysis
30
+ - Evaluate forecast scenarios (base/bull/bear) for decision support
31
+
32
+ ### Phase 4: Reporting
33
+ - Generate executive summaries with key findings
34
+ - Produce detailed variance reports by department and category
35
+ - Deliver DCF valuation reports with sensitivity tables
36
+ - Present rolling forecasts with trend analysis
37
+
38
+ ### Phase 5: Follow-up
39
+ - Track forecast accuracy (target: +/-5% revenue, +/-3% expenses)
40
+ - Monitor report delivery timeliness (target: 100% on time)
41
+ - Update models with actuals as they become available
42
+ - Refine assumptions based on variance analysis
43
+
44
+ ## Data-Validation Discipline (do this before computing)
45
+
46
+ - **Validate completeness first**: check for missing fields, nulls, or implausible values before running any calculation. Forecasting without key driver inputs is a top accuracy killer.
47
+ - **Check plausibility**: values within sane bounds (e.g., margins ≤ 100%, positive denominators).
48
+ - **Cross-check outputs against sanity bounds**: reconcile DCF implied multiples against comparables; if terminal value exceeds 80% of enterprise value, shorten the projection or revisit assumptions; both TV methods (perpetuity vs exit multiple) should agree.
49
+
50
+ ## Cross-Cutting Traps
51
+
52
+ - **Compare within industry**: ratios and multiples vary hugely across sectors; use direct peers, not just broad benchmarks.
53
+ - **Trends over snapshots**: a single period is insufficient; review 3–5 year trends.
54
+ - **Use multiple measures**: no single ratio or method tells the whole story.
55
+ - **Consider context**: accounting policies, business cycle, and company stage matter.
56
+ - **Watch for manipulation**: revenue-recognition changes, off-balance-sheet items, and one-time adjustments distort ratios.
57
+ - **Avoid confirmation bias**: never work backward from a desired conclusion.
58
+ - **Present ranges, not points**: always show sensitivity and quantify uncertainty rather than false precision.
59
+ - **Documentation**: document every assumption; explain 100% of material variances.
60
+
61
+ ## Key Metrics & Targets
62
+
63
+ | Metric | Target |
64
+ |--------|--------|
65
+ | Forecast accuracy (revenue) | +/-5% |
66
+ | Forecast accuracy (expenses) | +/-3% |
67
+ | Report delivery | 100% on time |
68
+ | Model documentation | Complete for all assumptions |
69
+ | Variance explanation | 100% of material variances |
@@ -0,0 +1,173 @@
1
+ ---
2
+ pairs-with:
3
+ - 02-liquidity-leverage-ratios.md
4
+ - 03-valuation-ratios-interpretation.md
5
+ ---
6
+
7
+ # Profitability & Efficiency Ratios
8
+
9
+ ## 1. Profitability Ratios
10
+
11
+ Measure a company's ability to generate earnings relative to revenue, assets, or equity.
12
+
13
+ ### Return on Equity (ROE)
14
+
15
+ **Formula:** Net Income / Total Shareholders' Equity
16
+
17
+ **Interpretation:**
18
+ - Measures how effectively management uses equity to generate profits
19
+ - Higher ROE indicates more efficient use of equity capital
20
+ - Compare against cost of equity: ROE should exceed it
21
+
22
+ **Benchmarks:**
23
+ | Rating | Range |
24
+ |--------|-------|
25
+ | Below Average | < 8% |
26
+ | Acceptable | 8% - 15% |
27
+ | Good | 15% - 25% |
28
+ | Excellent | > 25% |
29
+
30
+ **Caveats:** High leverage can inflate ROE. Use DuPont decomposition (ROE = Margin × Turnover × Leverage) for deeper analysis.
31
+
32
+ ### Return on Assets (ROA)
33
+
34
+ **Formula:** Net Income / Total Assets
35
+
36
+ **Interpretation:**
37
+ - Measures how efficiently assets generate profit
38
+ - Asset-light businesses naturally have higher ROA
39
+ - Compare within industry only
40
+
41
+ **Benchmarks:**
42
+ | Rating | Range |
43
+ |--------|-------|
44
+ | Below Average | < 3% |
45
+ | Acceptable | 3% - 6% |
46
+ | Good | 6% - 12% |
47
+ | Excellent | > 12% |
48
+
49
+ ### Gross Margin
50
+
51
+ **Formula:** (Revenue - COGS) / Revenue
52
+
53
+ **Interpretation:**
54
+ - Measures production efficiency and pricing power
55
+ - Declining gross margin may signal competitive pressure or cost inflation
56
+ - Critical for evaluating business model sustainability
57
+
58
+ **Benchmarks by Industry:**
59
+ | Industry | Typical Range |
60
+ |----------|--------------|
61
+ | Software/SaaS | 70% - 85% |
62
+ | Financial Services | 50% - 70% |
63
+ | Retail | 25% - 45% |
64
+ | Manufacturing | 20% - 40% |
65
+ | Grocery | 25% - 30% |
66
+
67
+ ### Operating Margin
68
+
69
+ **Formula:** Operating Income / Revenue
70
+
71
+ **Interpretation:**
72
+ - Measures operational efficiency after all operating expenses
73
+ - Excludes interest and taxes for better operational comparison
74
+ - Indicates management effectiveness in controlling costs
75
+
76
+ **Benchmarks:**
77
+ | Rating | Range |
78
+ |--------|-------|
79
+ | Below Average | < 5% |
80
+ | Acceptable | 5% - 15% |
81
+ | Good | 15% - 25% |
82
+ | Excellent | > 25% |
83
+
84
+ ### Net Margin
85
+
86
+ **Formula:** Net Income / Revenue
87
+
88
+ **Interpretation:**
89
+ - Bottom-line profitability after all expenses
90
+ - Affected by tax strategy, capital structure, and one-time items
91
+ - Most comprehensive profitability measure
92
+
93
+ **Benchmarks:**
94
+ | Rating | Range |
95
+ |--------|-------|
96
+ | Below Average | < 3% |
97
+ | Acceptable | 3% - 10% |
98
+ | Good | 10% - 20% |
99
+ | Excellent | > 20% |
100
+
101
+ ## 4. Efficiency Ratios
102
+
103
+ Measure how effectively a company uses its assets and manages operations.
104
+
105
+ ### Asset Turnover
106
+
107
+ **Formula:** Revenue / Total Assets
108
+
109
+ **Interpretation:**
110
+ - Measures revenue generated per dollar of assets
111
+ - Higher indicates more efficient asset utilization
112
+ - Inversely related to profit margins (DuPont)
113
+
114
+ **Benchmarks:**
115
+ | Industry | Typical Range |
116
+ |----------|--------------|
117
+ | Retail | 2.0 - 3.0 |
118
+ | Manufacturing | 0.8 - 1.5 |
119
+ | Utilities | 0.3 - 0.5 |
120
+ | Technology | 0.5 - 1.0 |
121
+
122
+ ### Inventory Turnover
123
+
124
+ **Formula:** COGS / Average Inventory
125
+
126
+ **Interpretation:**
127
+ - Measures how quickly inventory is sold
128
+ - Low turnover suggests overstock or obsolescence risk
129
+ - High turnover may indicate strong sales or thin inventory
130
+
131
+ **Benchmarks:**
132
+ | Rating | Range |
133
+ |--------|-------|
134
+ | Slow | < 4x |
135
+ | Average | 4x - 8x |
136
+ | Efficient | 8x - 12x |
137
+ | Very Efficient | > 12x |
138
+
139
+ ### Receivables Turnover
140
+
141
+ **Formula:** Revenue / Accounts Receivable
142
+
143
+ **Interpretation:**
144
+ - Measures efficiency of credit and collections
145
+ - Higher turnover means faster collections
146
+ - Monitor trends for credit policy changes
147
+
148
+ **Benchmarks:**
149
+ | Rating | Range |
150
+ |--------|-------|
151
+ | Slow | < 6x |
152
+ | Average | 6x - 10x |
153
+ | Efficient | 10x - 15x |
154
+ | Very Efficient | > 15x |
155
+
156
+ ### Days Sales Outstanding (DSO)
157
+
158
+ **Formula:** 365 / Receivables Turnover
159
+
160
+ **Interpretation:**
161
+ - Average days to collect payment after a sale
162
+ - Lower DSO = faster cash conversion
163
+ - Compare against payment terms
164
+
165
+ **Benchmarks:**
166
+ | Rating | Range |
167
+ |--------|-------|
168
+ | Excellent | < 30 days |
169
+ | Good | 30 - 45 days |
170
+ | Acceptable | 45 - 60 days |
171
+ | Concern | > 60 days |
172
+
173
+ Always compare within industry, review 3–5 year trends, and pair with liquidity/leverage and valuation ratios for a complete picture.
@@ -0,0 +1,120 @@
1
+ ---
2
+ pairs-with:
3
+ - 01-profitability-efficiency-ratios.md
4
+ ---
5
+
6
+ # Liquidity & Leverage Ratios
7
+
8
+ ## 2. Liquidity Ratios
9
+
10
+ Measure a company's ability to meet short-term obligations.
11
+
12
+ ### Current Ratio
13
+
14
+ **Formula:** Current Assets / Current Liabilities
15
+
16
+ **Interpretation:**
17
+ - Measures short-term solvency
18
+ - Too high may indicate inefficient asset use
19
+ - Too low signals potential liquidity risk
20
+
21
+ **Benchmarks:**
22
+ | Rating | Range |
23
+ |--------|-------|
24
+ | Concern | < 1.0 |
25
+ | Acceptable | 1.0 - 1.5 |
26
+ | Healthy | 1.5 - 3.0 |
27
+ | Excessive | > 3.0 |
28
+
29
+ ### Quick Ratio (Acid Test)
30
+
31
+ **Formula:** (Current Assets - Inventory) / Current Liabilities
32
+
33
+ **Interpretation:**
34
+ - More conservative than current ratio
35
+ - Excludes inventory (least liquid current asset)
36
+ - Critical for businesses with slow-moving inventory
37
+
38
+ **Benchmarks:**
39
+ | Rating | Range |
40
+ |--------|-------|
41
+ | Concern | < 0.8 |
42
+ | Acceptable | 0.8 - 1.0 |
43
+ | Healthy | 1.0 - 2.0 |
44
+ | Excessive | > 2.0 |
45
+
46
+ ### Cash Ratio
47
+
48
+ **Formula:** Cash & Equivalents / Current Liabilities
49
+
50
+ **Interpretation:**
51
+ - Most conservative liquidity measure
52
+ - Indicates ability to pay obligations with cash on hand
53
+ - Particularly important during credit crunches
54
+
55
+ **Benchmarks:**
56
+ | Rating | Range |
57
+ |--------|-------|
58
+ | Low | < 0.2 |
59
+ | Adequate | 0.2 - 0.5 |
60
+ | Strong | 0.5 - 1.0 |
61
+ | Excessive | > 1.0 |
62
+
63
+ ## 3. Leverage Ratios
64
+
65
+ Measure the extent to which a company uses debt financing.
66
+
67
+ ### Debt-to-Equity Ratio
68
+
69
+ **Formula:** Total Debt / Total Shareholders' Equity
70
+
71
+ **Interpretation:**
72
+ - Measures financial leverage and risk
73
+ - Higher ratio = more reliance on debt financing
74
+ - Industry norms vary significantly (utilities vs tech)
75
+
76
+ **Benchmarks:**
77
+ | Rating | Range |
78
+ |--------|-------|
79
+ | Conservative | < 0.3 |
80
+ | Moderate | 0.3 - 0.8 |
81
+ | Elevated | 0.8 - 2.0 |
82
+ | High Risk | > 2.0 |
83
+
84
+ ### Interest Coverage Ratio
85
+
86
+ **Formula:** Operating Income (EBIT) / Interest Expense
87
+
88
+ **Interpretation:**
89
+ - Measures ability to service debt from operating earnings
90
+ - Below 1.5x is a red flag for lenders
91
+ - Critical for credit analysis
92
+
93
+ **Benchmarks:**
94
+ | Rating | Range |
95
+ |--------|-------|
96
+ | Distressed | < 2.0 |
97
+ | Adequate | 2.0 - 5.0 |
98
+ | Strong | 5.0 - 10.0 |
99
+ | Very Strong | > 10.0 |
100
+
101
+ ### Debt Service Coverage Ratio (DSCR)
102
+
103
+ **Formula:** Operating Cash Flow / Total Debt Service
104
+
105
+ **Interpretation:**
106
+ - Cash-based measure of debt servicing capacity
107
+ - Includes principal repayments (unlike interest coverage)
108
+ - Required by many loan covenants
109
+
110
+ **Benchmarks:**
111
+ | Rating | Range |
112
+ |--------|-------|
113
+ | Default Risk | < 1.0 |
114
+ | Minimum | 1.0 - 1.5 |
115
+ | Comfortable | 1.5 - 2.5 |
116
+ | Strong | > 2.5 |
117
+
118
+ ## Application
119
+
120
+ Compare within industry: leverage norms differ sharply across sectors. Analyze 3–5 year trends rather than a single snapshot, and use these alongside profitability, efficiency, and valuation ratios. Watch for off-balance-sheet items and one-time adjustments that can distort the liquidity and leverage picture.
@@ -0,0 +1,107 @@
1
+ ---
2
+ pairs-with:
3
+ - 06-comparables-precedents.md
4
+ ---
5
+
6
+ # Valuation Ratios & Ratio-Analysis Discipline
7
+
8
+ ## 5. Valuation Ratios
9
+
10
+ Measure a company's market value relative to financial metrics.
11
+
12
+ ### Price-to-Earnings (P/E) Ratio
13
+
14
+ **Formula:** Share Price / Earnings Per Share
15
+
16
+ **Interpretation:**
17
+ - Most widely used valuation metric
18
+ - High P/E suggests growth expectations or overvaluation
19
+ - Use trailing (TTM) and forward P/E for comparison
20
+
21
+ **Benchmarks:**
22
+ | Rating | Range |
23
+ |--------|-------|
24
+ | Value | < 10x |
25
+ | Fair | 10x - 20x |
26
+ | Growth | 20x - 35x |
27
+ | Premium | > 35x |
28
+
29
+ ### Price-to-Book (P/B) Ratio
30
+
31
+ **Formula:** Share Price / Book Value Per Share
32
+
33
+ **Interpretation:**
34
+ - Compares market value to accounting value
35
+ - Below 1.0 may indicate undervaluation or distress
36
+ - Most useful for asset-heavy industries
37
+
38
+ **Benchmarks:**
39
+ | Rating | Range |
40
+ |--------|-------|
41
+ | Undervalued | < 1.0 |
42
+ | Fair | 1.0 - 2.5 |
43
+ | Premium | 2.5 - 5.0 |
44
+ | Rich | > 5.0 |
45
+
46
+ ### Price-to-Sales (P/S) Ratio
47
+
48
+ **Formula:** Market Cap / Revenue
49
+
50
+ **Interpretation:**
51
+ - Useful for companies without positive earnings
52
+ - Compare within industry only
53
+ - Lower = potentially better value
54
+
55
+ **Benchmarks:**
56
+ | Rating | Range |
57
+ |--------|-------|
58
+ | Value | < 1.0 |
59
+ | Fair | 1.0 - 3.0 |
60
+ | Growth | 3.0 - 8.0 |
61
+ | Premium | > 8.0 |
62
+
63
+ ### EV/EBITDA
64
+
65
+ **Formula:** Enterprise Value / EBITDA
66
+
67
+ **Interpretation:**
68
+ - Capital-structure-neutral valuation metric
69
+ - Preferred for M&A analysis and leveraged buyouts
70
+ - More comparable across capital structures than P/E
71
+
72
+ **Benchmarks:**
73
+ | Rating | Range |
74
+ |--------|-------|
75
+ | Value | < 6x |
76
+ | Fair | 6x - 12x |
77
+ | Growth | 12x - 20x |
78
+ | Premium | > 20x |
79
+
80
+ ### PEG Ratio
81
+
82
+ **Formula:** P/E Ratio / Earnings Growth Rate (%)
83
+
84
+ **Interpretation:**
85
+ - Growth-adjusted P/E ratio
86
+ - PEG of 1.0 suggests fair valuation relative to growth
87
+ - Below 1.0 may indicate undervaluation
88
+
89
+ **Benchmarks:**
90
+ | Rating | Range |
91
+ |--------|-------|
92
+ | Undervalued | < 0.5 |
93
+ | Fair | 0.5 - 1.0 |
94
+ | Fully Valued | 1.0 - 2.0 |
95
+ | Overvalued | > 2.0 |
96
+
97
+ ## Ratio Analysis Best Practices
98
+
99
+ 1. **Compare within industry** - Ratios vary significantly across sectors
100
+ 2. **Analyze trends** - A single period snapshot is insufficient; look at 3-5 year trends
101
+ 3. **Use multiple ratios** - No single ratio tells the complete story
102
+ 4. **Consider context** - Accounting policies, business cycle, and company stage matter
103
+ 5. **DuPont decomposition** - Break ROE into margin, turnover, and leverage components
104
+ 6. **Peer comparison** - Compare against direct competitors, not just broad benchmarks
105
+ 7. **Watch for manipulation** - Revenue recognition changes, off-balance-sheet items, and one-time adjustments can distort ratios
106
+
107
+ These valuation multiples double as sanity checks on DCF outputs: an implied EV/EBITDA or P/E far outside peer ranges signals inconsistent DCF assumptions.
@@ -0,0 +1,122 @@
1
+ ---
2
+ requires:
3
+ - 05-dcf-terminal-value-sensitivity.md
4
+ pairs-with:
5
+ - 08-driver-based-forecasting-scenarios.md
6
+ - 06-comparables-precedents.md
7
+ ---
8
+
9
+ # DCF: Cash-Flow Projection & WACC
10
+
11
+ ## Discounted Cash Flow (DCF) Methodology
12
+
13
+ ### Overview
14
+
15
+ DCF is an intrinsic valuation method that estimates the present value of a company's expected future free cash flows, discounted at an appropriate rate reflecting the risk of those cash flows.
16
+
17
+ **Core Principle:** The value of a business equals the present value of all future cash flows it will generate.
18
+
19
+ **Formula:**
20
+
21
+ ```
22
+ Enterprise Value = Sum of [FCF_t / (1 + WACC)^t] + Terminal Value / (1 + WACC)^n
23
+ ```
24
+
25
+ Where:
26
+ - FCF_t = Free Cash Flow in year t
27
+ - WACC = Weighted Average Cost of Capital
28
+ - n = number of projection years
29
+
30
+ ### Step 1: Historical Analysis
31
+
32
+ Before projecting, analyze 3-5 years of historical financials:
33
+
34
+ - **Revenue growth rates** - Identify organic vs acquisition-driven growth
35
+ - **Margin trends** - Gross, operating, and net margin trajectories
36
+ - **Capital intensity** - CapEx as % of revenue
37
+ - **Working capital** - Cash conversion cycle trends
38
+ - **Free cash flow conversion** - FCF / Net Income ratio
39
+
40
+ ### Step 2: Revenue Projections
41
+
42
+ **Approaches:**
43
+ 1. **Top-down:** Market size × Market share × Pricing
44
+ 2. **Bottom-up:** Units × Price, or Customers × ARPU
45
+ 3. **Growth rate extrapolation:** Historical growth with decay
46
+
47
+ **Revenue Projection Best Practices:**
48
+ - Use 5-7 year explicit projection period
49
+ - Growth should converge toward GDP growth by terminal year
50
+ - Support assumptions with market data and management guidance
51
+ - Model revenue by segment/product line when possible
52
+
53
+ ### Step 3: Free Cash Flow Calculation
54
+
55
+ **Unlevered Free Cash Flow (UFCF):**
56
+
57
+ ```
58
+ UFCF = EBIT × (1 - Tax Rate)
59
+ + Depreciation & Amortization
60
+ - Capital Expenditures
61
+ - Changes in Net Working Capital
62
+ ```
63
+
64
+ **Key Drivers:**
65
+ - Operating margin trajectory
66
+ - CapEx as % of revenue (maintenance vs growth)
67
+ - Working capital requirements (DSO, DIO, DPO)
68
+ - Tax rate (effective vs marginal)
69
+
70
+ ### Step 4: WACC Calculation
71
+
72
+ **Weighted Average Cost of Capital:**
73
+
74
+ ```
75
+ WACC = (E/V × Re) + (D/V × Rd × (1 - T))
76
+ ```
77
+
78
+ Where:
79
+ - E/V = Equity weight (market value)
80
+ - D/V = Debt weight (market value)
81
+ - Re = Cost of equity
82
+ - Rd = Cost of debt (pre-tax)
83
+ - T = Marginal tax rate
84
+
85
+ #### Cost of Equity (CAPM)
86
+
87
+ ```
88
+ Re = Rf + Beta × (Rm - Rf) + Size Premium + Company-Specific Risk
89
+ ```
90
+
91
+ | Component | Description | Typical Range |
92
+ |-----------|-------------|---------------|
93
+ | Risk-Free Rate (Rf) | 10-year Treasury yield | 3.5% - 5.0% |
94
+ | Equity Risk Premium (ERP) | Market return above risk-free | 5.0% - 7.0% |
95
+ | Beta | Systematic risk relative to market | 0.5 - 2.0 |
96
+ | Size Premium | Small-cap additional risk | 0% - 5% |
97
+ | Company-Specific Risk | Unique risk factors | 0% - 5% |
98
+
99
+ **Beta Estimation:**
100
+ - Use 2-5 year weekly returns against broad market index
101
+ - Unlevered betas for comparability, then re-lever to target capital structure
102
+ - Consider industry median beta for stability
103
+
104
+ #### Cost of Debt
105
+
106
+ ```
107
+ Rd = Yield on comparable-maturity corporate bonds
108
+ OR
109
+ Rd = Risk-Free Rate + Credit Spread
110
+ ```
111
+
112
+ **Credit Spread by Rating:**
113
+ | Rating | Typical Spread |
114
+ |--------|---------------|
115
+ | AAA | 0.5% - 1.0% |
116
+ | AA | 1.0% - 1.5% |
117
+ | A | 1.5% - 2.0% |
118
+ | BBB | 2.0% - 3.0% |
119
+ | BB | 3.0% - 5.0% |
120
+ | B | 5.0% - 8.0% |
121
+
122
+ Beware circular references: WACC depends on equity value which depends on WACC. Continue to terminal value, the equity bridge, and sensitivity in the paired mini.
@@ -0,0 +1,75 @@
1
+ ---
2
+ requires:
3
+ - 04-dcf-projection-wacc.md
4
+ pairs-with:
5
+ - 06-comparables-precedents.md
6
+ ---
7
+
8
+ # DCF: Terminal Value, Equity Bridge & Sensitivity
9
+
10
+ ### Step 5: Terminal Value
11
+
12
+ Terminal value typically represents 60-80% of total enterprise value. Use two methods and cross-check.
13
+
14
+ #### Perpetuity Growth Method
15
+
16
+ ```
17
+ TV = FCF_n × (1 + g) / (WACC - g)
18
+ ```
19
+
20
+ Where g = terminal growth rate (typically 2.0% - 3.0%, should not exceed long-term GDP growth)
21
+
22
+ **Sensitivity:** Terminal value is highly sensitive to g. A 0.5% change in g can move enterprise value by 15-25%.
23
+
24
+ #### Exit Multiple Method
25
+
26
+ ```
27
+ TV = Terminal Year EBITDA × Exit EV/EBITDA Multiple
28
+ ```
29
+
30
+ **Exit Multiple Selection:**
31
+ - Use current trading multiples of comparable companies
32
+ - Consider whether current multiples are at historical highs/lows
33
+ - Apply a discount for lack of marketability if private
34
+
35
+ **Cross-Check:** Both methods should yield similar results. Large discrepancies signal inconsistent assumptions.
36
+
37
+ ### Step 6: Enterprise to Equity Bridge
38
+
39
+ ```
40
+ Enterprise Value
41
+ - Net Debt (Total Debt - Cash)
42
+ - Minority Interest
43
+ - Preferred Equity
44
+ + Equity Method Investments
45
+ = Equity Value
46
+
47
+ Equity Value / Diluted Shares Outstanding = Value Per Share
48
+ ```
49
+
50
+ Use fully diluted shares (treasury stock method for options): ignoring dilution overstates per-share value.
51
+
52
+ ### Step 7: Sensitivity Analysis
53
+
54
+ Always present results as a range, not a single point estimate.
55
+
56
+ **Standard Sensitivity Tables:**
57
+ 1. WACC vs Terminal Growth Rate
58
+ 2. WACC vs Exit Multiple
59
+ 3. Revenue Growth vs Operating Margin
60
+
61
+ **Scenario Analysis:**
62
+ - Base case: Management guidance / consensus estimates
63
+ - Bull case: Upside scenario with faster growth or margin expansion
64
+ - Bear case: Downside scenario with slower growth or margin compression
65
+
66
+ ## Common Pitfalls
67
+
68
+ 1. **Hockey stick projections** - Unrealistic growth acceleration in later years
69
+ 2. **Terminal value dominance** - If TV > 80% of EV, shorten projection period or question assumptions
70
+ 3. **Circular references** - WACC depends on equity value which depends on WACC
71
+ 4. **Ignoring working capital** - Can significantly affect FCF
72
+ 5. **Single-point estimates** - Always present as a range
73
+ 6. **Stale comparables** - Market conditions change; update regularly
74
+ 7. **Confirmation bias** - Don't work backward from a desired conclusion
75
+ 8. **Ignoring dilution** - Use fully diluted shares (treasury stock method for options)