Releases: sheeki03/Few-Word
Releases · sheeki03/Few-Word
v1.3.10
Fixed
- Smarter Python detection: Changed hook command pattern from
python3 script 2>/dev/null || python scripttocommand -v python3 >/dev/null && python3 script || python script. This prevents falling back topythonwhen the script itself fails, showing proper error messages instead of "python: command not found".
v1.3.9
Fixed
- Cross-platform commands: Rewrote
/initand/updatecommands to use Python withpathlibinstead of bash-only commands (mkdir -p,rm -rf,find). Now works on Windows without bash. - Python fallback: All inline Python uses
python3 ... || python ...pattern for cross-platform compatibility. - Hook matchers: Removed
matcherfrom SessionStart/SessionEnd/Stop hooks per Claude Code documentation.
v1.3.8
v1.3.7
Fixed
- Background command UI freeze: Skip FewWord wrapping for
run_in_backgroundcommands. When background commands fail/timeout (exit 143), Claude Code displays the command - showing the full ~100-line wrapper script would freeze the UI and break scrolling.
v1.3.6
Bug Fixes
- #16: Fixed EOF error in SessionEnd hook by replacing bash one-liner with cross-platform Python script (
archive_plan.py) - #17: Added automatic cleanup of orphaned temp files (
*_tmp.txt) insmart_cleanup.py- removes temp files older than 5 minutes on session start
Platform Support
Both fixes work identically on Windows, macOS, and Linux.