memory-lifecycle
Manage entity status transitions in Basic Memory: archive completed work, move notes between status folders, update frontmatter, and handle edge cases. Use when marking items complete, archiving old entities, or managing any folder-based status workflow.
By basicmachines-co · 768 installs
npx skills add basicmachines-co/basic-memory --skill memory-lifecycle
Source repository · Upstream listing
Memory Lifecycle
Manage how entities move through status stages in Basic Memory. The core principle: archive, never delete. Completed work is valuable context — move it out of the active view, but keep it in the knowledge graph.
When to Use
User says something is "done", "finished", "completed", "submitted", "missed", or "cancelled"
Moving entities between status folders (active → archive, pipeline → active, etc.)
Reverting a mistaken completion
Periodic cleanup of stale active items
Core Principle: Archive, Never Delete
Deleting a note removes it from the knowledge graph — all its observations, relations, and history disappear. Archiving preserves everything while signaling the entity is no longer active.
The only exception: notes created by mistake (typos, true duplicates) can be deleted.
Folder Conventions
Organize entities by status using folders. The exact folder names depend on your domain, but follow a consistent pattern:
For tasks specifically:
For any entity type with a clear lifecycle:
Pick folder names that match your domain. The pattern matters more than the specific names.
Status Detection
When the user mentions completion or status change, extract the intent:
Signal Status Action
"finished", "done", "completed", "shipped" Complete Move to archive/completed folder
"submitted", "sent", "delivered" Complete Move to archive/completed folder
"missed", "passed", "skipped", "expired" Missed Move to archive or missed folder
"cancelled", "abandoned", "killed" Cancelled Move to archive folder
"paused", "on hold", "deferred" Paused Update frontmatter status, keep in place
"restarting", "reopening", "reviving" Reactivate Move back to active folder
Workflow
1. Find the Entity
Search Basic Memory with multiple variations to locate the entity:
If multiple matches come back, present options and ask which one.
If no match is found, ask for clarification — don't guess.
2. Move the File
Use move note to relocate the entity to the appropriate status folder:
The permalink stays the same, so all existing [[wiki links]] and memory:// URLs continue to resolve.
3. Update Frontmatter
After moving, update the status in frontmatter to match:
If there's a completion date field, set it:
4. Confirm
Report what was done concisely:
Edge Cases
Already Archived
If the entity is already in an archive/completed folder, notify the user:
"Quarterly Report is already in tasks/completed/. Want me to update anything on it?"
Partial Completion
Sometimes only part of an entity is done. Don't move it — instead, update observations or status notes within the entity to reflect partial progress.
Revert / Reactivate
If something was archived by mistake, move it back:
Status Without Movement
Some status changes don't require a folder move — "paused" or "blocked" items often stay in active/ with just a frontmatter update. Reserve folder moves for terminal or major state transitions.
Relationship to Other Skills
memory tasks : Tasks are a specific lifecycle case. This skill covers the general pattern; memory tasks covers task specific fields (steps, current step, context).
memory notes : Use search before create (from memory notes) to find the entity before transitioning it.
memory defrag : Periodic defrag can identify stale active items that should be archived.
Guidelines
Archive, never delete. The knowledge graph benefits from historical context.
Move first, then update frontmatter. This order ensures the file is in the right place even if the edit step fails.
Permalinks survive moves. Links to the entity keep working after a move note .
Be concise in confirmations. The user knows their system — just report what changed.
Ask when ambiguous. If multiple entities match or the target folder isn't clear, ask rather than guess.
Batch operations are fine. If the user says "archive all completed tasks", find them all, confirm the list, then move them in sequence.