Wire Warp config symlinks on Windows (Mac-only setup story misses %LOCALAPPDATA%) #11
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally filed by @coilysiren on 2026-05-20T05:11:27Z - https://github.com/coilysiren/agentic-os/issues/99
Problem
On Windows, Warp reads its config from
%LOCALAPPDATA%\warp\Warp\config\(Git Bash form:/c/Users/$USER/AppData/Local/warp/Warp/config/), not~/.warp/. The setup story inREADME.mdanddocs/FEATURES.mdonly documents the Mac path (ln -sf "$PWD/warp/settings.toml" ~/.warp/settings.toml), so the symlinks never get created on Windows boxes unless done by hand.agentic-os-kai/setup.shonly walks skill dirs, not the Warp config tree, so it does not fill the gap either.Symptom
Caught on my personal Windows machine.
settings.tomlat the Windows Warp config dir was a regular 3596-byte file (canonical is 5600 bytes), andtab_configs/+themes/subdirs did not exist at the Windows target at all. UI features driven by canonical settings (vertical tabs, block-mode behavior, sombra theme, redaction regex list) were silently running on stale defaults.Fixed by hand this session - backed up
settings.tomltosettings.toml.bak.20260519-220900and symlinked all three files:Proposal
Teach the setup story (and ideally a script) about the Windows Warp path. Either extend
agentic-os-kai/setup.shor addagentic-os/scripts/wire-warp.shthat:~/.warp/on macOS,$LOCALAPPDATA/warp/Warp/config/on Windows (useMSYS=winsymlinks:nativestrictfor native symlinks; Developer Mode required, same as the existing skills sweep). Linux Warp path TBD.README.md,docs/FEATURES.md, andtooling-warpSKILL.md to show both OS paths instead of claiming~/.warp/is universal.