docs: replace all uv pip commands with uv add#1242
Merged
Conversation
replaced all occurrences of `uv pip install` with `uv add` throughout documentation and examples. `uv pip` is forbidden per project guidelines. changes: - README.md: changed to `uv add marvin` and added PyPI link - docs/installation.mdx: removed `uv pip install` line - docs/patterns/memory.mdx: changed all extras installation to use `uv add` - examples/slackbot/README.md: simplified to use `uv sync --extra slackbot` 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR updates documentation to use modern uv commands instead of deprecated uv pip commands, aligning with current best practices for the uv package manager.
- Replaced
uv pip installwithuv addacross documentation - Removed redundant virtual environment setup instructions in favor of streamlined
uv sync - Updated installation examples to reflect current
uvusage patterns
Reviewed Changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| examples/slackbot/README.md | Simplified local development setup by replacing manual venv creation and uv pip install with uv sync --extra slackbot |
| docs/patterns/memory.mdx | Updated all memory provider installation commands from uv pip install to uv add |
| docs/installation.mdx | Removed redundant uv pip install example, keeping only uv add commands |
| README.md | Updated main installation command from uv pip install to uv add and added PyPI reference |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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.
summary
eliminates all
uv pipusage from documentation and examples, replacing with properuv addoruv synccommandsbackground
per project guidelines,
uv pipis forbidden. all dependency management should useuv add,uv sync, oruv run. the README and docs were still recommendinguv pip installwhich is incorrect.changes
uv pip install marvintouv add marvinand added PyPI linkuv pip installlineuv pip installtouv adduv pip install -e ".[slackbot]" -Utouv sync --extra slackbotverification
ran
rg "uv pip"across all md and py files - zero matches found🤖 Generated with Claude Code