VS Code Extension 2026.x — Files No Longer Written to Disk (VFS Change Breaks AI Tool Integration)
Environment
Description
After updating the VS Code extension from 5.6.x to 2026.2.x we noticed a breaking change in how script files are handled locally.
Previous behavior (≤5.6.x): The extension fetched scripts from the PSU server via REST API and wrote them as real files to: %AppData%\Local\Temp\.universal.code.script\
This allowed external tools (file watchers, AI coding assistants, search tools) to discover, read, and update the files on disk.
Current behavior (2026.x): The extension now uses VS Code's Virtual File System (VFS) API. Files are served in-memory and are never written to disk. The temp folder is no longer populated.
Impact
This change breaks the integration with AI coding assistants such as Claude Code (and likely GitHub Copilot Workspace, Cursor, etc.). These tools rely on real file paths to:
With the VFS approach, the AI tool cannot find the files, cannot read them, and cannot apply suggested edits directly — the round-trip has to go through manual copy-paste.
Additionally, the previous workflow of "edit in VS Code → test on DEV server" was instant. With VFS-only files, any change now requires an additional Git sync cycle to get the file onto the DEV server, which significantly increases iteration time.
Request / Question