Install
openclaw skills install @whoisme007/enhanced-search-serviceEnhances memory search by combining co-occurrence graph analysis and semantic similarity for improved contextual relevance and ranking.
openclaw skills install @whoisme007/enhanced-search-serviceProvides enhanced memory search by combining co-occurrence graph analysis and semantic vector similarity. This plugin sits between memory storage and query interfaces, offering improved relevance ranking through contextual relationships and semantic understanding.
co-occurrence-engine): Provides relationship graph for contextual expansionsemantic-vector-store): Provides semantic similarity scoringmemory-integration): Optional, for direct memory access if neededfrom enhanced_search_adapter import EnhancedSearchAdapter
adapter = EnhancedSearchAdapter()
results = adapter.enhance_search("query about memory sync", max_results=10)
The plugin provides an adapter that implements the standard memory adapter interface with additional enhancement methods.
enhanced-search-service/
├── SKILL.md (this file)
├── scripts/
│ └── enhanced_search_service.py # Core service implementation
├── integration/
│ └── adapter/
│ └── enhanced_search_adapter.py # Adapter for star architecture
└── references/
├── api.md # API documentation
└── architecture.md # Design and integration notes
Default configuration (can be overridden via adapter initialization):
search:
co_occurrence_weight: 0.3
semantic_weight: 0.5
text_match_weight: 0.2
max_expansion: 5
min_relevance_threshold: 0.1
This plugin connects to the Memory Sync Enhanced (MSE) hub through its adapter. It consumes data from:
It produces enhanced search results for:
The adapter provides health monitoring for:
This is a Phase 3 split from the original memory-integration plugin. The goal is to create a single-function plugin focused solely on search enhancement, following the star architecture principle of separation of concerns.