How this skill is triggered — by the user, by Claude, or both
Slash command
/semantic-memory:forgetThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
User invoked with: **$ARGUMENTS**
User invoked with: $ARGUMENTS
Delete an entry from LogosDB by row id or by semantic query (search-then-delete).
Parse the arguments:
--namespace=<name> or -n <name> sets the collection (default: code).--id=<number> or a bare positional number: delete that row id.--query="..." (or positional text when no numeric id): embed the query, search search_top_k neighbors (default 10, max 50), delete the hit at match_rank (0-based, default 0 = best match).--query: --search-top-k=<n>, --match-rank=<n>.Call the logosdb_delete MCP tool:
namespace and id when deleting by id.namespace, query, and optionally search_top_k / match_rank when deleting by semantic match.Respond with one line only. Do not echo the raw tool JSON.
Deleted id {id} from '{namespace}'.Deleted id {id} (rank {match_rank}, score {score}) from '{namespace}' matched by query.Error: message on a single line, unchanged.npx claudepluginhub jose-compu/claude-code-semantic-memory --plugin semantic-memorySearches MemPalace before answering questions about past work, people, projects, or prior decisions. Returns verbatim stored content instead of guessing from model memory.
Guides Payload CMS config (payload.config.ts), collections, fields, hooks, access control, APIs. Debugs validation errors, security, relationships, queries, transactions, hook behavior.
Implements vector databases with Pinecone, Weaviate, Qdrant, Milvus, pgvector for semantic search, RAG, recommendations, and similarity systems. Optimizes embeddings, indexing, and hybrid search.