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.
npx skills add santoshkanthety/powerbi-agent --skill powerbi-star-schema-modelinggit clone --depth 1 https://github.com/santoshkanthety/powerbi-agentWrote 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.
[](https://agentmods.dev/skills/santoshkanthety/powerbi-agent/powerbi-star-schema-modeling)<a href="https://agentmods.dev/skills/santoshkanthety/powerbi-agent/powerbi-star-schema-modeling"><img src="https://agentmods.dev/badge/skills/santoshkanthety/powerbi-agent/powerbi-star-schema-modeling/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.
<a href="https://agentmods.dev/skills/santoshkanthety/powerbi-agent/powerbi-star-schema-modeling"><img src="https://agentmods.dev/badge/skills/santoshkanthety/powerbi-agent/powerbi-star-schema-modeling.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00067 | $0.01538 |
| Opus 5 | $0.00034 | $0.00769 |
| Sonnet 5 | $0.00013 | $0.00308 |
| Haiku 4.5 | $0.00007 | $0.00154 |
Grade A, and why
powerbi-star-schema-modeling 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 12d 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.
How it starts
The opening of the file, as written. The whole thing — 170 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Skill: Data Warehouse Modelling — Star & Snowflake Schema
Trigger
Activate when the user mentions: star schema, snowflake schema, dimensional modeling, Kimball, fact table, dimension table, surrogate key, grain, SCD, conformed dimensions, data mart, data warehouse, DW design, ERD, relationship design
What You Know
You are a Kimball-trained dimensional modelling expert with 20+ years implementing data warehouses across retail, finance, healthcare, and manufacturing. You know when to use star vs snowflake, how to handle slowly changing dimensions, and how to design for both query performance and semantic model elegance.
The Fundamental Rule: Design for the Business Question First
Before drawing any tables, ask:
- What is the business process? (Sales, Inventory, Orders, Claims)
- What is the grain? (One row per invoice line, per day, per transaction)
- What dimensions describe it? (Who, What, Where, When, Why, How)
- What facts are measured? (Amount, Quantity, Duration, Count)
Star Schema (Default Choice for Power BI)
dim_date ───────────┐
dim_customer ───────┤
dim_product ────────┤──── fact_sales
dim_store ──────────┤
dim_promotion ──────┘
Fact Table Design
CREATE TABLE fact_sales (
-- Surrogate keys (FK to dims)
date_key INT NOT NULL,
customer_key INT NOT NULL,
product_key INT NOT NULL,
store_key INT NOT NULL,
-- Degenerate dimension (no dim table needed)
invoice_number VARCHAR(20),
-- Measures (additive preferred)
sales_amount DECIMAL(18,2),
quantity_sold INT,
cost_amount DECIMAL(18,2),
discount_amount DECIMAL(18,2),
-- Metadata
_loaded_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);
Additivity Rules:
- ✅ Fully additive: sum across all dimensions (sales_amount, quantity)
- ⚠️ Semi-additive: sum across some dims only (account balances — sum across time is wrong)
- ❌ Non-additive: never sum (ratios, percentages — compute in DAX)
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.
- 12d ago First seen · 170 lines · 0 tokens per session scan A 03f1bb136073
powerbi-star-schema-modeling is a skill published in the GitHub repository santoshkanthety/powerbi-agent (2 stars, last pushed 12d ago), licensed MIT. It adds 67 tokens to every session and 1,538 once invoked, about $0.0003 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-31.
Other skills, from other repositories
Data Retention Schedule Review
Use when reviewing a draft or existing data retention schedule to inventory data categories against stated purposes, collect retention-period facts, flag legal-hold interactions, and surface orphaned-data and vendor-coverage gaps for attorney review.
bi-sql-knowledge
Use Seshat's public SQL knowledge for source grain, joins, aggregation, validation, reconciliation, and transformation reasoning without executing a database.
sql_optimizer
Skill "sql_optimizer" from G-Schumacher44/strata-oss, covering skill: sqloptimizer, trigger, inputs, allowed tools and forbidden.
sql_builder
Skill "sql_builder" from G-Schumacher44/strata-oss, covering skill: sqlbuilder, trigger, inputs, allowed tools and forbidden.
bq_schema_probe
Skill "bq_schema_probe" from G-Schumacher44/strata-oss, covering skill: bqschemaprobe, trigger, inputs, allowed tools and forbidden.
bq_query_guardrail
Skill "bq_query_guardrail" from G-Schumacher44/strata-oss, covering skill: bqqueryguardrail, trigger, inputs, allowed tools and forbidden.