mindpm 1.2.23 → 1.2.24
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/assets/logo.png +0 -0
- package/assets/logo.svg +61 -0
- package/package.json +17 -3
package/assets/logo.png
ADDED
|
Binary file
|
package/assets/logo.svg
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400" viewBox="0 0 400 400">
|
|
2
|
+
<defs>
|
|
3
|
+
<linearGradient id="bg" x1="0" y1="0" x2="1" y2="1">
|
|
4
|
+
<stop offset="0%" stop-color="#0f172a"/>
|
|
5
|
+
<stop offset="100%" stop-color="#1e1b4b"/>
|
|
6
|
+
</linearGradient>
|
|
7
|
+
<linearGradient id="stroke-grad" x1="0" y1="0" x2="1" y2="1">
|
|
8
|
+
<stop offset="0%" stop-color="#a78bfa"/>
|
|
9
|
+
<stop offset="100%" stop-color="#6366f1"/>
|
|
10
|
+
</linearGradient>
|
|
11
|
+
<filter id="glow">
|
|
12
|
+
<feGaussianBlur stdDeviation="3" result="blur"/>
|
|
13
|
+
<feMerge>
|
|
14
|
+
<feMergeNode in="blur"/>
|
|
15
|
+
<feMergeNode in="SourceGraphic"/>
|
|
16
|
+
</feMerge>
|
|
17
|
+
</filter>
|
|
18
|
+
</defs>
|
|
19
|
+
|
|
20
|
+
<!-- Background rounded square -->
|
|
21
|
+
<rect width="400" height="400" rx="72" fill="url(#bg)"/>
|
|
22
|
+
|
|
23
|
+
<!-- M shape — circuit-board style, with nodes at vertices -->
|
|
24
|
+
<!-- Lines first (behind nodes) -->
|
|
25
|
+
<!-- Left vertical -->
|
|
26
|
+
<line x1="110" y1="290" x2="110" y2="120" stroke="url(#stroke-grad)" stroke-width="14" stroke-linecap="round" filter="url(#glow)"/>
|
|
27
|
+
<!-- Left diagonal down to center -->
|
|
28
|
+
<line x1="110" y1="120" x2="200" y2="215" stroke="url(#stroke-grad)" stroke-width="14" stroke-linecap="round" filter="url(#glow)"/>
|
|
29
|
+
<!-- Right diagonal up from center -->
|
|
30
|
+
<line x1="200" y1="215" x2="290" y2="120" stroke="url(#stroke-grad)" stroke-width="14" stroke-linecap="round" filter="url(#glow)"/>
|
|
31
|
+
<!-- Right vertical -->
|
|
32
|
+
<line x1="290" y1="120" x2="290" y2="290" stroke="url(#stroke-grad)" stroke-width="14" stroke-linecap="round" filter="url(#glow)"/>
|
|
33
|
+
|
|
34
|
+
<!-- Bottom connector (subtle horizontal line) -->
|
|
35
|
+
<line x1="110" y1="290" x2="290" y2="290" stroke="#4338ca" stroke-width="5" stroke-linecap="round" opacity="0.5"/>
|
|
36
|
+
|
|
37
|
+
<!-- Circuit nodes -->
|
|
38
|
+
<!-- Bottom-left -->
|
|
39
|
+
<circle cx="110" cy="290" r="18" fill="#0f172a" stroke="#a78bfa" stroke-width="5"/>
|
|
40
|
+
<circle cx="110" cy="290" r="7" fill="#a78bfa"/>
|
|
41
|
+
|
|
42
|
+
<!-- Top-left -->
|
|
43
|
+
<circle cx="110" cy="120" r="18" fill="#0f172a" stroke="#a78bfa" stroke-width="5"/>
|
|
44
|
+
<circle cx="110" cy="120" r="7" fill="#a78bfa"/>
|
|
45
|
+
|
|
46
|
+
<!-- Center peak (larger, brighter — the "brain" node) -->
|
|
47
|
+
<circle cx="200" cy="215" r="24" fill="#0f172a" stroke="#818cf8" stroke-width="6" filter="url(#glow)"/>
|
|
48
|
+
<circle cx="200" cy="215" r="10" fill="#818cf8" filter="url(#glow)"/>
|
|
49
|
+
|
|
50
|
+
<!-- Top-right -->
|
|
51
|
+
<circle cx="290" cy="120" r="18" fill="#0f172a" stroke="#a78bfa" stroke-width="5"/>
|
|
52
|
+
<circle cx="290" cy="120" r="7" fill="#a78bfa"/>
|
|
53
|
+
|
|
54
|
+
<!-- Bottom-right -->
|
|
55
|
+
<circle cx="290" cy="290" r="18" fill="#0f172a" stroke="#a78bfa" stroke-width="5"/>
|
|
56
|
+
<circle cx="290" cy="290" r="7" fill="#a78bfa"/>
|
|
57
|
+
|
|
58
|
+
<!-- "pm" label — small, below the M, for context at full size -->
|
|
59
|
+
<text x="200" y="355" font-family="ui-monospace, 'Courier New', monospace" font-size="28" font-weight="700"
|
|
60
|
+
fill="#6366f1" text-anchor="middle" letter-spacing="6" opacity="0.8">mindpm</text>
|
|
61
|
+
</svg>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mindpm",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.24",
|
|
4
4
|
"description": "Persistent project memory for LLMs via MCP. Never re-explain your project again.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -21,12 +21,25 @@
|
|
|
21
21
|
},
|
|
22
22
|
"keywords": [
|
|
23
23
|
"mcp",
|
|
24
|
+
"mcp-server",
|
|
25
|
+
"model-context-protocol",
|
|
24
26
|
"llm",
|
|
25
27
|
"memory",
|
|
28
|
+
"persistent-memory",
|
|
29
|
+
"project-memory",
|
|
26
30
|
"sqlite",
|
|
27
31
|
"project-management",
|
|
28
|
-
"
|
|
32
|
+
"task-management",
|
|
33
|
+
"kanban",
|
|
34
|
+
"claude",
|
|
35
|
+
"claude-code",
|
|
36
|
+
"anthropic",
|
|
37
|
+
"ai-memory",
|
|
38
|
+
"context",
|
|
39
|
+
"sessions",
|
|
40
|
+
"decisions"
|
|
29
41
|
],
|
|
42
|
+
"mcpName": "io.github.umitkavala/mindpm",
|
|
30
43
|
"author": "",
|
|
31
44
|
"license": "MIT",
|
|
32
45
|
"engines": {
|
|
@@ -35,7 +48,8 @@
|
|
|
35
48
|
"files": [
|
|
36
49
|
"dist",
|
|
37
50
|
"README.md",
|
|
38
|
-
"LICENSE"
|
|
51
|
+
"LICENSE",
|
|
52
|
+
"assets"
|
|
39
53
|
],
|
|
40
54
|
"dependencies": {
|
|
41
55
|
"@modelcontextprotocol/sdk": "^1.26.0",
|