[Q&A] Codex Windows CLI error #956
-
What kind of help do you need?Installation or setup Your question
I have not used Environment and context
What have you already tried?The preview command fails before generating an npm exec --yes --ignore-scripts `
--package=agentic-awesome-skills@15.1.0 -- `
aas mcp configure `
--host codex `
--scope user `
--config "$CodexConfig" `
--cache-root "$AasCache"Result: {
"catalogSchemaVersion": "2.0.0",
"category": "filesystem",
"code": "AAS_ADAPTER_WINDOWS_ACL_FAILED",
"coreVersion": "2.0.0",
"details": {
"status": 1
},
"ok": false,
"protocolVersion": "2025-06-18",
"schemaVersion": 1,
"status": "error"
}
icacls "$AasCache" /inheritance:r
icacls "$AasCache" /grant:r "${CurrentUser}:(OI)(CI)F"The resulting cache ACL contains only the current user with Full Control. Before posting
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
|
Fixed on The failure was in the Windows ACL bridge: it passed sensitive paths through the PowerShell command boundary, eagerly translated every ACE identity, and then discarded the inspected path/phase diagnostics when Important release note: |
Beta Was this translation helpful? Give feedback.
-
|
Released in agentic-awesome-skills 15.3.0 and now available on npm latest. The native Windows Codex ACL preview fix from #964 is included. Please retry with the exact 15.3.0 runtime; as before, only pass --approve after preview returns its approval digest. Release: https://github.com/sickn33/agentic-awesome-skills/releases/tag/v15.3.0 |
Beta Was this translation helpful? Give feedback.
Fixed on
mainin #964, with the generated plugin state synchronized by #966.The failure was in the Windows ACL bridge: it passed sensitive paths through the PowerShell command boundary, eagerly translated every ACE identity, and then discarded the inspected path/phase diagnostics when
Get-Aclor identity translation failed. The adapter now passes paths through a sanitized environment, handles unresolved inherited ACE identities without crashing translation, and returns boundedpath,phase,status, and diagnostic fields. Regression coverage was added for the exact Windows failure mode.Important release note:
agentic-awesome-skills@15.2.0is still the currently published npm version and t…