memtrace 0.6.10 → 0.6.17
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/lib/skill-metadata.js +10 -0
- package/package.json +7 -6
package/lib/skill-metadata.js
CHANGED
|
@@ -241,6 +241,16 @@ const DEFAULT_TRIGGERS = {
|
|
|
241
241
|
"Triggered by 'most important', 'central to', 'critical functions', 'chokepoints', 'bridges', 'communities', 'modules', 'subsystems', 'hubs', 'depends on most', 'most depended on', 'architecture overview'.",
|
|
242
242
|
paths: CODE_PATHS,
|
|
243
243
|
},
|
|
244
|
+
"memtrace-preflight": {
|
|
245
|
+
whenToUse:
|
|
246
|
+
"Triggered by 'before editing', 'about to change', 'what depends on', 'blast radius', 'safe to modify', 'what breaks if', 'impact of changing', 'co-change', 'what else needs updating'.",
|
|
247
|
+
paths: CODE_PATHS,
|
|
248
|
+
},
|
|
249
|
+
"memtrace-daily": {
|
|
250
|
+
whenToUse:
|
|
251
|
+
"Triggered by 'what changed', 'recent changes', 'daily briefing', 'catch me up', 'since yesterday', 'session review', 'self-audit', 'did I make it worse', 'hotspots', 'refactor priorities', 'what should I clean up first'.",
|
|
252
|
+
paths: CODE_PATHS,
|
|
253
|
+
},
|
|
244
254
|
"memtrace-quality": {
|
|
245
255
|
whenToUse:
|
|
246
256
|
"Triggered by 'dead code', 'unused functions', 'zero callers', 'complex functions', 'hotspots', 'cyclomatic complexity', 'cognitive complexity', 'code smells', 'refactoring candidates', 'tech debt'.",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "memtrace",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.17",
|
|
4
4
|
"description": "Code intelligence graph — MCP server + AI agent skills + visualization UI",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"mcp",
|
|
@@ -39,11 +39,12 @@
|
|
|
39
39
|
"fs-extra": "^11.0.0"
|
|
40
40
|
},
|
|
41
41
|
"optionalDependencies": {
|
|
42
|
-
"@memtrace/darwin-arm64": "0.6.
|
|
43
|
-
"@memtrace/linux-x64": "0.6.
|
|
44
|
-
"@memtrace/
|
|
45
|
-
"@memtrace/
|
|
46
|
-
"@memtrace/
|
|
42
|
+
"@memtrace/darwin-arm64": "0.6.17",
|
|
43
|
+
"@memtrace/linux-x64": "0.6.17",
|
|
44
|
+
"@memtrace/linux-arm64": "0.6.17",
|
|
45
|
+
"@memtrace/win32-x64": "0.6.17",
|
|
46
|
+
"@memtrace/linux-x64-noavx2": "0.6.17",
|
|
47
|
+
"@memtrace/win32-x64-noavx2": "0.6.17"
|
|
47
48
|
},
|
|
48
49
|
"engines": {
|
|
49
50
|
"node": ">=18"
|