Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ source .venv/bin/activate

# Install in development mode with all dev dependencies
make install
# or: pip install -e ".[dev]"
# or: uv pip install -e ".[dev]"
```

### Dev Mode
Expand Down Expand Up @@ -144,7 +144,7 @@ Releases are published to:

3. **Build Tools**: Install Python build and upload tools:
```bash
pip install build twine
uv tool install build twine
```

### Release Process
Expand Down Expand Up @@ -203,11 +203,11 @@ After publishing, test the installed experience in a fresh environment:

```bash
# Create a fresh test environment
python -m venv /tmp/test-paude
uv venv /tmp/test-paude
source /tmp/test-paude/bin/activate

# Install from PyPI
pip install paude
uv pip install paude

# Test basic commands
paude --version
Expand Down
12 changes: 2 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ _Video walkthrough coming soon. Follow the Quick Start below to try it yourself.
### Install

```bash
pip install paude
uv tool install paude
```

> **First run**: Paude pulls container images on first use. This takes a few minutes; subsequent runs start immediately.
Expand Down Expand Up @@ -117,15 +117,7 @@ Your Machine Container
- **`--yolo` is safe** because network filtering blocks Claude from sending data to arbitrary URLs
- Claude can only reach Vertex AI (for the API) and PyPI (for packages) by default

## Installation

### Using pip

```bash
pip install paude
```

### From source
## Install from source

```bash
git clone https://github.com/bbrowning/paude
Expand Down