tearsheet

Installation
SKILL.md

Generate a concise company tearsheet for the company named in the user's request. If no ticker or company is provided, ask for one before proceeding.

This should be a quick, one-page overview — the kind of snapshot an analyst pulls up before a meeting.

Before starting, read ../data-access.md for data access methods and ../design-system.md for formatting conventions. Follow the data access detection logic and design system throughout this skill.

Follow these steps:

1. Company Lookup

Look up the company by ticker using discover_companies. Capture:

  • company_id
  • latest_calendar_quarter — anchor for all period calculations below (see ../data-access.md Section 1.5)
  • latest_fiscal_quarter
  • Firm name for report attribution (default: "Daloopa") — see ../data-access.md Section 4.5

1b. Current Stock Price

Get the current stock price using get_stock_prices (see ../data-access.md Section 1.7). Pass company_id and dates for the 3 most recent calendar days — use the most recent returned close price. Include the price, date, and a simple context line (e.g., 52-week range or YTD change if you have enough history from a quick start_date/end_date pull of the last 12 months). Display this prominently at the top of the report next to the company name.

Installs
1
First Seen
Aug 13, 2026
tearsheet — daloopa/daloopa-plugin-codex