Skip to content

Commit ea265ed

Browse files
committed
refactor: reorganize notes skills and update bash script paths (#338)
Updated notes skill structure and permissions This PR reorganizes the notes functionality by: 1. Moving note scripts to a shared directory structure (`.claude/skills/_shared/notes/`) 2. Adding new note utility scripts: - `list-topics.sh` - `summarize-notes.sh` - `echo-notes-dir.sh` 3. Replacing the general skills with more specific note-focused skills: - Added: `note-capture`, `note-find`, `note-list`, `note-organize`, `note-overview`, `note-refine`, `note-review` - Removed: `idea-refine`, `scratch-capture`, `scratch-review` These changes provide more granular control over note management capabilities.
1 parent c056215 commit ea265ed

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

.claude/settings.json

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,11 @@
3636
"Bash(rm:./.notes/scratch/*)",
3737
"Bash(mv:./.notes/*)",
3838
"Bash(cat:./.notes/*)",
39-
"Bash(./.claude/skills/notes/scripts/search:*)",
40-
"Bash(./.claude/skills/notes/scripts/list-titles:*)",
39+
"Bash(./.claude/skills/_shared/notes/search-notes.sh:*)",
40+
"Bash(./.claude/skills/_shared/notes/list-titles.sh:*)",
41+
"Bash(./.claude/skills/_shared/notes/list-topics.sh:*)",
42+
"Bash(./.claude/skills/_shared/notes/summarize-notes.sh:*)",
43+
"Bash(./.claude/skills/_shared/notes/echo-notes-dir.sh:*)",
4144
"Bash(git -C ./.notes add:*)",
4245
"Bash(git -C ./.notes commit:*)",
4346
"Bash(git -C ./.notes push:*)",
@@ -46,13 +49,17 @@
4649
"Read(./.notes/**)",
4750
"Write(./.notes/**)",
4851
"Edit(./.notes/**)",
49-
"Skill(idea-refine)",
5052
"Skill(migration-management)",
53+
"Skill(note-capture)",
54+
"Skill(note-find)",
55+
"Skill(note-list)",
56+
"Skill(note-organize)",
57+
"Skill(note-overview)",
58+
"Skill(note-refine)",
59+
"Skill(note-review)",
5160
"Skill(notes-sync)",
5261
"Skill(pgtap-testing)",
5362
"Skill(schema-dev)",
54-
"Skill(scratch-capture)",
55-
"Skill(scratch-review)",
5663
"Skill(unblock)",
5764
"AskUserQuestion",
5865
"WebSearch",

0 commit comments

Comments
 (0)