From pensyve
Stores a fact about an entity as semantic memory in Pensyve. Parses <entity: fact> or infers hyphenated entity from <fact>, calls pensyve_remember tool, confirms with entity, fact, and memory ID.
How this command is triggered — by the user, by Claude, or both
Slash command
/pensyve:remember <entity: fact> or <fact>The summary Claude sees in its command listing — used to decide when to auto-load this command
# /remember Store a fact about an entity as a semantic memory in Pensyve. ## Instructions When the user invokes `/remember <fact>`, follow these steps: 1. **Parse the input.** Look for an entity prefix in the format `entity: fact` or `entity - fact`. If no entity prefix is found, infer the most appropriate entity name from the fact content. Use lowercase, hyphenated names for entities (e.g., `auth-service`, `project-config`, `user-preferences`). 2. **Call the MCP tool.** Use `pensyve_remember` with: - `entity`: The parsed or inferred entity name (lowercase, hyphenated) - `fact`: ...
Store a fact about an entity as a semantic memory in Pensyve.
When the user invokes /remember <fact>, follow these steps:
Parse the input. Look for an entity prefix in the format entity: fact or entity - fact. If no entity prefix is found, infer the most appropriate entity name from the fact content. Use lowercase, hyphenated names for entities (e.g., auth-service, project-config, user-preferences).
Call the MCP tool. Use pensyve_remember with:
entity: The parsed or inferred entity name (lowercase, hyphenated)fact: The fact text to storeconfidence: Default to 1.0 unless the user indicates uncertaintyConfirm storage. Report back to the user what was stored, including:
User: /remember auth-service: uses JWT tokens with RS256 signing
auth-serviceuses JWT tokens with RS256 signingUser: /remember the database migration script requires Python 3.11+
database-migration (inferred)the database migration script requires Python 3.11+User: /remember we decided to use SQLite instead of PostgreSQL for the MVP
project-decisions (inferred)we decided to use SQLite instead of PostgreSQL for the MVP.claude/ memory files. All memory operations go through the Pensyve MCP tools.auth-service, not AuthService or auth service).pensyve_remember returns an error, display the error message and suggest the user check that the Pensyve MCP server is running (pensyve-mcp).npx claudepluginhub major7apps/pensyve --plugin pensyve/memsy-rememberStores a fact, decision, or note into Memsy memory for retrieval in future sessions. Accepts text via argument, with input validation and optional confirmation.
/captureCaptures a new memory to the mnemonic filesystem with required namespace and title, optional type (semantic/episodic/procedural), tags, scope (project/org), confidence, citations. Validates against ontology.
/rememberAdds user-specified content as a manual entry to .claude/memories/project_memory.json and confirms with a success message.
/memorySaves important content to a long-term memory database. Accepts explicit content, follows instructions to extract from context, or auto-summarizes session highlights.
/rememberLogs a finding or successful exploit pattern to persistent hunt memory, auto-populating from session context and /validate output.
/rememberManually capture a memory now (independent of Stop-hook auto-capture). Pass -p <path> to skip classification.