earnings-snapshot

earnings-snapshot is a skill for Claude Code from awslabs/agentcore-samples. It costs 26 tokens per session (417 once invoked), scanned A, original, Apache-2.0.

A workflow for creating a short stock report covering company results, valuation, recent earnings news, and analyst views.

In plain words
What is it for?
Use it for earnings reviews, fundamental checks, valuation questions, and comparisons between recent results and expectations.
Why use it?
It brings the main facts together so you can judge whether a stock looks expensive, fairly valued, or discounted compared with its sector.

Skill for Claude Code ✓ vendor

Written for Claude Code: allowed-tools in frontmatter.

Good fit Use it for earnings reviews, fundamental checks, valuation questions, and comparisons between…

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/awslabs/agentcore-samples/earnings-snapshot
About the project

Amazon Bedrock AgentCore Samples is a collection of examples and tutorials for deploying and operating AI agents with Amazon Bedrock AgentCore. Developers use it to integrate agent applications built with different frameworks and language models while learning AgentCore features. The catalogue add-ons provide agent-oriented guidance for working with these samples and services.

awslabs/agentcore-samples · 3,336 stars · on GitHub · aws.amazon.com

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 awslabs/agentcore-samples --skill earnings-snapshot
Clone the repo
git clone --depth 1 https://github.com/awslabs/agentcore-samples

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 earnings-snapshot

README.md
[![agentmods](https://agentmods.dev/badge/skills/awslabs/agentcore-samples/earnings-snapshot.svg)](https://agentmods.dev/skills/awslabs/agentcore-samples/earnings-snapshot)
Your own site
<a href="https://agentmods.dev/skills/awslabs/agentcore-samples/earnings-snapshot"><img src="https://agentmods.dev/badge/skills/awslabs/agentcore-samples/earnings-snapshot.svg" alt="Measured on agentmods" height="20"></a>
Per session 26 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 417 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.00026 $0.00417
Opus 5 $0.00013 $0.00209
Sonnet 5 $0.00005 $0.00083
Haiku 4.5 $0.00003 $0.00042

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

Security

Grade A, and why

earnings-snapshot 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 7d 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.

02-use-cases/01-conversational-agents/market-trends-agent/skills/earnings-snapshot/SKILL.md · 39 lines

What it actually says

Earnings Snapshot Skill

Use this skill when a user asks about a company's earnings, valuation metrics, fundamentals, whether a stock is cheap or expensive, or how recent results compared to expectations.

Required workflow

  1. Retrieve stock data using get_stock_data for the requested symbol.
  2. Search for earnings-related news using search_news with the stock's sector.
  3. Extract the following fundamental metrics from stock data:
    • P/E ratio (compare to sector average: Technology ~34x, Healthcare ~22x, Financials ~13x, Energy ~14x, Consumer Discretionary ~30x, Consumer Staples ~25x)
    • Dividend yield (0% = growth stock; >2% = income stock)
    • Market cap tier (Mega >$1T, Large $100B-$1T, Mid $10B-$100B)
  4. Assess valuation:
    • P/E > 1.3× sector average → Premium (growth priced in)
    • P/E within 0.7×–1.3× sector average → Fair Value
    • P/E < 0.7× sector average → Discount (value opportunity or value trap)
  5. Identify the most relevant earnings headline from news results.
  6. Provide a 2-sentence earnings outlook.

Output Format

Earnings Snapshot: {SYMBOL} — {Company Name}
  Price         : ${price}
  P/E Ratio     : {pe_ratio}x  ({Premium | Fair Value | Discount} vs. {sector} avg {sector_avg}x)
  Dividend Yield: {yield}%
  Market Cap    : ${cap}  ({tier})
  Earnings News : {top headline}
  Outlook       : {2-sentence assessment}
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. 7d ago First seen · 39 lines · 26 tokens per session scan A 17ea0c1c1801

Subscribe to this mod's changes

earnings-snapshot is a skill published in the GitHub repository awslabs/agentcore-samples (3,336 stars, last pushed yesterday), licensed Apache-2.0. It adds 26 tokens to every session and 417 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-08-30.

Related

Other skills, from other repositories

travel-expense-audit

A travel-expense review workflow that checks reimbursement claims against policy handbooks and rate tables. It covers items such as hotel, transport, and daily meal allowances.

vixues/LeAgent · 51 tokens

risk-scoring

Score how concentrated and risky a portfolio is on a 0-100 scale from its position weights. Use when the user asks how risky their portfolio is, whether it is too concentrated, or for a diversification check.

microsoft/agent-framework · 47 tokens

valuation

Estimate whether a stock looks cheap or expensive using a price-to-earnings (P/E) based fair-value method. Use when the user asks if a stock is over- or under-valued, or for a fair-value / target price.

microsoft/agent-framework · 51 tokens

babysit

Same-session monitoring loop for PRs, CI runs, tickets, and deployments using the monitorstart / monitorupdate / autonudgestop MCP tools. The loop re-injects your check instructions into THIS session on an idle interval — same context, same tools — and works from dashboard chat, Slack threads, and Discord DMs. Use…

kirodotdev/KiroCrew · 137 tokens

computer-use

Read and drive native desktop applications through the accessibility layer — list on-screen apps, snapshot one window as a numbered element tree, then click / type / set a value / scroll / drag / run a named action, by element index or by screen coordinates. Use for work in a desktop app rather than a web page. Full…

kirodotdev/KiroCrew · 105 tokens

goal-conductor

Own a long-horizon goal end to end - decompose it into work items, stand up one top-level session per item, patrol their state on a nudge loop, and decide each next round until the goal is met or a stop condition fires. Use when the user hands over a goal too large for one session ("clear the flaky-test backlog"…

kirodotdev/KiroCrew · 105 tokens