skills/hmem-migrate-o/SKILL.md
Migrate O-entries to the new project-bound 5-level structure (v5.3+). Each O-entry gets permanently bound to its P-entry by matching sequence numbers (O0048 <-> P0048). Run this once after updating to v5.3. Use when the user says "migrate O-entries", "O-Eintraege migrieren", "hmem migrate", or when hmem-update detects that the O-entry structure needs migration. Also use proactively if you notice O-entries are still using the old flat format (L2->L4->L5 without L3 batches).
npx skillsauth add Bumblebiber/hmem hmem-migrate-oInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Prerequisite: This skill uses
move_nodesandrename_idfrom the hmem-curate MCP server. Tell the user to activate it via/mcpbefore proceeding.
This is a one-time migration from the old flat O-entry format to the new 5-level hierarchy where each O-entry is permanently bound to a P-entry (O0048 belongs to P0048).
Before (old format):
links fieldactive flag on O-entries to track current sessionAfter (new format):
active flag needed — O is derived from the active PUnderstand what you're working with before changing anything.
hmem --version # must be >= 5.3.0
Then use read_memory() to see current O-entries. Check:
If the version is too old, run /hmem-update first.
Create a backup of the hmem database before migrating. This is critical — the migration rewrites entry IDs.
# Find the active hmem file
HMEM_FILE=$(find ~/.hmem -name "*.hmem" -not -path "*/Agents/*" | head -1)
echo "Backing up: $HMEM_FILE"
cp "$HMEM_FILE" "${HMEM_FILE}.pre-migration-backup"
# Also backup agent-specific hmem files
find ~/.hmem/Agents -name "*.hmem" -exec sh -c 'cp "$1" "$1.pre-migration-backup"' _ {} \;
Verify backups exist before continuing.
The migration script handles everything:
hmem migrate-o-entries
This will:
links JSON field#legacy#legacy (they'll go to O0000 eventually)active flags from O-entriesRead the output carefully. The script reports every rename and conflict. Example output:
=== hmem O-Entry Migration ===
Found 105 O-entries to process.
O0001 -> O0048 (P0048 hmem-mcp)
O0020 -> O0051 (P0051 BookCast)
O0168 -> O0043 (P0043 EasySAP)
O0002 -> #legacy (conflict for O0048)
O0173 -> #legacy (no P-link)
Migration plan: 3 renames, 102 legacy tags.
After migration, verify the structure is correct:
read_memory() # Should show O-entries with correct IDs
read_memory(id="O0048") # Should exist if P0048 exists
load_project(id="P0048") # Should load without errors
Also check:
echo '{}' | hmem statusline # Should show project info
If the migration was run on the sync server (e.g., Strato), other devices don't need to run the migration themselves. Instead, delete the local DB and pull fresh from the server:
# 1. Delete local hmem file
AGENT_DIR=~/.hmem/Agents/DEVELOPER
rm "$AGENT_DIR/DEVELOPER.hmem"
# 2. Pull from server — MUST specify --hmem-path explicitly!
# Without it, hmem-sync writes to ~/.hmem/memory.hmem (wrong file).
# hmem-mcp reads from Agents/DEVELOPER/DEVELOPER.hmem — they must match.
hmem-sync pull --hmem-path "$AGENT_DIR/DEVELOPER.hmem" --force
IMPORTANT: Always use --hmem-path when pulling after a DB delete. Without it, hmem-sync auto-detects ~/.hmem/memory.hmem as the target, but hmem-mcp reads from Agents/DEVELOPER/DEVELOPER.hmem. This mismatch causes "No memories found" after pull.
Do this on every device/agent that syncs with the server. After pulling, verify with read_memory() that the O-entries have the correct IDs.
The migration tags old O-entries as #legacy. These still use the old flat format but are readable via dual-format support. Options:
update_memory(id="O0042", irrelevant=true) for entries you don't need/hmem-curate to review and clean up #legacy entriesRecommendation: keep them for a week to make sure everything works, then curate.
Once you're confident the migration worked:
find ~/.hmem -name "*.pre-migration-backup" -exec rm {} \;
Migration failed mid-way: Restore from backup and retry.
cp "${HMEM_FILE}.pre-migration-backup" "$HMEM_FILE"
O-entry has wrong project: Use move_nodes to relocate sessions/exchanges:
move_nodes(node_ids=["O0048.3"], target_o_id="O0051")
Statusline shows wrong count: The statusline cache refreshes every 30s. Wait or:
rm /tmp/.hmem_statusline_cache
New exchanges still use old format: Make sure cli-log-exchange.ts is the updated version (v5.3+). Run hmem --version to confirm.
#legacy entries are readable via dual-format support in getOEntryExchanges()tools
Update flow for its-over-9k (hmem). Runs `npm update -g`, syncs skills, applies migrations, verifies hooks, shows the changelog. Use when the user asks to update/upgrade hmem, o9k, o9k-mcp, or its-over-9k (any language), or when the startup version-check flags a new release. Runs the npm update itself — don't assume it's already done.
development
Mandatory entry point for every Cortex session — invoke at conversation start, after /clear, and after any load_project call. All stable context (H-entries, projects, device, sync) is pre-injected by the hook — no read_memory(mode='essentials') needed. Surfaces pending git work, Next Steps + open T-tasks, and runs the O-entry routing check.
tools
Curate an .hmem file (your own or foreign) — mark obsolete/irrelevant, fix titles, consolidate duplicates, repair broken links. **Requires the `hmem-curate` MCP server** (skill prompts the user to enable it on entry). Use whenever the user says 'aufräumen', 'memory aufräumen', 'Speicher aufräumen', 'hmem aufräumen', 'clean up memory', 'tidy up hmem', 'curate memory', 'consolidate duplicates', 'merge duplicate entries', 'fix broken links', 'kümmer dich um die Memory', or invokes /o9k-curate. Also trigger when `memory_health()` flags BLOCKER/WARNING issues, when a P-entry's load_project output exceeds 4k tokens (session-start noise check defers to this skill), or before any batch cleanup of L, E, D, P entries. Skipping this skill and editing memory directly bypasses health checks, severity triage, and obsolete-chain integrity — never curate without it.
testing
Add a new rule and place it correctly — decide between a cross-project R-entry and a project-specific subnode under the active project's Rules section. Use whenever the user says 'neue Regel', 'Regel hinzufügen', 'new rule', 'add a rule', or invokes /o9k-new-rule. Critical safeguard: project-specific rules placed as R-entries pollute the session-start Rules listing across every project — get the scope right BEFORE writing.