equity-valuation-framework

equity-valuation-framework is a skill for Claude Code, Codex from claude-office-skills/claude-office-plugin. It costs 52 tokens per session (1,925 once invoked), scanned A, original, MIT.

A framework for estimating what a company’s stock may be worth using financial results, peer comparisons, discounted cash flow, scenarios, and a safety margin.

In plain words
What is it for?
Use it to judge whether a stock looks cheap or expensive, compare several stocks, explain an investment case, or review risks under different scenarios.
Why use it?
It turns scattered financial and market inputs into a structured investment view and clearly flags missing information.

Skill for Claude CodeCodex

Written for Claude Code and Codex: shipped in a Claude Code plugin, but also agents/openai.yaml present. Also seen: built for openclaw.

Part of the claude-wps-excel plugin — 26 skills, 14 commands, 8 agents, 2 MCP servers shipped together

Good fit Use it to judge whether a stock looks cheap or expensive, compare several stocks, explain an investment case, or review risks under different scenarios.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/claude-office-skills/claude-office-plugin/equity-valuation-framework-1.0.3
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add claude-office-skills/claude-office-plugin --skill equity-valuation-framework-1.0.3
Clone the repo
git clone --depth 1 https://github.com/claude-office-skills/claude-office-plugin

Made for: Claude Code, Codex.

Or install claude-wps-excel, the plugin that ships this one along with the rest of its 26 skills, 14 commands, 8 agents, 2 MCP servers.

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 equity-valuation-framework

README.md
[![agentmods](https://agentmods.dev/badge/skills/claude-office-skills/claude-office-plugin/equity-valuation-framework-1.0.3/github.svg)](https://agentmods.dev/skills/claude-office-skills/claude-office-plugin/equity-valuation-framework-1.0.3)
Your own site
<a href="https://agentmods.dev/skills/claude-office-skills/claude-office-plugin/equity-valuation-framework-1.0.3"><img src="https://agentmods.dev/badge/skills/claude-office-skills/claude-office-plugin/equity-valuation-framework-1.0.3/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for equity-valuation-framework

Your own site · 80×15
<a href="https://agentmods.dev/skills/claude-office-skills/claude-office-plugin/equity-valuation-framework-1.0.3"><img src="https://agentmods.dev/badge/skills/claude-office-skills/claude-office-plugin/equity-valuation-framework-1.0.3.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 52 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,925 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.
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.00052 $0.01925
Opus 5 $0.00026 $0.00962
Sonnet 5 $0.00010 $0.00385
Haiku 4.5 $0.00005 $0.00193

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

Security

Grade A, and why

equity-valuation-framework 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 11d 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.

skills/equity-valuation-framework-1.0.3/SKILL.md · 236 lines

How it starts

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

Equity Valuation Framework

Use this skill as the "rules of the game" for valuation decisions and report standardization.

Scope and role

  • Purpose: transform already-fetched data into a professional valuation view.
  • This skill does not fetch data.
  • Upstream data should come from:
    • vnstock-free-expert for company/price/ratio inputs
    • nso-macro-monitor, us-macro-news-monitor, vn-market-news-monitor for macro/news context

When to trigger

  • User asks: "value this stock", "is it cheap/expensive", "best stock between A/B/C", "give me bull/base/bear", "build an investment memo".
  • User requests a decision-ready report, not only raw metrics.

Required input contract

Accept an input bundle with these sections (missing fields allowed, but must be flagged):

{
  "ticker": "HPG",
  "as_of_date": "YYYY-MM-DD",
  "currency": "VND",
  "financials": {
    "income_statement": {},
    "balance_sheet": {},
    "cash_flow": {},
    "ratios": {}
  },
  "price_history": {
    "daily": [],
    "returns": {
      "1m": null,
      "3m": null,
      "6m": null,
      "12m": null
    }
  },
  "peer_set": ["AAA", "BBB"],
  "macro_snapshot": {},
  "news_digest": {},
  "metadata": {
    "source": "kbs|vci",
    "data_quality_notes": []
  }
}

Execution workflow (ordered)

  1. Validate input bundle completeness and freshness.
  2. Run the data quality gate and assign initial confidence.
  3. Select valuation modules based on available data (Multiples, DCF, sector adaptation).
  4. Build bull/base/bear scenarios with explicit assumptions.
  5. Triangulate fair value, define safety zone, and list key risks.
  6. Apply confidence rubric and disclose gaps that can change conclusions.
  7. Return the report using the required section order.

Data quality gate (must run first)

  1. Check freshness: state report periods and price cutoff date.
  2. Check completeness: identify missing key lines (revenue, EBIT, net income, CFO, debt, equity, shares).
  3. Check consistency: basic identity checks (assets = liabilities + equity if available).
  4. Mark confidence tier:
  • High: complete + recent + internally consistent.
  • Medium: minor gaps, valuation still usable.
  • Low: major gaps; only directional view allowed.

Read the full file on GitHub · 236 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 236 lines · 52 tokens per session scan A 6c86e2e8affb

Subscribe to this mod's changes

equity-valuation-framework is a skill published in the GitHub repository claude-office-skills/claude-office-plugin (9 stars, last pushed 5mo ago), licensed MIT. It adds 52 tokens to every session and 1,925 once invoked, about $0.0003 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-31.

Related

Other skills, from other repositories

sector-rotation

An analysis framework for comparing industries in the Chinese A-share stock market, using business conditions, price momentum, valuation, and money flows. It produces rankings and higher- or lower-allocation suggestions.

HKUDS/Vibe-Trading · 39 tokens

strategy-pivot-designer

Detect backtest iteration stagnation and generate structurally different strategy pivot proposals when parameter tuning reaches a local optimum.

tradermonty/claude-trading-skills · 28 tokens

twitter-reader

Read Twitter/X for financial research using opencli (read-only). Use this skill whenever the user wants to read their Twitter feed, search for financial tweets, view bookmarks, look up user profiles, or gather market sentiment from Twitter/X. Triggers include: "check my feed", "search Twitter for", "show my…

himself65/finance-skills · 161 tokens

chenhao-limit-up

A framework for judging Chinese A-share stocks that have reached the daily price-rise limit, using market mood, sector leadership, and trading momentum.

questflowai/investorskills · 44 tokens

trading-risk-gate

Unified pre-trade safety gate: Ruin check (Law #1), ergodicity audit, and win-rate dominance validation. Absorbs: ergodicity-check, law-of-ruin, win-rate-dominance.

winstonkoh87/Athena-Public · 53 tokens

furusato

A Japanese hometown-tax donation manager for furusato nozei, a system where donations to municipalities can qualify for an income-tax or local-tax deduction. It reads donation receipts, stores donation records, and calculates deduction limits.

kazukinagata/shinkoku · 102 tokens