What problem does it solve?
Compiling a weekly metrics report by hand means querying the database, comparing numbers against prior weeks, and writing commentary every Monday. This Skill automates that loop: it queries the metrics tables read-only, computes week-over-week deltas against a trailing window, writes plain-language commentary on notable moves, and posts one report to a Slack channel.
Core Features & Use Cases
- Read-only Postgres queries: Pulls this week's metrics and a trailing 4-week comparison window using SELECT-only access scoped to the metrics tables.
- Delta and trend analysis: Flags notable moves (≥15% week-over-week change or a break from a 3+ week trend) and distinguishes them from normal noise or missing data.
- Slack report delivery: Posts exactly one structured message per run to the configured report channel, with the week's numbers, commentary on notable moves, and notes on any data gaps.
- Use Case: A startup team schedules a weekly cron that spawns a fresh session with read-only database access; the agent queries signups, revenue, and active users, compares them to the prior four weeks, and posts a report explaining that signups rose 22% likely due to a product launch.
Quick Start
Ask the agent to run the weekly metrics report and post this week's numbers with commentary to the report channel.