You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(platform): make template directory NTFS-safe for Windows support
The template directory name `{{cookiecutter.project_name|replace(" ", "")}}`
contained pipe (`|`) and double-quote (`"`) characters which are illegal on
NTFS. This prevented Windows users from cloning the repo via
`cookiecutter gh:zenable-io/ai-native-python`.
Rename to `{{cookiecutter.project_name}}` and add pre-gen hook validation
to reject spaces in project names (use hyphens instead). This eliminates
the need for the extract_template_zip.py workaround and lets Windows CI
do a normal checkout.
Also adds Windows install instructions (winget) to README and guards
`brew upgrade` commands with OS checks in Taskfiles.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
0 commit comments