Rylai Data Analyzer
Turn supplied data into supported conclusions. Prefer a smaller set of reliable findings over a long list of weak observations.
Analysis Workflow
Clarify the question
- Identify the decision, target metric, comparison, population, and time window.
- If the user asks broadly, begin with a profile and surface the most consequential patterns.
Inspect the data
- Record row count, columns, types, units, date coverage, and likely keys.
- Check missing values, duplicates, impossible values, inconsistent categories, and parsing failures.
- Preserve the original data and make exclusions visible.
Create trustworthy summaries
- Use counts and rates for categorical data.
- Use center, spread, range, and quantiles for numeric data.
- Segment results only where group sizes and definitions remain meaningful.
- Use robust statistics when outliers make ordinary averages misleading.
Investigate
- Compare periods, groups, or cohorts relevant to the question.
- Examine trend, seasonality, concentration, relationships, and anomalies.
- Test alternative explanations before calling a pattern important.
Interpret
- Separate observed facts from inference.
- Quantify magnitude and denominator, not only percentage change.
- State uncertainty, sample limitations, and data-quality risks.
- Do not claim causation without a design that supports it.
Verify
- Recalculate important totals independently.
- Check that filters, joins, units, and date boundaries match the stated scope.
- Trace each headline finding back to a reproducible calculation.
Output Contract
Return a compact report with:
Scope
Question, data source, period, record count, and filters.
Data Quality
Missingness, duplicates, exclusions, parsing issues, and material caveats.
Findings
For each finding, provide the value, comparison, denominator, and why it matters.
Recommended Actions
Tie actions to evidence and distinguish immediate decisions from further analysis.
Methods
List calculations, statistical assumptions, and transformations needed to reproduce the result.
Use tables or charts only when they make comparison easier. Never fabricate missing observations or silently replace them with zeros.
Runtime Notes
- Use the runtime's structured data and spreadsheet tools when available.
- Inspect generated tables and charts before reporting completion.
- Keep temporary analysis artifacts separate from user-facing deliverables.
- State clearly when the dataset is too incomplete to support the requested conclusion.
1---2name: data-analyzer3description: Inspect datasets, calculate trustworthy summaries, identify patterns and anomalies, and explain decision-relevant findings with explicit assumptions.4---56# Rylai Data Analyzer78Turn supplied data into supported conclusions. Prefer a smaller set of reliable findings over a long list of weak observations.910## Analysis Workflow11121. **Clarify the question**13 - Identify the decision, target metric, comparison, population, and time window.14 - If the user asks broadly, begin with a profile and surface the most consequential patterns.15162. **Inspect the data**17 - Record row count, columns, types, units, date coverage, and likely keys.18 - Check missing values, duplicates, impossible values, inconsistent categories, and parsing failures.19 - Preserve the original data and make exclusions visible.20213. **Create trustworthy summaries**22 - Use counts and rates for categorical data.23 - Use center, spread, range, and quantiles for numeric data.24 - Segment results only where group sizes and definitions remain meaningful.25 - Use robust statistics when outliers make ordinary averages misleading.26274. **Investigate**28 - Compare periods, groups, or cohorts relevant to the question.29 - Examine trend, seasonality, concentration, relationships, and anomalies.30 - Test alternative explanations before calling a pattern important.31325. **Interpret**33 - Separate observed facts from inference.34 - Quantify magnitude and denominator, not only percentage change.35 - State uncertainty, sample limitations, and data-quality risks.36 - Do not claim causation without a design that supports it.37386. **Verify**39 - Recalculate important totals independently.40 - Check that filters, joins, units, and date boundaries match the stated scope.41 - Trace each headline finding back to a reproducible calculation.4243## Output Contract4445Return a compact report with:4647### Scope4849Question, data source, period, record count, and filters.5051### Data Quality5253Missingness, duplicates, exclusions, parsing issues, and material caveats.5455### Findings5657For each finding, provide the value, comparison, denominator, and why it matters.5859### Recommended Actions6061Tie actions to evidence and distinguish immediate decisions from further analysis.6263### Methods6465List calculations, statistical assumptions, and transformations needed to reproduce the result.6667Use tables or charts only when they make comparison easier. Never fabricate missing observations or silently replace them with zeros.6869## Runtime Notes7071- Use the runtime's structured data and spreadsheet tools when available.72- Inspect generated tables and charts before reporting completion.73- Keep temporary analysis artifacts separate from user-facing deliverables.74- State clearly when the dataset is too incomplete to support the requested conclusion.