polyclaw
Trading-enabled Polymarket skill for OpenClaw - browse markets, execute trades, track positions, discover hedges
File Explorer
- __init__.py
- clob_client.py
- contracts.py
- coverage.py
- gamma_client.py
- llm_client.py
- position_storage.py
- wallet_manager.py
- hedge.py
- markets.py
- polyclaw.py
- positions.py
- redeem.py
- trade.py
- wallet.py
- .gitignore
- LICENSE
- pyproject.toml
- README.md
- SKILL.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
uv run
View Details ▼
uv run
Run a command or script in the project environment.
uv run {{path/to/script.py}}
Run a Python script:
uv run {{[-m|--module]}} {{module_name}}
Run a Python module:
uv run {{[-w|--with]}} {{package}} {{command}}
Run a command with additional packages installed temporarily:
uv sync
View Details ▼
uv sync
Update the project's environment to match the lockfile.
uv sync
Sync the project environment with the lockfile:
uv sync --all-extras
Sync and include all optional dependencies:
uv sync --extra {{extra_name}}
Sync with specific optional dependencies:
