DJ_explain setup#238
Merged
Merged
Conversation
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.
This pull request introduces a major revamp of the user onboarding and explanation experience for the DataJourney project, focusing on making workflows more discoverable, explainable, and user-friendly. The changes add a new CLI command (
explain) that provides detailed, validated explanations for each workflow, and significantly rewrite theREADME.mdto orient new users around the design philosophy, usage, and extensibility of DataJourney. Additional improvements ensure that the CLI and package are easier to install, use, and extend.CLI and User Experience Enhancements:
explaincommand to the CLI, allowing users to get detailed explanations of workflows, filter by category, validate the workflow catalog, and list available workflows. This command is now also available as a console script (datajourney explain). [1] [2] [3] [4]Documentation and Onboarding:
README.mdto provide a design-first introduction, clearer quickstart instructions, a detailed explanation of the design philosophy, and a breakdown of available workflows and building blocks. The new README emphasizes the explainability layer and provides visual guides and contribution tips.Packaging and Distribution:
setup.pyto include the new CLI (cli.py) as a module, register thedatajourneyconsole script, and ensure workflow metadata is included as package data, making installation and extension easier.Task Automation:
DJ_explain) to run the workflow explanation CLI, aligning automation with the new onboarding flow.These changes together make DataJourney more accessible for new users, easier to extend for contributors, and more robust in terms of workflow discoverability and explanation.
Most important changes:
1. CLI and Workflow Explanation Improvements
explainCLI command with options for workflow detail, category filtering, listing, and catalog validation; integrated error handling and helpful suggestions for users. (cli.py,setup.py,pixi.toml) [1] [2] [3] [4]datajourneyconsole script, making it directly accessible after installation. (setup.py)2. Documentation Overhaul
README.mdto focus on the design philosophy, onboarding, workflow explanation, and extensibility, including new visual guides and clearer contribution paths. (README.md)3. Packaging and Task Automation
DJ_explainPixi task for running the CLI explanation tool. (setup.py,pixi.toml) [1] [2]These updates together provide a much improved first-run experience and pave the way for easier contributions and workflow discovery.