smithery.ai

memory-sync

Memory Sync Skill

First seen Mar 14, 2026

Installation

$ npx skills add https://smithery.ai

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,040 B
  • docs SUMMARY.md 36 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 3 installs

SKILL.md

Memory Sync Skill

How to manually sync learnings to memory systems after tasks.

Dual Memory Architecture

Ariff uses two complementary memory systems:

  • mem0-memory-mcp - AI-native semantic memory for quick recall
  • obsidian-memory - Structured vault for long-term knowledge

Manual Sync Commands

Quick Save to mem0

Use mcp__mem0-memory-mcp__add_memory to store:
- Task context and solution
- Key learnings and gotchas
- Useful commands discovered

Save to Obsidian

Use mcp__obsidian-memory__create_note with:
- path: "tasks/YYYY-MM-DD-task-slug.md"
- content: Structured task notes

Memory Entry Template

## Task: [Brief Title]
Date: [YYYY-MM-DD]
Device: [hostname]

### Problem
[What was the issue/request]

### Solution
[How it was resolved]

### Key Learnings
- [Learning 1]
- [Learning 2]

### Related
- Previous tasks: [links]
- Documentation: [links]

Creating Agent Instructions

When a mistake or pattern should be avoided in future:

  1. Create instruction file at:

`` Ariff-code-config/instructions/[category]-[topic].instructions.md ``

  1. Use format:

```markdown


description: [What this instruction prevents/ensures] applyTo: [glob pattern like **/*.py or /canvas/]


# [Rule Title]

## Context [When this applies]

## Rule [What to do/not do]

## Example [Good vs bad example] ```

  1. Add to 00INSTRUCTIONSINDEX.md if significant

Reconciliation

If memories seem out of sync:

  1. Query both systems for topic
  2. Compare entries
  3. Update older system with newer info
  4. Remove duplicates with less detail

When to Save

Save memory when:

  • ✅ Task completed successfully
  • ✅ Discovered non-obvious solution
  • ✅ Made mistake worth remembering
  • ✅ Found useful tool/command
  • ✅ Clarified user preference

Skip saving when:

  • ❌ Trivial task (simple file edit)
  • ❌ Already documented elsewhere
  • ❌ One-off unique situation