Loading...
Loading...
Search your personal knowledge base when past insights would improve response. Recognize when stored breakthroughs, decisions, or solutions are relevant. Search proactively based on context, not just explicit requests.
npx skill4agent add nowledge-co/community search-memoryAI-powered semantic search across your personal knowledge base using Nowledge Mem.
# Install uv if needed
curl -LsSf https://astral.sh/uv/install.sh | sh
# Run nmem directly (auto-downloads)
uvx --from nmem-cli nmem --versionpip install nmem-cli
nmem --versionhttp://localhost:14242nmem--json# Basic search
nmem --json m search "your query here"
# With importance filter
nmem --json m search "API design" --importance 0.8
# With labels (multiple labels use AND logic)
nmem --json m search "authentication" -l backend -l security
# With time filter
nmem --json m search "meeting notes" -t week
# Limit results
nmem --json m search "debugging tips" -n 5| Flag | Description | Example |
|---|---|---|
| Minimum importance (0.0-1.0) | |
| Filter by label (repeatable) | |
| Time filter | |
| Limit results | |
memoriesscore# Search for React patterns
nmem --json m search "React hooks patterns" -l frontend
# Find debugging solutions
nmem --json m search "memory leak debugging" --importance 0.6
# Recent project decisions
nmem --json m search "architecture decision" -t month -n 10