Skip to content

Commit e8e64eb

Browse files
committed
feat(settings): add local settings file with read permissions
Add .claude/settings.local.json file to configure read permissions for various chatluna packages and plugins. This includes permissions for long memory extensions, knowledge plugins, character modules, and core LLM platform files. The settings file allows read access to specific directories while maintaining empty deny and ask permission arrays for future configuration.
1 parent 5e3694c commit e8e64eb

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.claude/settings.local.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"permissions": {
3+
"allow": [
4+
"Read(//g/projects/koishi_projects/koishi-new/external/chatluna/packages/extension-long-memory/src/layers/hippo/**)",
5+
"Read(//g/projects/koishi_projects/koishi-new/external/chatluna/packages/extension-long-memory/src/utils/**)",
6+
"Read(//g/projects/koishi_projects/koishi-new/external/chatluna-knowledge/src/plugins/**)",
7+
"Read(//g/projects/koishi_projects/koishi-new/external/chatluna-character/src/**)",
8+
"Read(//g/projects/koishi_projects/koishi-new/external/chatluna/packages/core/src/llm-core/platform/**)",
9+
"Read(//g/projects/koishi_projects/koishi-new/external/chatluna/packages/core/src/**)"
10+
],
11+
"deny": [],
12+
"ask": []
13+
}
14+
}

0 commit comments

Comments
 (0)