Create new Evidence.dev dashboard page with charts and tables
Installation
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Create new Evidence.dev dashboard page with charts and tables
Add Evidence Page
When to Use
Adding new visualization/dashboard
Creating charts for existing DLT data
File Structure
├── pages/<category>/<page>.md # Page with charts
└── sources/nfcore_db/<query>.sql # SQL data source
Page Template
---
title: Page Title
sidebar_position: 1
---
Brief description of what this page shows.
```sql summary_query
SELECT COUNT(*) as total FROM nfcore_db.<table_name>
```
SELECT
date_trunc('week', created_at) as week,
COUNT(*) as count
FROM nfcore_db.<table_name>GROUPBY1ORDERBY1
```
SQL Source Template
File: sources/nfcore_db/<query>.sql
SELECT
column1,
column2,
COUNT(*) as count
FROM<table_name>GROUPBY1, 2ORDERBY count DESC