collective-memory-mcp 0.7.0 → 0.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude/settings.local.json +27 -0
- package/README.md +359 -184
- package/SMART_MEMORY_REDESIGN.md +1074 -0
- package/package.json +2 -2
- package/src/project-summary.js +462 -0
- package/src/server.js +731 -1454
- package/src/smart-trigger.js +517 -0
- package/src/storage.js +176 -0
- package/src/working-notes.js +183 -0
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"permissions": {
|
|
3
|
+
"allow": [
|
|
4
|
+
"Bash(python:*)",
|
|
5
|
+
"Bash(python3:*)",
|
|
6
|
+
"Bash(chmod:*)",
|
|
7
|
+
"Bash(npm login:*)",
|
|
8
|
+
"Bash(npm adduser:*)",
|
|
9
|
+
"Bash(npm publish --access public)",
|
|
10
|
+
"Bash(npm config set:*)",
|
|
11
|
+
"Bash(npm view:*)",
|
|
12
|
+
"Bash(pip3 install:*)",
|
|
13
|
+
"Bash(npm install:*)",
|
|
14
|
+
"Bash(timeout 3 node:*)",
|
|
15
|
+
"Bash(node:*)",
|
|
16
|
+
"Bash(npm version:*)",
|
|
17
|
+
"Bash(cat:*)",
|
|
18
|
+
"Bash(npm whoami:*)",
|
|
19
|
+
"Bash(npm publish:*)",
|
|
20
|
+
"Bash(curl:*)",
|
|
21
|
+
"Bash(ollama list:*)",
|
|
22
|
+
"Bash(find:*)"
|
|
23
|
+
],
|
|
24
|
+
"deny": [],
|
|
25
|
+
"ask": []
|
|
26
|
+
}
|
|
27
|
+
}
|