specmem-hardwicksoftware 3.7.32 → 3.7.34
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/CHANGELOG.md +32 -0
- package/README.md +4 -2
- package/bin/specmem-cli.cjs +18 -33
- package/bootstrap.cjs +5 -1
- package/claude-hooks/agent-loading-hook.js +31 -47
- package/claude-hooks/subagent-loading-hook.js +1 -1
- package/claude-hooks/team-comms-enforcer.cjs +112 -93
- package/dist/config/configSync.js +4 -1
- package/dist/index.js +44 -1
- package/dist/init/claudeConfigInjector.js +4 -1
- package/dist/installer/autoInstall.js +4 -1
- package/dist/mcp/compactionProxy.js +634 -72
- package/dist/mcp/compactionProxyDaemon.js +18 -4
- package/dist/mcp/specMemServer.js +8 -0
- package/dist/watcher/index.js +16 -2
- package/package.json +1 -1
- package/scripts/deploy-hooks.cjs +4 -1
- package/scripts/specmem-init.cjs +31 -35
- package/scripts/specmem-uninstall.cjs +4 -1
- package/specmem/model-config.json +3 -3
- package/specmem/supervisord.conf +1 -1
- package/svg-sections/readme-how-to-install.svg +145 -0
- package/svg-sections/readme-install.svg +89 -53
|
@@ -1,82 +1,118 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 420" width="800" height="420">
|
|
2
2
|
<defs>
|
|
3
|
-
<linearGradient id="
|
|
3
|
+
<linearGradient id="bgGrad" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
4
4
|
<stop offset="0%" style="stop-color:#0d1117"/>
|
|
5
5
|
<stop offset="100%" style="stop-color:#161b22"/>
|
|
6
6
|
</linearGradient>
|
|
7
|
-
<linearGradient id="
|
|
7
|
+
<linearGradient id="cardGrad" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
8
|
+
<stop offset="0%" style="stop-color:#1c2128;stop-opacity:0.9"/>
|
|
9
|
+
<stop offset="100%" style="stop-color:#21262d;stop-opacity:0.85"/>
|
|
10
|
+
</linearGradient>
|
|
11
|
+
<linearGradient id="titleGrad" x1="0%" y1="0%" x2="100%" y2="0%">
|
|
8
12
|
<stop offset="0%" style="stop-color:#00bfff"/>
|
|
9
|
-
<stop offset="
|
|
13
|
+
<stop offset="50%" style="stop-color:#a855f7"/>
|
|
14
|
+
<stop offset="100%" style="stop-color:#00bfff"/>
|
|
10
15
|
</linearGradient>
|
|
11
|
-
<linearGradient id="
|
|
16
|
+
<linearGradient id="cyanPurple" x1="0%" y1="0%" x2="100%" y2="0%">
|
|
12
17
|
<stop offset="0%" style="stop-color:#00bfff"/>
|
|
13
18
|
<stop offset="100%" style="stop-color:#a855f7"/>
|
|
14
19
|
</linearGradient>
|
|
15
|
-
<
|
|
16
|
-
<
|
|
17
|
-
<
|
|
18
|
-
|
|
19
|
-
<feMerge><feMergeNode/><feMergeNode in="SourceGraphic"/></feMerge>
|
|
20
|
-
</filter>
|
|
21
|
-
<filter id="stepGlow" x="-50%" y="-50%" width="200%" height="200%">
|
|
22
|
-
<feGaussianBlur in="SourceAlpha" stdDeviation="2" result="blur"/>
|
|
23
|
-
<feFlood flood-color="#00bfff" flood-opacity="0.3"/>
|
|
24
|
-
<feComposite in2="blur" operator="in"/>
|
|
25
|
-
<feMerge><feMergeNode/><feMergeNode in="SourceGraphic"/></feMerge>
|
|
26
|
-
</filter>
|
|
20
|
+
<linearGradient id="greenGrad" x1="0%" y1="0%" x2="100%" y2="0%">
|
|
21
|
+
<stop offset="0%" style="stop-color:#22c55e"/>
|
|
22
|
+
<stop offset="100%" style="stop-color:#4ade80"/>
|
|
23
|
+
</linearGradient>
|
|
27
24
|
</defs>
|
|
28
25
|
|
|
29
|
-
|
|
30
|
-
<rect width="
|
|
26
|
+
<!-- Background -->
|
|
27
|
+
<rect width="800" height="420" rx="16" ry="16" fill="url(#bgGrad)"/>
|
|
28
|
+
<rect width="800" height="420" rx="16" ry="16" fill="none" stroke="url(#cyanPurple)" stroke-width="1" stroke-opacity="0.25"/>
|
|
31
29
|
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
<line x1="50" y1="78" x2="50" y2="168" stroke="#2d333b" stroke-width="2" stroke-dasharray="4,4"/>
|
|
30
|
+
<!-- Title -->
|
|
31
|
+
<text x="400" y="38" text-anchor="middle" font-family="system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif" font-size="22" font-weight="700" fill="url(#titleGrad)">Quick Install</text>
|
|
32
|
+
<text x="400" y="60" text-anchor="middle" font-family="system-ui, sans-serif" font-size="12" fill="#8b949e">3 steps. No root required. Works on Debian, Ubuntu, Mint, Kali.</text>
|
|
36
33
|
|
|
37
34
|
<!-- Step 1 -->
|
|
38
|
-
<g transform="translate(30,
|
|
39
|
-
<
|
|
40
|
-
<
|
|
41
|
-
|
|
42
|
-
<
|
|
43
|
-
<text x="
|
|
35
|
+
<g transform="translate(30, 78)">
|
|
36
|
+
<rect width="740" height="72" rx="12" fill="url(#cardGrad)" stroke="#30363d" stroke-width="1"/>
|
|
37
|
+
<rect width="740" height="3" rx="1.5" fill="url(#cyanPurple)"/>
|
|
38
|
+
<!-- Step badge -->
|
|
39
|
+
<circle cx="36" cy="42" r="16" fill="none" stroke="#00bfff" stroke-width="1.5" stroke-opacity="0.6"/>
|
|
40
|
+
<text x="36" y="47" text-anchor="middle" font-family="system-ui, sans-serif" font-size="14" font-weight="700" fill="#00bfff">1</text>
|
|
41
|
+
<!-- Command -->
|
|
42
|
+
<rect x="64" y="20" width="660" height="32" rx="6" fill="#0d1117" stroke="#21262d" stroke-width="1"/>
|
|
43
|
+
<text x="78" y="40" font-family="'SF Mono', 'Fira Code', Consolas, monospace" font-size="13" fill="#6e7681">$</text>
|
|
44
|
+
<text x="94" y="40" font-family="'SF Mono', 'Fira Code', Consolas, monospace" font-size="13">
|
|
44
45
|
<tspan fill="#ff7b72">npm</tspan>
|
|
45
|
-
<tspan fill="#
|
|
46
|
+
<tspan fill="#e6edf3"> install </tspan>
|
|
46
47
|
<tspan fill="#ffa657">-g</tspan>
|
|
47
|
-
<tspan fill="#
|
|
48
|
+
<tspan fill="#e6edf3"> specmem-hardwicksoftware</tspan>
|
|
48
49
|
</text>
|
|
50
|
+
<text x="64" y="65" font-family="system-ui, sans-serif" font-size="10" fill="#6e7681">Install globally from npm</text>
|
|
49
51
|
</g>
|
|
50
52
|
|
|
53
|
+
<!-- Connector line -->
|
|
54
|
+
<line x1="66" y1="150" x2="66" y2="168" stroke="#30363d" stroke-width="2" stroke-dasharray="3,3"/>
|
|
55
|
+
|
|
51
56
|
<!-- Step 2 -->
|
|
52
|
-
<g transform="translate(30,
|
|
53
|
-
<
|
|
54
|
-
<
|
|
55
|
-
<
|
|
56
|
-
<text x="
|
|
57
|
-
<
|
|
57
|
+
<g transform="translate(30, 168)">
|
|
58
|
+
<rect width="740" height="72" rx="12" fill="url(#cardGrad)" stroke="#30363d" stroke-width="1"/>
|
|
59
|
+
<rect width="740" height="3" rx="1.5" fill="url(#cyanPurple)"/>
|
|
60
|
+
<circle cx="36" cy="42" r="16" fill="none" stroke="#a855f7" stroke-width="1.5" stroke-opacity="0.6"/>
|
|
61
|
+
<text x="36" y="47" text-anchor="middle" font-family="system-ui, sans-serif" font-size="14" font-weight="700" fill="#a855f7">2</text>
|
|
62
|
+
<rect x="64" y="20" width="660" height="32" rx="6" fill="#0d1117" stroke="#21262d" stroke-width="1"/>
|
|
63
|
+
<text x="78" y="40" font-family="'SF Mono', 'Fira Code', Consolas, monospace" font-size="13" fill="#6e7681">$</text>
|
|
64
|
+
<text x="94" y="40" font-family="'SF Mono', 'Fira Code', Consolas, monospace" font-size="13">
|
|
58
65
|
<tspan fill="#ff7b72">cd</tspan>
|
|
59
|
-
<tspan fill="#
|
|
66
|
+
<tspan fill="#e6edf3"> /your/project/directory</tspan>
|
|
60
67
|
</text>
|
|
68
|
+
<text x="64" y="65" font-family="system-ui, sans-serif" font-size="10" fill="#6e7681">Navigate to your project root</text>
|
|
61
69
|
</g>
|
|
62
70
|
|
|
71
|
+
<!-- Connector line -->
|
|
72
|
+
<line x1="66" y1="240" x2="66" y2="258" stroke="#30363d" stroke-width="2" stroke-dasharray="3,3"/>
|
|
73
|
+
|
|
63
74
|
<!-- Step 3 -->
|
|
64
|
-
<g transform="translate(30,
|
|
65
|
-
<
|
|
66
|
-
<
|
|
67
|
-
<
|
|
68
|
-
<text x="
|
|
69
|
-
<
|
|
70
|
-
|
|
71
|
-
|
|
75
|
+
<g transform="translate(30, 258)">
|
|
76
|
+
<rect width="740" height="72" rx="12" fill="url(#cardGrad)" stroke="#22c55e" stroke-width="1.5"/>
|
|
77
|
+
<rect width="740" height="3" rx="1.5" fill="url(#greenGrad)"/>
|
|
78
|
+
<circle cx="36" cy="42" r="16" fill="none" stroke="#22c55e" stroke-width="1.5" stroke-opacity="0.6"/>
|
|
79
|
+
<text x="36" y="47" text-anchor="middle" font-family="system-ui, sans-serif" font-size="14" font-weight="700" fill="#4ade80">3</text>
|
|
80
|
+
<rect x="64" y="20" width="660" height="32" rx="6" fill="#0d1117" stroke="#21262d" stroke-width="1"/>
|
|
81
|
+
<text x="78" y="40" font-family="'SF Mono', 'Fira Code', Consolas, monospace" font-size="13" fill="#6e7681">$</text>
|
|
82
|
+
<text x="94" y="40" font-family="'SF Mono', 'Fira Code', Consolas, monospace" font-size="13">
|
|
83
|
+
<tspan fill="#4ade80">specmem</tspan>
|
|
84
|
+
<tspan fill="#e6edf3"> init</tspan>
|
|
72
85
|
</text>
|
|
86
|
+
<text x="64" y="65" font-family="system-ui, sans-serif" font-size="10" fill="#6e7681">One-time setup — models, DB, hooks, everything</text>
|
|
73
87
|
</g>
|
|
74
88
|
|
|
75
|
-
<!-- Done -->
|
|
76
|
-
<
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
89
|
+
<!-- Done bar -->
|
|
90
|
+
<rect x="30" y="350" width="740" height="52" rx="12" fill="#22c55e" fill-opacity="0.08" stroke="#22c55e" stroke-width="1" stroke-opacity="0.3"/>
|
|
91
|
+
<!-- Checkmark -->
|
|
92
|
+
<circle cx="66" cy="376" r="12" fill="none" stroke="#22c55e" stroke-width="2"/>
|
|
93
|
+
<path d="M60 376 L64 381 L74 370" fill="none" stroke="#4ade80" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
94
|
+
<text x="90" y="372" font-family="system-ui, sans-serif" font-size="13" font-weight="600" fill="#4ade80">Done.</text>
|
|
95
|
+
<text x="90" y="389" font-family="system-ui, sans-serif" font-size="11" fill="#6e7681">Claude now has full semantic memory of your codebase — persistent across every session.</text>
|
|
96
|
+
|
|
97
|
+
<!-- OS logos (right side of done bar) -->
|
|
98
|
+
<!-- Ubuntu circle pattern -->
|
|
99
|
+
<circle cx="600" cy="376" r="10" fill="none" stroke="#E95420" stroke-width="1.5"/>
|
|
100
|
+
<circle cx="600" cy="376" r="3" fill="#E95420"/>
|
|
101
|
+
<circle cx="600" cy="366" r="2" fill="#E95420"/>
|
|
102
|
+
<circle cx="591" cy="381" r="2" fill="#E95420"/>
|
|
103
|
+
<circle cx="609" cy="381" r="2" fill="#E95420"/>
|
|
104
|
+
|
|
105
|
+
<!-- Debian swirl (simplified) -->
|
|
106
|
+
<circle cx="630" cy="376" r="10" fill="none" stroke="#A80030" stroke-width="1.5"/>
|
|
107
|
+
<path d="M630 368 C636 368 638 374 634 379 C630 384 624 382 622 378" fill="none" stroke="#D70751" stroke-width="2" stroke-linecap="round"/>
|
|
108
|
+
<circle cx="630" cy="376" r="2" fill="#D70751"/>
|
|
109
|
+
|
|
110
|
+
<!-- Mint LM badge -->
|
|
111
|
+
<rect x="647" y="366" width="20" height="20" rx="5" fill="none" stroke="#87CF3E" stroke-width="1.5"/>
|
|
112
|
+
<text x="657" y="380" text-anchor="middle" font-family="system-ui, sans-serif" font-size="8" font-weight="700" fill="#87CF3E">LM</text>
|
|
113
|
+
|
|
114
|
+
<!-- Kali dragon shape (simplified) -->
|
|
115
|
+
<path d="M688 366 L696 374 L694 380 L700 388 L688 382 L676 388 L682 380 L680 374 Z" fill="none" stroke="#557C94" stroke-width="1.5" stroke-linejoin="round"/>
|
|
116
|
+
|
|
117
|
+
<text x="710" y="374" font-family="system-ui, sans-serif" font-size="9" fill="#484f58">+ more</text>
|
|
82
118
|
</svg>
|