Stars
125
Forks
11
Watchers
125
Open Issues
1
Overall repository health assessment
No package.json found
This might not be a Node.js project
2
commits
v0.0.4:修复Windows 10下shutil.which返回无扩展名文件导致WinError 193的问题。当shutil.which返回无扩展名的POSIX shell script时,在同目录搜索.cmd/.bat/.exe/.com替代文件;添加.com到可执行扩展名列表;限制搜索范围在同目录防止路径劫持。
8772527View on GitHubv0.0.3:修复Windows 11下codex CLI无法执行的问题。添加_get_windows_npm_paths获取npm全局安装路径;_augment_path_env将npm路径注入PATH环境变量(大小写不敏感);_resolve_executable显式解析.cmd/.bat/.exe可执行文件;使用cmd.exe /d /s /c包装批处理文件执行;_cmd_quote安全转义shell元字符(%→%%、^→^^、"→"^"");添加errors='replace'防止非UTF-8输出崩溃;简化windows_escape仅处理换行符。
f3caa33View on GitHubv0.0.2:修复Windows平台stdout编码问题。添加configure_windows_stdio函数,在Windows下强制stdout/stderr使用UTF-8编码,解决输出Unicode字符时的编码错误;兼容Python 3.7+,低版本静默跳过。
7994eb4View on GitHubv0.0.1:修复Python 3.8+类型注解兼容性问题。添加from __future__ import annotations解决queue.Queue泛型下标运行时错误;将list[str]改为List[str]、str | None改为Optional[str];移动import re至文件顶部。
2da5471View on GitHub