Source Intelligence

DisclaimerUnofficial, and not affiliated with Anthropic. Nearly all of this is read straight out of what ships: npm bundles, captured prompts, published docs. Anthropic's own notes go in verbatim, marked as theirs. The rest is my reading, and every entry carries the strings behind it. If one looks wrong, vote it down and say why.

All of v2.1.169 Home All releases olderv2.1.168 v2.1.170newer

Windows Sandbox Network Filtering (WFP / srt-win)

What

Full Windows Filtering Platform (WFP) integration for the Windows sandbox using the srt-win tool. Enables per-process network isolation via Windows discriminator groups and WFP filters, analogous to the macOS sandbox's network control.

Usage
// In settings.json (windows-specific):
{
  "windows": {
    "groupName": "my-sandbox-group",
    "groupSid": "S-1-...",
    "sublayerGuid": "..."
  }
}
Details
  • Requires a one-time installation: npx sandbox-runtime windows-install (triggers one UAC prompt)
  • After install, you must log out and back in so the discriminator group SID enters your token
  • While the group SID is absent from your token, WFP filter-0 PERMITs all traffic — no connectivity disruption during setup
  • Default proxy port range is 60080–60089 (configurable); must match the range passed to srt-win wfp install
  • --group-sid overrides groupName lookup — use for domain environments where name resolution is unreliable
  • SRT_WIN_PATH environment variable overrides the srt-win.exe search path
  • Windows sandbox commands now run via srt-win exec instead of directly through cmd/PowerShell
Evidence

srt-win integration (search for "srt-win.exe" or "Windows sandbox needs a one-time install") — $38(), YD7(), Oh6() at line ~241773

Strings lifted out of the shipped bundle, so the claim above can be checked against them.

See this entry in the whole of v2.1.169 →