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.58 Home All releases olderv2.1.56 v2.1.59newer
Claude Code v2.1.58

Windows path support for marketplace sources

What

On Windows, you can now use native Windows-style paths (backslash separators and drive letters) when adding a marketplace source via the interactive UI or CLI.

Usage
# These now work on Windows (in addition to Unix-style paths):
claude marketplace add .\my-skills
claude marketplace add ..\shared-skills
claude marketplace add C:\Users\me\skills
Details
  • Adds recognition of .\, ..\, and drive-letter paths (e.g., C:\) when process.platform is "win32"
  • Unix-style paths (./, ../, /, ~) continue to work on all platforms
  • The resolved path must point to a directory or a .json file (e.g., marketplace.json)
Evidence

Marketplace source parser (search for startsWith(".\\") and [a-zA-Z]:[/\\]) — $v1() at line ~472168

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.58 →