us-undervalued-growth-screen

us-undervalued-growth-screen is a command for Claude Code from tradermonty/claude-trading-skills. It costs 28 tokens per session (696 once invoked), scanned A, original, MIT.

A command that runs a pipeline to find and assess potentially undervalued, growing US companies using a specified market-cap range and financial data source.

In plain words
What is it for?
It helps run the configured screener, underwrite selected companies, validate the pipeline environment, and publish a scoped US growth-stock report.
Why use it?
It turns a broad stock-discovery task into a documented, audited ranking with consistent runtime and data-contract checks.

Command for Claude Code

Written for Claude Code: argument-hint in frontmatter. Also seen: mentions Claude Code.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is python3 skills/us-undervalued-growth-screener/scripts/run_pipeline.py \.

Good fit It helps run the configured screener, underwrite selected companies, validate the pipeline environment, and publish a scoped US growth-stock report.

Compare 6 commands from other repositories ↓
About the project

Claude Trading Skills is a collection of Claude Code workflows for individual investors who want structured market analysis, charting, economic-calendar review, screening, trade planning, journaling, and risk management. It is designed for people using long-term investing, ETFs, dividend stocks, and disciplined swing trading, and the catalogue entries package these workflows as skills, agents, commands, settings, and instructions.

tradermonty/claude-trading-skills · 2,813 stars · on GitHub · tradermonty.github.io

Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/tradermonty/claude-trading-skills
agentmods
npx agentmods add commands/tradermonty/claude-trading-skills/us-undervalued-growth-screen

Made for: Claude Code.

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 us-undervalued-growth-screen

README.md
[![agentmods](https://agentmods.dev/badge/commands/tradermonty/claude-trading-skills/us-undervalued-growth-screen/github.svg)](https://agentmods.dev/commands/tradermonty/claude-trading-skills/us-undervalued-growth-screen)
Your own site
<a href="https://agentmods.dev/commands/tradermonty/claude-trading-skills/us-undervalued-growth-screen"><img src="https://agentmods.dev/badge/commands/tradermonty/claude-trading-skills/us-undervalued-growth-screen/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 us-undervalued-growth-screen

Your own site · 80×15
<a href="https://agentmods.dev/commands/tradermonty/claude-trading-skills/us-undervalued-growth-screen"><img src="https://agentmods.dev/badge/commands/tradermonty/claude-trading-skills/us-undervalued-growth-screen.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 28 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 696 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.00028 $0.00696
Opus 5 $0.00014 $0.00348
Sonnet 5 $0.00006 $0.00139
Haiku 4.5 $0.00003 $0.00070

Measured 10d ago against content hash 7beee23d8c0c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

us-undervalued-growth-screen 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 10d 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.

commands/us-undervalued-growth-screen.md · 72 lines

How it starts

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

US Undervalued Growth Screen

Use the repository's local direct-FMP pipeline. Do not call bulk FMP MCP tools and do not paste raw provider JSON into the conversation.

Arguments

$ARGUMENTS

Interpretation:

  • Empty: use skills/us-undervalued-growth-screener/assets/claude-code-config.example.json.
  • Existing JSON path: pass it as --config.
  • Natural-language scope override: change the default USD 500M–20B range only when the user explicitly supplies another range; first write a temporary config recording the requested range.

Execution

  1. Confirm that FMP_API_KEY exists without printing its value.
  2. Run the runtime preflight, including run_pipeline.py --version. Every helper must report skill 3.6.1, schema 3, contract 3.5, and fingerprint ug-v3.6.1-claude-code-direct-fmp-20260830.
  3. Run:
python3 skills/us-undervalued-growth-screener/scripts/run_pipeline.py \
  --config skills/us-undervalued-growth-screener/assets/claude-code-config.example.json \
  --output-dir reports/us-undervalued-growth-screener

Substitute an explicit JSON argument path only when supplied.

  1. Parse the single compact JSON object printed by the runner. Read only:
<run>/run-summary.json
<run>/NEXT_ACTION.json
<run>/audit/listing-enumeration-audit.json
<run>/audit/provider-prefilter-audit.json
<run>/audit/broad-screen-audit.json
<run>/candidate-packets/*.fmp-packet.json

Do not read the provider/ or provider-raw/ trees into model context. Open one raw provider artifact only to investigate a named discrepancy.

  1. Follow NEXT_ACTION.json without asking for confirmation. Complete primary-source underwriting for every selected_symbol using accession-specific SEC filings and official company IR. Provider packets are discovery evidence, not primary-source verification.
  2. Save every selected symbol as a verified candidate record, including review_required, screened_out, and excluded outcomes.
  3. Run the existing final sequence:

Read the full file on GitHub · 72 lines

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. 10d ago First seen · 72 lines · 28 tokens per session scan A 7beee23d8c0c

Subscribe to this mod's changes

us-undervalued-growth-screen is a command published in the GitHub repository tradermonty/claude-trading-skills (2,813 stars, last pushed today), licensed MIT. It adds 28 tokens to every session and 696 once invoked, about $0.0001 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-09-02.