From 9a06d7760f1e6df44875472d4c2ce28d4f812a07 Mon Sep 17 00:00:00 2001 From: Marcus Grando Date: Wed, 15 Apr 2026 23:05:52 -0300 Subject: [PATCH] fix: remove trailing newline from CLAUDE.md symlink target The CLAUDE.md symlink was committed with a trailing newline in its target path (b'AGENTS.md\n' instead of b'AGENTS.md'). This caused the OS to look for a file literally named "AGENTS.md\n", which doesn't exist, making the symlink appear broken. As a result, Claude Code silently failed to load project instructions. --- CLAUDE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CLAUDE.md b/CLAUDE.md index c3170642553..47dc3e3d863 120000 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -1 +1 @@ -AGENTS.md +AGENTS.md \ No newline at end of file