Long-term memory management for persisting information across conversations. Add, replace, or remove memories that persist beyond current session.
Scanned 5/31/2026
Install via CLI
openskills install tools-only/X-Skills# Tool Specification: memory_space_edits
## Overview
Long-term memory management for persisting information across conversations. Add, replace, or remove memories that persist beyond current session.
## JSON Schema
```json
{
"type": "object",
"properties": {
"operate": {
"type": "string",
"enum": ["add", "remove", "replace"],
"description": "Operation type"
},
"content": {
"type": "string",
"description": "Memory content (required for add/replace)"
},
"id": {
"type": "string",
"description": "Memory ID (required for remove/replace)"
}
},
"required": ["operate"]
}
```
## Streaming Mechanism
- **Storage**: Persistent database (survives conversation restart)
- **Operations**:
- `add`: Create new memory entry
- `replace`: Update existing by ID
- `remove`: Delete by ID
- **Return**: Confirmation of operation
## Memory Structure
```json
{
"id": "3",
"date": "26-01-28",
"content": "User preference for technical discussions"
}
```
## Content Rules
- **Start with**: "User" or user name (e.g., "User works as...")
- **Language**: Same as conversation language
- **Forbidden**: Sensitive data (race, religion, health, minors <18, precise location)
## Integration Architecture
- **Scope**: Cross-conversation persistence
- **Loading**: Memories injected into context at conversation start
- **Display**: Shown in system prompt under "Memory" section
- **Privacy**: User-controlled, can disable in Settings
## Usage Patterns
### Add Memory
```
memory_space_edits(
operate="add",
content="User prefers Python for data analysis"
)
```
### Update Memory
```
memory_space_edits(
operate="replace",
id="3",
content="User prefers Rust for systems programming"
)
```
### Delete Memory
```
memory_space_edits(operate="remove", id="3")
```
## System Integration
- **Available in**: Both Base Chat and OK Computer
- **User Control**: Can disable via Settings → Personalization → Memory space
- **Transparency**: User shown all stored memories
No comments yet. Be the first to comment!
Use this skill when developing or maintaining browser extension code in the `browser/` directory, including Chrome/Firefox/Edge compatibility, content scripts, background scripts, or i18n updates.
SEO optimization with keyword analysis, readability assessment, technical validation, content quality. Use for search rankings, blog posts, content audits, or encountering keyword density, readability scores, meta tags, schema markup errors.
Python backend development expertise for FastAPI, security patterns, database operations, Upstash integrations, and code quality. Use when: (1) Building REST APIs with FastAPI, (2) Implementing JWT/OAuth2 authentication, (3) Setting up SQLAlchemy/async databases, (4) Integrating Redis/Upstash caching, (5) Refactoring AI-generated Python code (deslopification), (6) Designing API patterns, or (7) Optimizing backend performance.
Drive the full internationalization journey for a project — detect the stack, recommend a library, set up the chosen library, wrap existing strings, and optionally connect a translation platform. Use when the user asks to add or configure i18n, internationalization, localization, multi-language support, or translations — including when they explicitly mention LinguiJS, Lingui, next-intl, "wrap strings", "find hardcoded text", "make my app translatable", or "set up translations". Triggers on g...
PTES-aligned adversarial security audit for backend, frontend, and mobile applications. Produces a CVSS-scored Hacker Report with verified PoCs and phased remediation.