v2.7.1 - Dynamic Python Detection Fix
What's Fixed
Dynamic Python Command Detection (Issue #41)
The hardcoded python3 command has been replaced with dynamic detection that works on all platforms.
Before (broken on Windows/Anaconda)
python3 script.pyAfter (works everywhere)
# Linux/macOS (auto-detects python3 or python)
$(command -v python3 || command -v python) script.py# Windows PowerShell
python script.pyFiles Updated
skills/planning-with-files/SKILL.md.codex/skills/planning-with-files/SKILL.md.cursor/skills/planning-with-files/SKILL.md.kilocode/skills/planning-with-files/SKILL.md.opencode/skills/planning-with-files/SKILL.md
Platform Compatibility
| Environment | python |
python3 |
Status |
|---|---|---|---|
| Linux/macOS (modern) | Python 3 | Python 3 | ✅ Works |
| Linux/macOS (legacy) | Python 2 | Python 3 | ✅ Works |
| Windows + Anaconda | Python 3 | May not exist | ✅ Works |
| Windows (default) | Python 3 | May not exist | ✅ Works |
Thanks
Full Changelog: v2.7.0...v2.7.1