skill-v3.1.1
pbakaus/impeccableskill-v3.1.1May 14, 2026by pbakaus
AI Summary
Fixes a Windows compatibility issue preventing the critique command from running correctly on that platform.
Key Highlights
- The `/impeccable critique` command now works on Windows.
- Fix for path comparison in `critique-storage.mjs`.
New Features
- Cross-platform path handling using `pathToFileURL`.
- Fix for snapshot save skipping on Windows.
Full Release Notes
- **`/impeccable critique` works on Windows.** The CLI entry-point check in `critique-storage.mjs` compared `import.meta.url` against a hand-built `file://` string, which silently failed on Windows because Node returns forward slashes in `import.meta.url` but backslashes in `process.argv[1]`. The script exited 0 with no output and the snapshot save was skipped. Switched to `pathToFileURL`, the standard cross-platform pattern. Reported by [@Genmutant](https://github.com/Genmutant) in [#155](https://github.com/pbakaus/impeccable/issues/155) with a precise side-by-side diagnosis of the path mismatch.