1 ファイル変更+2-0
この更新の概要
CLAUDE.mdにおけるインポート解析の動作が改善され、Markdownのコードスパンやフェンス内の記述が無視されるようになりました。特定のファイルをインポートさせずにパス名だけを記載したい場合は、バッククォートで囲むことでリテラルとして扱われます。この変更により、ドキュメント内の技術解説と実際のファイル読み込み動作を明確に区別できるようになりました。
@@ -95,6 +95,8 @@ CLAUDE.md files can import additional files using `@path/to/import` syntax. Impo
Both relative and absolute paths are allowed. Relative paths resolve relative to the file containing the import, not the working directory. Imported files can recursively import other files, with a maximum depth of four hops.
Import parsing skips Markdown code spans and fenced code blocks. To mention a path in your CLAUDE.md without importing it, wrap it in backticks: writing `` `@README` `` keeps the text literal, while `@README` outside backticks imports the file.
To pull in a README, package.json, and a workflow guide, reference them with `@` syntax anywhere in your CLAUDE.md:
```text