docs: add us-cpa openclaw installation guide

This commit is contained in:
Stefano Fiorini
2026-03-15 03:31:52 -05:00
parent 1be0317192
commit 9f650faf88
5 changed files with 93 additions and 1 deletions

View File

@@ -3,6 +3,11 @@ set -euo pipefail
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
SKILL_DIR="$(cd "${SCRIPT_DIR}/.." && pwd)"
PYTHON_BIN="${SKILL_DIR}/.venv/bin/python"
export PYTHONPATH="${SKILL_DIR}/src${PYTHONPATH:+:${PYTHONPATH}}"
exec python3 -m us_cpa.cli "$@"
if [[ ! -x "${PYTHON_BIN}" ]]; then
PYTHON_BIN="python3"
fi
exec "${PYTHON_BIN}" -m us_cpa.cli "$@"