note-search
Installation
SKILL.md
노트 검색
note-writer로 생성된 학습 노트를 효과적으로 검색합니다.
검색 전략
1단계: 빠른 매칭 (frontmatter)
# 키워드 검색 (가장 정확)
grep -rl "keywords:.*검색어" notes/ --include="SKILL.md"
# name/description 검색
grep -l "name: .*검색어" notes/ --include="SKILL.md"
grep -l "description:.*검색어" notes/ --include="SKILL.md"