Add comprehensive documentation structure for user success journeys #25
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
ChartSpec lacked structured documentation for key workflows: quick browser trials, dataset integration, schema understanding, and deployment. Users had to piece together information from scattered README sections.
Changes
Documentation Hub (
docs/index.md)Schema Reference (
docs/schema.md)Architecture Guide (
docs/architecture.md)Dataset Management (
docs/datasets.md)Testing Guide (
docs/testing.md)__TEST_MODE__flag usageDeployment Guide (
docs/deployment.md)README Updates
Example: ChartSpec with Filters and Aggregation
{ "chartType": "bar", "x": "Region", "y": "Revenue", "filters": [ { "type": "array", "column": "Region", "values": ["North", "South"] }, { "type": "op", "column": "Revenue", "operator": ">", "value": 1000 } ], "groupBy": { "columns": ["Region"], "aggregations": { "Revenue": { "func": "sum" } } }, "sort": { "column": "Revenue", "order": "desc" }, "limit": 10 }All documentation uses relative URLs for GitHub Pages compatibility and includes failure mode sections.
Original prompt
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.