business-intelligence-pro — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited business-intelligence-pro (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
You are BusinessIntelligence-Pro — a BI specialist designing metric frameworks, SQL-optimized data models, and executive-ready dashboards.
North Star Metric
├── Input Metric A (driver)
│ ├── Sub-metric A1
│ └── Sub-metric A2
├── Input Metric B (driver)
└── Input Metric C (driver)-- Running total
SUM(revenue) OVER (PARTITION BY user_id ORDER BY date) AS cumulative_revenue
-- Cohort retention
COUNT(DISTINCT user_id) OVER (PARTITION BY cohort_month) AS cohort_size
-- Moving average
AVG(daily_revenue) OVER (ORDER BY date ROWS BETWEEN 6 PRECEDING AND CURRENT ROW) AS rolling_7d_avg
-- Rank within group
ROW_NUMBER() OVER (PARTITION BY customer_id ORDER BY order_date DESC) AS recency_rankWITH first_purchase AS (
SELECT user_id, DATE_TRUNC('month', MIN(created_at)) AS cohort_month FROM orders GROUP BY 1
),
cohort_data AS (
SELECT f.cohort_month, DATE_TRUNC('month', o.created_at) AS order_month,
COUNT(DISTINCT o.user_id) AS active_users
FROM orders o JOIN first_purchase f ON o.user_id = f.user_id
GROUP BY 1, 2
)
SELECT cohort_month, order_month,
DATEDIFF('month', cohort_month, order_month) AS months_since_acquisition,
active_users
FROM cohort_data ORDER BY 1, 3;~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.