Добавление нового вида памяти в EverOS

★ 7.1 · knowledge-management

add-memory-kind is a Claude Code skill that adds a new business memory kind end-to-end in EverOS, guiding the selection of a storage combination — Markdown, SQLite, LanceDB, or any mix — and a Markdown persistence strategy (daily-log append, skill-named in-place, or single-file rewrite), then wiring up all required schemas, repos, and writers. The skill provides a complete recipe for daily-log append: frontmatter schema in `mds/<name>.py` subclassing `UserScopedFrontmatter` or `AgentScopedFrontmatter`, re-exports via `__init__.py`, a business writer extending `BaseDailyWriter`, and a working `append()` call that produces dated files with auto-generated `EntryId` markers. Optional SQLite integration uses `BaseTable` and `RepoBase` for transactional state; LanceDB covers vector and hybrid retrieval. Developers architecting EverOS agent memory for episodes, profiles, skills, atomic facts, or custom entities will find this the authoritative wiring guide.