Add comprehensive documentation structure for user success journeys#25
Draft
Add comprehensive documentation structure for user success journeys#25
Conversation
- Improved README with clear 3-mode explanation and security notes - Created docs/index.md as documentation hub with UI map - Created docs/schema.md with complete ChartSpec field reference - Created docs/architecture.md with pipeline diagram and renderer guide - Created docs/datasets.md with dataset management and demo gallery - Created docs/testing.md with Playwright testing guide - Created docs/deployment.md with GitHub Pages deployment guide - All documentation includes "What you'll learn" sections - Documented failure modes for each area - All examples use relative URLs for Pages compatibility Co-authored-by: evcatalyst <8740078+evcatalyst@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Enhance documentation for browser-based charting tool
Add comprehensive documentation structure for user success journeys
Dec 29, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.