docs: add us-cpa openclaw installation guide
This commit is contained in:
@@ -17,6 +17,35 @@ Without installing, the repo-local wrapper works directly:
|
||||
skills/us-cpa/scripts/us-cpa --help
|
||||
```
|
||||
|
||||
## OpenClaw installation
|
||||
|
||||
To install the skill for OpenClaw itself, copy the repo skill into the workspace skill directory and install its Python dependencies there.
|
||||
|
||||
1. Sync the repo copy into the workspace:
|
||||
|
||||
```bash
|
||||
rsync -a --delete \
|
||||
/Users/stefano/.openclaw/workspace/projects/stef-openclaw-skills/skills/us-cpa/ \
|
||||
/Users/stefano/.openclaw/workspace/skills/us-cpa/
|
||||
```
|
||||
|
||||
2. Create a workspace-local virtualenv and install the package:
|
||||
|
||||
```bash
|
||||
cd /Users/stefano/.openclaw/workspace/skills/us-cpa
|
||||
python3 -m venv .venv
|
||||
. .venv/bin/activate
|
||||
pip install -e .[dev]
|
||||
```
|
||||
|
||||
3. Verify the installed workspace wrapper:
|
||||
|
||||
```bash
|
||||
~/.openclaw/workspace/skills/us-cpa/scripts/us-cpa --help
|
||||
```
|
||||
|
||||
The wrapper prefers `.venv/bin/python` inside the skill directory when present, so OpenClaw can run the workspace copy without relying on global Python packages.
|
||||
|
||||
## Current Milestone
|
||||
|
||||
Current implementation now includes:
|
||||
|
||||
Reference in New Issue
Block a user