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 v1.0.112 Home All releases olderv1.0.111 v1.0.113newer
Claude Code v1.0.112

skill.md File Support

What: Organize multiple commands in a directory under a single skill.md file How to use:

# Create a directory with related commands
mkdir my-commands/
echo "# My Skill" > my-commands/skill.md
echo "command content" > my-commands/command1.md

# Claude Code will now treat all .md files in this directory as part of the skill

Details:

  • When multiple command files exist in a directory with a skill.md file, Claude Code prioritizes the skill.md
  • Case-insensitive matching (skill.md, Skill.md, SKILL.MD all work)
  • Helps organize complex command structures hierarchically
  • Evidence: uM0() at line 424817 and pZ5() at line 424820 in v1.0.112

See this entry in the whole of v1.0.112 →