GPT-5 finding
Integration guide examples use quoted ~ which prevents tilde expansion, likely breaking paths
lowdocs-gaphigh
- bankr-signals/references/integration.md:13-14
Putting ~ inside double quotes prevents shell tilde expansion, leaving literal paths that won’t resolve. Users copying these snippets may get file-not-found errors.
Recommendation
Update docs to use unquoted ~ (BANKR=~/.openclaw/...) or use $HOME for portability: BANKR="$HOME/.openclaw/skills/bankr/scripts/bankr.sh".