From 95e04f361bfbeef6a9d41673e1e4c50b9ca0de20 Mon Sep 17 00:00:00 2001 From: Julius Marminge Date: Sun, 19 Jul 2026 20:29:44 +0200 Subject: [PATCH] Make test-t3-app skill discoverable by Claude Code Claude Code only scans .claude/skills for project skills, but the skill lived under .agents/skills (Codex's scan path), so Claude sessions never saw it. Symlink .claude/skills -> ../.agents/skills, mirroring the existing CLAUDE.md -> AGENTS.md convention, so both providers share one SKILL.md. Verified with the real claude CLI that the skill and its description now surface correctly; no per-provider metadata file is needed since Claude only reads SKILL.md frontmatter. Co-Authored-By: Claude Sonnet 5 --- .claude/skills | 1 + 1 file changed, 1 insertion(+) create mode 120000 .claude/skills diff --git a/.claude/skills b/.claude/skills new file mode 120000 index 00000000000..2b7a412b8fa --- /dev/null +++ b/.claude/skills @@ -0,0 +1 @@ +../.agents/skills \ No newline at end of file