neqsim-asset-value-npv-screening

neqsim-asset-value-npv-screening is a skill for Claude Code, Codex from equinor/neqsim-community-skills. It costs 89 tokens per session (1,298 once invoked), scanned A, original, Apache-2.0.

An educational financial calculator for screening an asset with discounted cash flow. It uses yearly revenue, operating costs, investment spending, tax, and a discount rate to estimate NPV, IRR, and payback.

In plain words
What is it for?
Use it to screen an oil-and-gas or other asset concept using public or preliminary revenue, cost, and investment figures.
Why use it?
It provides a quick first estimate before a detailed field-development financial model is available. The assumptions and yearly cash flows remain visible for review.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to screen an oil-and-gas or other asset concept using public or preliminary revenue, cost, and investment figures.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/equinor/neqsim-community-skills/asset-value-npv-screening
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 equinor/neqsim-community-skills --skill asset-value-npv-screening
Clone the repo
git clone --depth 1 https://github.com/equinor/neqsim-community-skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for neqsim-asset-value-npv-screening

README.md
[![agentmods](https://agentmods.dev/badge/skills/equinor/neqsim-community-skills/asset-value-npv-screening/github.svg)](https://agentmods.dev/skills/equinor/neqsim-community-skills/asset-value-npv-screening)
Your own site
<a href="https://agentmods.dev/skills/equinor/neqsim-community-skills/asset-value-npv-screening"><img src="https://agentmods.dev/badge/skills/equinor/neqsim-community-skills/asset-value-npv-screening/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 neqsim-asset-value-npv-screening

Your own site · 80×15
<a href="https://agentmods.dev/skills/equinor/neqsim-community-skills/asset-value-npv-screening"><img src="https://agentmods.dev/badge/skills/equinor/neqsim-community-skills/asset-value-npv-screening.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 89 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,298 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.00089 $0.01298
Opus 5 $0.00044 $0.00649
Sonnet 5 $0.00018 $0.00260
Haiku 4.5 $0.00009 $0.00130

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

Security

Grade A, and why

neqsim-asset-value-npv-screening 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.

The scan reads SKILL.md. This mod also ships 4 executable files (examples/basic_asset_value.py, src/asset_value_npv_screening/__init__.py, src/asset_value_npv_screening/model.py, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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/field-development/asset-value-npv-screening/SKILL.md · 123 lines

How it starts

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

Asset Value (NPV) Screening

Use this skill for a quick, public discounted-cash-flow (DCF) screening of an asset. Given a year-by-year revenue series, an OPEX series (or a flat value), and a CAPEX schedule (or a single year-0 spend), it computes net cash flow, discounts it to a net present value (NPV), and estimates IRR and payback. It is a transparent placeholder that should guide users toward the validated NeqSim field-development DCF utilities and the NeqSim MCP runFieldEconomics workflow.

When to Use

  • When a user wants a first-pass NPV / IRR / payback for a concept.
  • When an agent has a production-and-price revenue profile plus a cost screen.
  • When examples must run without confidential fiscal terms or licensed tools.

Inputs

  • annual_revenue_musd: sequence of annual revenues in million USD (one per year).
  • annual_opex_musd: a flat OPEX or a per-year sequence in million USD.
  • capex_schedule_musd: a single year-0 spend or a per-year sequence in million USD.
  • discount_rate_fraction: annual discount rate (default 0.08).
  • tax_rate_fraction: flat tax on positive operating profit (default 0.0).

Outputs

  • net_cash_flow_musd: per-year revenue - OPEX - tax - CAPEX.
  • discounted_cash_flow_musd: per-year discounted cash flow.
  • cumulative_cash_flow_musd: running (undiscounted) cumulative cash flow.
  • npv_musd: net present value.
  • irr_fraction: internal rate of return (or None if not identifiable).
  • payback_year / discounted_payback_year: first year cumulative turns non-negative.
  • total_capex_musd / total_revenue_musd: roll-up totals.
  • value_warning: ok (NPV>0), watch (NPV=0), or high (NPV<0).
  • neqsim_available: whether the optional NeqSim package is importable.
  • assumptions: public assumptions and required follow-up.

Engineering Method

For each year, operating profit is revenue - OPEX; tax is tax_rate * max(0, operating profit); net cash flow is operating profit - tax - CAPEX. NPV discounts each net cash flow at year-end: NPV = sum(CF_t / (1 + r)^t) for t = 1..N. IRR is the rate that zeroes NPV, found by bisection over a wide bracket (returns None when there is no sign change). Payback is the first year cumulative cash flow becomes non-negative.

Read the full file on GitHub · 123 lines

Files

What ships with it

6 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 · 123 lines · 89 tokens per session scan A 49a550a8da46

Subscribe to this mod's changes

neqsim-asset-value-npv-screening is a skill published in the GitHub repository equinor/neqsim-community-skills (2 stars, last pushed today), licensed Apache-2.0. It adds 89 tokens to every session and 1,298 once invoked, about $0.0004 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

stockbee-setup-fluency-trainer

Build a Stockbee-style setup model book from momentum-burst screener candidates, then update 3-day and 5-day forward outcomes with MFE/MAE, stop-hit status, outcome tags, and cohort statistics. Use when the user wants to study Stockbee Momentum Burst examples, track failed candidates, build setup fluency, review A/B…

tradermonty/claude-trading-skills · 98 tokens

market-microstructure-traditional

Traditional market microstructure concepts applied to crypto — order book dynamics, market making theory, price formation models, execution quality measurement, and CEX vs DEX structural differences.

agiprolabs/claude-trading-skills · 40 tokens

trading-manual-writer

A writing skill for creating sections of a trading manual for beginners and individual investors. It explains financial instruments or trading topics in Markdown and can include SVG illustrations.

digoal/blog · 185 tokens

common-sense-index-investing-bogle

Apply John Bogle index investing rules for low-cost funds, asset allocation, fees, taxes, ETFs, advisers, and buy-hold discipline.

simbajigege/book2skills · 38 tokens

paper-trading

Risk-free trading simulation with real market data. Test strategies without risking real money.

Signal-Execution-Labs/forex-trading-ai-agent · 0 tokens

market-replay

Replay historical market data in real-time or accelerated speed. Practice trading, test strategies, and learn from past market events without risking capital.

Signal-Execution-Labs/forex-trading-ai-agent · 0 tokens