docs: add how pixi works section with mermaid diagram#5887
Open
EfeAkkus wants to merge 2 commits intoprefix-dev:mainfrom
Open
docs: add how pixi works section with mermaid diagram#5887EfeAkkus wants to merge 2 commits intoprefix-dev:mainfrom
EfeAkkus wants to merge 2 commits intoprefix-dev:mainfrom
Conversation
ruben-arts
reviewed
Apr 13, 2026
Comment on lines
+28
to
+37
| ```mermaid | ||
| flowchart TB | ||
| add[pixi add] -->|writes| toml[pixi.toml] | ||
| toml -->|reads| lock[pixi lock] | ||
| lock -->|writes| lockfile[pixi.lock] | ||
| lockfile -->|reads| install[pixi install] | ||
| install -->|writes| env[.pixi/] | ||
| run[pixi run] -.->|auto-triggers| install | ||
| install -.->|auto-triggers| lock | ||
| ``` |
Contributor
There was a problem hiding this comment.
I don't think this is a clean enough diagram to really explain how things interact with each other.
It comes very close to the information trying to convey in this pr: #5881
Assuming you're both at the PyCon sprints. Maybe you two could discuss?
I simplified the diagram to make it cleaner and easier to read. Here is the updated version: - Changed the layout from top-to-bottom to left-to-right - Removed the extra auto-triggers arrow to reduce complexity - Made it clearer which boxes are commands and which are files
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.
Description
Fixes #{issue}
How Has This Been Tested?
AI Disclosure
Tools: {e.g., Claude, Codex, GitHub Copilot, ChatGPT, etc.}
Checklist:
schema/model.py.