claude-mem-lite 2.0.12 → 2.0.13

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/dispatch.mjs CHANGED
@@ -291,6 +291,9 @@ function extractIntent(prompt) {
291
291
  [/\b(perf|performance|optimiz\w*|fast\w*|slow\w*|speed\w*|latency|bottleneck|laggy)\b/i, 'fast'],
292
292
  [/\b(lint\w*|format\w*|style|prettier|eslint|biome|stylelint)\b/i, 'lint'],
293
293
  // ── Generic / overloaded (easily confused with domain terms) ──
294
+ // Note: bare "design" intentionally excluded — too ambiguous ("design database" vs "design UI").
295
+ // Only UI-specific keywords trigger design intent. Prompts like "design the homepage" without
296
+ // UI terms will rely on text-based FTS5 fallback rather than intent matching.
294
297
  [/\b(ui|ux|frontend|css|tailwind|responsive|layout|theme|component)\b/i, 'design'],
295
298
  // ── Chinese patterns ──
296
299
  [/(测试|写测试|单测|单元测试|用例|覆盖率)/, 'test'],
package/install.mjs CHANGED
@@ -445,7 +445,7 @@ const RESOURCE_METADATA = {
445
445
  trigger_patterns: 'when user needs social media content posts or engagement strategies',
446
446
  },
447
447
  'skill:seo-audit': {
448
- intent_tags: 'seo,audit,technical,analysis,crawl,performance,indexing',
448
+ intent_tags: 'seo,audit,technical,analysis,crawl,indexing',
449
449
  domain_tags: 'seo,audit,web',
450
450
  capability_summary: 'Comprehensive SEO audit with technical analysis crawl errors and performance checks',
451
451
  trigger_patterns: 'when user needs a comprehensive SEO audit or technical site analysis',
@@ -523,8 +523,8 @@ const RESOURCE_METADATA = {
523
523
  trigger_patterns: 'when user wants automated SEO content writing or optimization assistance',
524
524
  },
525
525
  'agent:seo-performance-agent': {
526
- intent_tags: 'seo,performance,agent,speed,core-web-vitals,pagespeed',
527
- domain_tags: 'seo,performance,agent',
526
+ intent_tags: 'seo,agent,core-web-vitals,pagespeed',
527
+ domain_tags: 'seo,agent',
528
528
  capability_summary: 'SEO performance monitoring agent for core web vitals and page speed analysis',
529
529
  trigger_patterns: 'when user needs automated SEO performance monitoring or speed optimization',
530
530
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-mem-lite",
3
- "version": "2.0.12",
3
+ "version": "2.0.13",
4
4
  "description": "Lightweight persistent memory system for Claude Code",
5
5
  "type": "module",
6
6
  "engines": {