Skip to content

Commit bbc2406

Browse files
committed
Add instructions for running deepwork CLI in web environment
1 parent 2dd377e commit bbc2406

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

claude.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,27 @@ uv sync # Install dependencies
7373
uv run pytest # Run tests
7474
```
7575

76+
## Running DeepWork CLI (Claude Code Web Environment)
77+
78+
When running in Claude Code on the web (not local installations), the `deepwork` CLI may not be available. To run DeepWork commands:
79+
80+
```bash
81+
# Install the package in editable mode (one-time setup)
82+
pip install -e .
83+
84+
# Then run commands normally
85+
deepwork install --platform claude
86+
deepwork sync
87+
```
88+
89+
Alternatively, without installing:
90+
```bash
91+
# Set PYTHONPATH and run via Python
92+
PYTHONPATH=src python -c "from deepwork.cli.main import cli; cli()" install --platform claude
93+
```
94+
95+
**Note**: In web environments, you may also need to install dependencies like `jsonschema`, `pyyaml`, `gitpython`, `jinja2`, and `click` if they're not already available.
96+
7697
## How DeepWork Works
7798

7899
### 1. Installation

0 commit comments

Comments
 (0)