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.0.28 Home All releases olderv2.0.27 v2.0.29newer
Claude Code v2.0.28

Marketplace Branch/Tag Support

What: Marketplaces can now be installed from specific branches, tags, or commit refs instead of only the default branch.

How to use:

# Install from a specific branch
claude marketplace add owner/repo#develop

# Install from a tag
claude marketplace add owner/repo#v1.2.3

# Install from a commit hash
claude marketplace add [email protected]:owner/repo.git#abc123

Details:

  • Use #ref syntax after the repository name or URL to specify a branch, tag, or commit
  • Updates to existing marketplaces now respect the specified ref
  • Git clone operations include the --branch flag when a ref is specified (Xd8() at line 264036, b5Q() at line 264043, Cd8() at line 264049)
  • Git update operations fetch and checkout the specified ref (Bd8() at line 263476)
  • Clone and update logging now shows which ref is being used
  • Evidence: New functions Xd8() at line 264036, Bd8() at line 263476, b5Q() at line 264043, Cd8() at line 264049; marketplace parsing extracts ref from URLs at line 263078-263135

See this entry in the whole of v2.0.28 →