Skip to content

Latest commit

 

History

History
38 lines (26 loc) · 912 Bytes

File metadata and controls

38 lines (26 loc) · 912 Bytes

Testing/Dev

The Brain skill lives in skills/brain/ in this repo. To test with Claude Code, it needs to be discoverable at ~/.claude/skills/. Symlinks let you test the live repo version without copying or manual syncing.

Steps

  1. Create the global skills directory if it doesn't exist:
  mkdir -p ~/.claude/skills
  1. Symlink the skill directory:
  ln -s /Users/mattm/Projects/Elucidata/brain-cli/skills/brain ~/.claude/skills/brain
  1. Verify the link resolved correctly:
  ls -la ~/.claude/skills/
  cat ~/.claude/skills/brain/SKILL.md | head -5

Testing

After linking, open a new Claude Code session in any project and run /brain init. The dispatcher should resolve and the init script should scaffold ./_brain/ in the target project folder.

Teardown

To uninstall, remove the symlinks: rm ~/.claude/skills/brain ~/.claude/skills/brain-info