From 8b2b5e16dfad1e6d2eb0619d59b827223ac48f7b Mon Sep 17 00:00:00 2001 From: bbsngg Date: Thu, 3 Sep 2026 14:46:03 -0400 Subject: [PATCH 1/2] chore(repo): remove stray node_modules symlink and ignore the symlink form A node_modules symlink pointing at a developer's local path was committed in #213 (2ef73b0a). It slipped past .gitignore because `node_modules/` with a trailing slash only matches directories, not symlinks. Drop the tracked symlink and add the slash-less pattern so it cannot recur. Co-Authored-By: Claude Fable 5.1 Claude-Session: https://claude.ai/code/session_01NBqmTvJRhyysMvMvL6cp7x --- .gitignore | 2 ++ node_modules | 1 - 2 files changed, 2 insertions(+), 1 deletion(-) delete mode 120000 node_modules diff --git a/.gitignore b/.gitignore index f254e9ff..c235ee7a 100755 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,7 @@ # Dependencies node_modules/ +# also match a node_modules symlink (the trailing-slash form only matches directories) +node_modules npm-debug.log* yarn-debug.log* yarn-error.log* diff --git a/node_modules b/node_modules deleted file mode 120000 index 5304df40..00000000 --- a/node_modules +++ /dev/null @@ -1 +0,0 @@ -/Users/sdj/Documents/research/doctor-archive/Ai-Scientist/VibeLab/dr-claw/node_modules \ No newline at end of file From 9503721dee8e90a0e1ee6cadbd957b4c780d34d6 Mon Sep 17 00:00:00 2001 From: bbsngg Date: Thu, 3 Sep 2026 14:46:03 -0400 Subject: [PATCH 2/2] fix(skills): quote the autoresearch description so its frontmatter parses The unquoted description contains `: `, which js-yaml reads as a nested mapping and rejects. gray-matter therefore threw on this file, which made scripts/export-skills-catalog-v2.mjs abort on main and left autoresearch out of any catalog regeneration. With the value quoted, all 173 SKILL.md files parse and the export script runs to completion. Co-Authored-By: Claude Fable 5.1 Claude-Session: https://claude.ai/code/session_01NBqmTvJRhyysMvMvL6cp7x --- skills/autoresearch/SKILL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skills/autoresearch/SKILL.md b/skills/autoresearch/SKILL.md index bedbfe4c..7e8d741d 100644 --- a/skills/autoresearch/SKILL.md +++ b/skills/autoresearch/SKILL.md @@ -1,6 +1,6 @@ --- name: autoresearch -description: Autonomous Goal-directed Iteration. Apply Karpathy's autoresearch principles to ANY task. Loops autonomously — modify, verify, keep/discard, repeat. 9 subcommands: plan, debug, fix, security, ship, scenario, predict, learn. +description: "Autonomous Goal-directed Iteration. Apply Karpathy's autoresearch principles to ANY task. Loops autonomously — modify, verify, keep/discard, repeat. 9 subcommands: plan, debug, fix, security, ship, scenario, predict, learn." version: 1.8.2 license: MIT metadata: