Rylai Dashboard Creator
Build the working dashboard as the primary experience. Optimize for scanning, comparison, and repeated use.
Establish The Metric Contract
For each metric, determine:
- exact definition and unit;
- source and refresh time;
- aggregation level and time window;
- comparison baseline;
- whether higher or lower is desirable;
- states for missing, delayed, partial, and invalid data.
Do not invent values to make a screen look complete. Clearly label sample data when a prototype requires it.
Build Workflow
Inspect the target
- Reuse the repository's framework, components, tokens, and data-access patterns.
- For a standalone deliverable, choose the smallest format that supports the required interaction.
Create the information hierarchy
- Put global filters and freshness near the top.
- Show a small set of decision-critical KPIs first.
- Follow with trends, comparisons, breakdowns, and detailed records.
- Keep related controls beside the view they affect.
Choose visual forms
- Line: change over ordered time.
- Bar: comparison across categories.
- Scatter: relationship or outliers.
- Distribution: spread and concentration.
- Table: exact values, dense comparison, or operational action.
- Progress: bounded completion against a known target.
Implement states
- Loading, empty, error, stale, and permission-limited states must preserve layout.
- Filters must have visible active values and a clear reset path.
- Tooltips must add detail, not carry essential meaning.
Verify
- Test realistic long labels, zero values, negative values, and missing values.
- Check desktop and mobile widths.
- Confirm keyboard access, focus visibility, contrast, and non-color status cues.
- Validate calculations against the source data.
- Inspect the rendered dashboard for clipping, overlap, and layout shift.
Presentation Rules
- Use restrained surfaces and compact spacing appropriate to operational software.
- Keep cards for individual metrics or repeated records; do not wrap every section in a card.
- Use consistent scales across charts that users will compare.
- Start numeric axes at zero for bars unless a different baseline is explicitly justified.
- Show units in labels or values, not only in explanatory text.
- Avoid decorative graphics that compete with the data.
- Keep table headers visible and align numbers for comparison.
Delivery
Provide:
- the runnable dashboard or edited application;
- the data assumptions and metric definitions;
- the preview path or local URL;
- the viewport and interaction checks performed;
- any unavailable live data or unresolved integration requirement.
Runtime Notes
- Resolve files from the active workspace and keep generated assets local.
- Use installed icon and chart libraries when the existing project already depends on them.
- For a standalone dashboard, avoid unnecessary network dependencies.
- Preserve compatibility with both Codex, Hermes, and Claude by checking available tools before invoking runtime-specific features.
1---2name: dashboard-creator3description: Design, build, and verify practical dashboards for KPIs, trends, comparisons, status monitoring, filters, charts, and operational decisions.4---56# Rylai Dashboard Creator78Build the working dashboard as the primary experience. Optimize for scanning, comparison, and repeated use.910## Establish The Metric Contract1112For each metric, determine:1314- exact definition and unit;15- source and refresh time;16- aggregation level and time window;17- comparison baseline;18- whether higher or lower is desirable;19- states for missing, delayed, partial, and invalid data.2021Do not invent values to make a screen look complete. Clearly label sample data when a prototype requires it.2223## Build Workflow24251. **Inspect the target**26 - Reuse the repository's framework, components, tokens, and data-access patterns.27 - For a standalone deliverable, choose the smallest format that supports the required interaction.28292. **Create the information hierarchy**30 - Put global filters and freshness near the top.31 - Show a small set of decision-critical KPIs first.32 - Follow with trends, comparisons, breakdowns, and detailed records.33 - Keep related controls beside the view they affect.34353. **Choose visual forms**36 - Line: change over ordered time.37 - Bar: comparison across categories.38 - Scatter: relationship or outliers.39 - Distribution: spread and concentration.40 - Table: exact values, dense comparison, or operational action.41 - Progress: bounded completion against a known target.42434. **Implement states**44 - Loading, empty, error, stale, and permission-limited states must preserve layout.45 - Filters must have visible active values and a clear reset path.46 - Tooltips must add detail, not carry essential meaning.47485. **Verify**49 - Test realistic long labels, zero values, negative values, and missing values.50 - Check desktop and mobile widths.51 - Confirm keyboard access, focus visibility, contrast, and non-color status cues.52 - Validate calculations against the source data.53 - Inspect the rendered dashboard for clipping, overlap, and layout shift.5455## Presentation Rules5657- Use restrained surfaces and compact spacing appropriate to operational software.58- Keep cards for individual metrics or repeated records; do not wrap every section in a card.59- Use consistent scales across charts that users will compare.60- Start numeric axes at zero for bars unless a different baseline is explicitly justified.61- Show units in labels or values, not only in explanatory text.62- Avoid decorative graphics that compete with the data.63- Keep table headers visible and align numbers for comparison.6465## Delivery6667Provide:6869- the runnable dashboard or edited application;70- the data assumptions and metric definitions;71- the preview path or local URL;72- the viewport and interaction checks performed;73- any unavailable live data or unresolved integration requirement.7475## Runtime Notes7677- Resolve files from the active workspace and keep generated assets local.78- Use installed icon and chart libraries when the existing project already depends on them.79- For a standalone dashboard, avoid unnecessary network dependencies.80- Preserve compatibility with both Codex, Hermes, and Claude by checking available tools before invoking runtime-specific features.