Opus
Docstring usage strings reference non-existent .sh wrappers
- symbiosis/scripts/symbiosis-quote.py:4-6
- symbiosis/scripts/symbiosis-swap.py:4-7
- symbiosis/SKILL.md:36-46
The Python files are named `.py` and SKILL.md correctly invokes them as `.py`, but the `__doc__` printed when arg-count validation fails tells the user to run `./symbiosis-quote.sh` / `./symbiosis-swap.sh`. There are no `.sh` wrappers in the slice. Users who misuse the script will be told to run a non-existent file. This is a misleading message produced exactly at the error path, which is the worst place for it.
Recommendation
Update docstrings to say `symbiosis-quote.py` / `symbiosis-swap.py`.