skills$openclaw/git-notes-memory
mourad-ghafiri469

by mourad-ghafiri

git-notes-memory – OpenClaw Skill

git-notes-memory is an OpenClaw Skills integration for coding workflows. Git-Notes-Based knowledge graph memory system. Claude should use this SILENTLY and AUTOMATICALLY - never ask users about memory operations. Branch-aware persistent memory using git notes. Handles context, decisions, tasks, and learnings across sessions.

469 stars5.7k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

namegit-notes-memory
descriptionGit-Notes-Based knowledge graph memory system. Claude should use this SILENTLY and AUTOMATICALLY - never ask users about memory operations. Branch-aware persistent memory using git notes. Handles context, decisions, tasks, and learnings across sessions. OpenClaw Skills integration.
ownermourad-ghafiri
repositorymourad-ghafiri/git-notes-memory
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @mourad-ghafiri/git-notes-memory
last updatedFeb 7, 2026

Maintainer

mourad-ghafiri

mourad-ghafiri

Maintains git-notes-memory in the OpenClaw Skills directory.

View GitHub profile
File Explorer
4 files
.
_meta.json
331 B
memory.py
35.3 KB
README.md
9.5 KB
SKILL.md
10.7 KB
SKILL.md

name: git-notes-memory description: Git-Notes-Based knowledge graph memory system. Claude should use this SILENTLY and AUTOMATICALLY - never ask users about memory operations. Branch-aware persistent memory using git notes. Handles context, decisions, tasks, and learnings across sessions.

GitNotesMemory - Claude Integration Guide

CRITICAL: SILENT OPERATION RULES

These rules are ABSOLUTE and must NEVER be violated:

  1. NEVER ask "should I remember?" or "want me to save?"
  2. NEVER announce "I'll remember this" or "saving to memory"
  3. NEVER show memory command output to users
  4. NEVER mention memory system unless user explicitly asks about it
  5. JUST DO IT - silently in the background

Quick Reference

# Replace $SKILL_PATH with actual path to memory.py
# Replace $DIR with the project directory path

python3 $SKILL_PATH/memory.py -p $DIR <command>

Essential Commands

CommandWhen to Use
sync --startALWAYS at session start
sync --end '{"summary":"..."}'At session end (optional but recommended)
remember '{"..."}' -t tags -i hStore important information
get <topic>Retrieve context about a topic
search "<query>"Full-text search across all memories
recall -i <id>Get full details of a specific memory

Importance Flags

FlagLevelWhen to Use
-i cCriticalUser says "always remember", "never forget", explicit preferences
-i hHighDecisions, architecture choices, user corrections, preferences
-i nNormalGeneral information (default)
-i lLowTemporary notes, might be pruned

Session Lifecycle

1. Session Start (MANDATORY)

Always run sync --start at the beginning of every session:

python3 $SKILL_PATH/memory.py -p $DIR sync --start

Output explains:

{
  "b": "main",           // Current git branch
  "t": {"api": 5, "auth": 3},  // Top topics with memory counts
  "c": [...],            // Critical memories (always review these)
  "n": 42,               // Total memory count
  "h": [...]             // High-importance recent memories
}

Use this context to:

  • Understand what the user has been working on
  • Reference previous decisions
  • Maintain continuity across sessions

Silently remember when user:

  • Makes a decision: "Let's use PostgreSQL" → remember with -i h
  • States a preference: "I prefer tabs over spaces" → remember with -i h or -i c
  • Learns something: "Oh, so that's how async works" → remember with -i n
  • Sets a task: "We need to fix the login bug" → remember with -i n
  • Shares important context: Project requirements, constraints, goals

Retrieve context when:

  • User asks about something previously discussed → get <topic>
  • You need to recall a specific decision → search "<keywords>"
  • User references "what we decided" → check relevant memories

3. Session End (Recommended)

python3 $SKILL_PATH/memory.py -p $DIR sync --end '{"summary": "Brief session summary"}'

Memory Content Best Practices

Good Memory Structure

For decisions:

{"decision": "Use React for frontend", "reason": "Team expertise", "alternatives": ["Vue", "Angular"]}

For preferences:

{"preference": "Detailed explanations", "context": "User prefers thorough explanations over brief answers"}

For learnings:

{"topic": "Authentication", "learned": "OAuth2 flow requires redirect URI configuration"}

For tasks:

{"task": "Implement user dashboard", "status": "in progress", "blockers": ["API not ready"]}

For notes:

{"subject": "Project Architecture", "note": "Microservices pattern with API gateway"}

Tags

Use tags to categorize memories for better retrieval:

  • -t architecture,backend - Technical categories
  • -t urgent,bug - Priority/type markers
  • -t meeting,requirements - Source context

Command Reference

Core Commands

sync --start

Initialize session, get context overview.

python3 $SKILL_PATH/memory.py -p $DIR sync --start
sync --end

End session with summary (triggers maintenance).

python3 $SKILL_PATH/memory.py -p $DIR sync --end '{"summary": "Implemented auth flow"}'
remember

Store a new memory.

python3 $SKILL_PATH/memory.py -p $DIR remember '{"key": "value"}' -t tag1,tag2 -i h

Get memories related to a topic (searches entities, tags, and content).

python3 $SKILL_PATH/memory.py -p $DIR get authentication
search

Full-text search across all memories.

python3 $SKILL_PATH/memory.py -p $DIR search "database migration"
recall

Retrieve memories by various criteria.

# Get full memory by ID
python3 $SKILL_PATH/memory.py -p $DIR recall -i abc123

# Get memories by tag
python3 $SKILL_PATH/memory.py -p $DIR recall -t architecture

# Get last N memories
python3 $SKILL_PATH/memory.py -p $DIR recall --last 5

# Overview of all memories
python3 $SKILL_PATH/memory.py -p $DIR recall

Update Commands

update

Modify an existing memory.

# Replace content
python3 $SKILL_PATH/memory.py -p $DIR update <id> '{"new": "content"}'

# Merge content (add to existing)
python3 $SKILL_PATH/memory.py -p $DIR update <id> '{"extra": "field"}' -m

# Change importance
python3 $SKILL_PATH/memory.py -p $DIR update <id> -i c

# Update tags
python3 $SKILL_PATH/memory.py -p $DIR update <id> -t newtag1,newtag2
evolve

Add an evolution note to track changes over time.

python3 $SKILL_PATH/memory.py -p $DIR evolve <id> "User changed preference to dark mode"
forget

Delete a memory (use sparingly).

python3 $SKILL_PATH/memory.py -p $DIR forget <id>

Entity Commands

entities

List all extracted entities with counts.

python3 $SKILL_PATH/memory.py -p $DIR entities
entity

Get details about a specific entity.

python3 $SKILL_PATH/memory.py -p $DIR entity authentication

Branch Commands

branches

List all branches with memory counts.

python3 $SKILL_PATH/memory.py -p $DIR branches
merge-branch

Merge memories from another branch (run after git merge).

python3 $SKILL_PATH/memory.py -p $DIR merge-branch feature-auth

Branch Awareness

How It Works

  • Each git branch has isolated memory storage
  • New branches automatically inherit from main/master
  • After git merge, run merge-branch to combine memories

Branch Workflow

1. User on main branch → memories stored in refs/notes/mem-main
2. User creates feature branch → auto-inherits main's memories
3. User works on feature → new memories stored in refs/notes/mem-feature-xxx
4. After git merge → run merge-branch to combine memories

Memory Types (Auto-Detected)

The system automatically classifies memories based on content:

TypeTrigger Words
decisiondecided, chose, picked, selected, opted, going with
preferenceprefer, favorite, like best, rather, better to
learninglearned, studied, understood, realized, discovered
tasktodo, task, need to, plan to, next step, going to
questionwondering, curious, research, investigate, find out
notenoticed, observed, important, remember that
progresscompleted, finished, done, achieved, milestone
info(default for unclassified content)

Entity Extraction

Entities are automatically extracted for intelligent retrieval:

  • Explicit fields: topic, subject, name, category, area, project
  • Hashtags: #cooking, #urgent, #v2
  • Quoted phrases: "machine learning", "user authentication"
  • Capitalized words: React, PostgreSQL, Monday
  • Key terms: Meaningful words (common words filtered out)

What to Remember

DO remember:

  • User decisions and their rationale
  • Stated preferences (coding style, communication style, tools)
  • Project architecture and constraints
  • Important context that affects future work
  • Tasks, blockers, and progress
  • Corrections ("actually, I meant..." → high importance)
  • Explicit requests to remember something → critical importance

DON'T remember:

  • Trivial conversation
  • Information easily derivable from code
  • Secrets, passwords, API keys
  • One-time questions with no future relevance
  • Duplicate information already stored

Output Format Reference

Tier 0: sync --start

{
  "b": "feature-auth",                    // Current branch
  "t": {"auth": 5, "api": 3, "db": 2},   // Topics with counts
  "c": [{"id": "x", "s": "summary", "t": "preference"}],  // Critical
  "n": 15,                                // Total count
  "h": [{"id": "y", "s": "summary"}]     // High importance
}

Tier 1: get/search

{
  "topic": "auth",
  "mem": [
    {"id": "abc", "s": "decided OAuth2", "t": "decision", "i": "h", "b": "main"}
  ]
}

Tier 2: recall -i <id>

{
  "d": {"decision": "Use OAuth2"},  // Full data
  "e": ["auth", "oauth2"],          // Entities
  "t": "decision",                   // Type
  "g": ["architecture"],             // Tags
  "i": "h",                          // Importance
  "b": "main",                       // Branch
  "c": "2024-01-15T10:30:00",       // Created
  "u": "2024-01-15T10:30:00",       // Updated
  "a": 3,                            // Access count
  "ev": [{"n": "note", "t": "..."}] // Evolution notes (if any)
}

Example Silent Flow

User: "Let's build a REST API with Python"
Claude: [silently: remember '{"decision": "REST API", "language": "Python"}' -t architecture -i h]
        [responds about REST API setup WITHOUT mentioning memory]

User: "I prefer FastAPI over Flask"
Claude: [silently: remember '{"preference": "FastAPI over Flask", "reason": "user preference"}' -i h]
        [continues discussion using FastAPI WITHOUT saying "I'll remember"]

User: "What did we decide about the API?"
Claude: [silently: get api]
        [uses retrieved context to answer accurately]

User: "Actually, let's use Flask instead"
Claude: [silently: remember '{"decision": "Changed to Flask", "previous": "FastAPI"}' -i h]
        [silently: evolve <fastapi-memory-id> "User changed preference to Flask"]
        [acknowledges change WITHOUT mentioning memory update]

Troubleshooting

Memory not found:

  • Use search with different keywords
  • Check entities to see what's indexed
  • Use recall --last 10 to see recent memories

Context seems stale:

  • Always run sync --start at session beginning
  • Check current branch with branches

After git operations:

  • After git merge: run merge-branch <source-branch>
  • After git checkout: sync --start will load correct branch context
README.md

GitNotesMemory

Git-Based Knowledge Graph Memory System for Claude Code

A persistent, branch-aware memory system that uses git notes to store and retrieve contextual information across sessions. Designed as a Claude Code skill for automatic, silent operation.

Features

  • Git-Native Storage - Uses git notes for persistence (survives branches, stays local, never pushed)
  • Branch-Aware - Each branch has its own memory context with automatic inheritance
  • Knowledge Graph - Entity extraction and linking for intelligent retrieval
  • Token-Efficient - Tiered retrieval system minimizes context usage
  • Domain-Agnostic - Works with any content type (code, docs, research, learning)
  • Silent Operation - Runs automatically without user prompts

How It Works

Storage Architecture

.git/
└── refs/notes/
    ├── mem-main        # Memory data for main branch
    ├── mem-feature     # Memory data for feature branch
    ├── ent-main        # Entity index for main branch
    ├── ent-feature     # Entity index for feature branch
    ├── idx-main        # Compact index for main branch
    └── idx-feature     # Compact index for feature branch

Notes are attached to the repository's root commit, ensuring they persist across all operations while remaining branch-specific.

Tiered Retrieval

┌─────────────────────────────────────────────────────────────┐
│ TIER 0: sync --start                          ~50 tokens   │
│ Returns: branch, topics, critical memories, counts         │
├─────────────────────────────────────────────────────────────┤
│ TIER 1: get <topic>                          ~100 tokens   │
│ Returns: memories related to a specific topic              │
├─────────────────────────────────────────────────────────────┤
│ TIER 2: recall -i <id>                       Full data     │
│ Returns: complete memory entry (on-demand only)            │
└─────────────────────────────────────────────────────────────┘

Branch Workflow

main ─────●─────●─────●─────●─────●───────●─────►
          │                 ▲             │
          │   feature       │   merge     │
          └────●────●───────┘   memories  │
               │    │                     │
          memories  memories         merge-branch
          inherited created          feature
  1. Create branch → Automatically inherits memories from main/master
  2. Work on branch → New memories stored in branch-specific notes
  3. Merge branch → Run merge-branch to combine memories

Installation

As a Claude Code Skill

  1. Copy the git-notes-memory folder to your skills directory:

    cp -r git-notes-memory ~/.claude/skills/
    
  2. Or symlink for development:

    ln -s /path/to/git-notes-memory ~/.claude/skills/git-notes-memory
    

Add a CLAUDE.md file to your project root to activate the skill:

# Memory

YOU MUST ALWAYS USE `git-notes-memory` SKILL.

This instructs Claude to automatically use the memory skill for the project.

Standalone Usage

python3 memory.py -p /path/to/project <command>

Commands

Session Management

CommandDescription
sync --startInitialize session, return compact context
sync --end '{"summary": "..."}'End session, store summary

Memory Operations

CommandDescription
remember '{"key": "value"}' -i hStore memory with importance
recallOverview of all memories
recall -i <id>Get full memory by ID
recall --last 5Get last 5 memories
get <topic>Get memories related to topic
update <id> '{}' -mUpdate memory (merge mode)
evolve <id> "note"Add evolution note
forget <id>Delete memory

Entity Operations

CommandDescription
entitiesList all entities with counts
entity <name>Get entity details and linked memories

Branch Operations

CommandDescription
branchesList branches with memory counts
merge-branch <source>Merge memories from another branch

Importance Levels

FlagLevelUse Case
-i cCriticalMust never forget (user preferences, key decisions)
-i hHighImportant (architecture, major decisions)
-i nNormalStandard (default)
-i lLowTemporary (can be pruned)

Memory Types

Memories are automatically classified based on content:

TypeTrigger Words
decisiondecided, chose, picked, selected, opted
preferenceprefer, favorite, like best, rather
learninglearned, studied, understood, realized
tasktodo, need to, plan to, next step
questionwondering, curious, research, investigate
notenoticed, observed, important
progresscompleted, finished, achieved
info(default)

Entity Extraction

Entities are automatically extracted from content:

  • Explicit fields: topic, subject, name, category
  • Hashtags: #cooking, #project, #important
  • Quoted phrases: "French Revolution", "quick sort"
  • Capitalized words: Paris, Einstein, Monday
  • Key terms: Meaningful words (stop words filtered)

Tier 0: Session Start

{
  "b": "main",
  "t": {"auth": 5, "database": 3, "api": 2},
  "c": [{"id": "abc123", "s": "prefer TypeScript", "t": "preference"}],
  "n": 42,
  "h": [{"id": "def456", "s": "use PostgreSQL"}]
}

Tier 1: Topic Query

{
  "topic": "auth",
  "mem": [
    {"id": "abc123", "s": "decided OAuth2", "t": "decision", "i": "h", "b": "main"},
    {"id": "def456", "s": "JWT for sessions", "t": "decision", "i": "n", "b": "feature"}
  ]
}

Tier 2: Full Memory

{
  "d": {"decision": "Use OAuth2", "reason": "Better security"},
  "e": ["auth", "oauth2", "security"],
  "t": "decision",
  "g": ["architecture"],
  "i": "h",
  "b": "main",
  "c": "2024-01-15T10:30:00",
  "u": "2024-01-15T10:30:00",
  "a": 3
}

Example Usage

Basic Session

# Start session
python3 memory.py -p . sync --start

# Remember something
python3 memory.py -p . remember '{"decision": "use React", "reason": "team expertise"}' -i h

# Query topic
python3 memory.py -p . get frontend

# End session
python3 memory.py -p . sync --end '{"summary": "Set up frontend architecture"}'

Branch Workflow

# On main branch
python3 memory.py -p . remember '{"project": "webapp", "stack": "React + Node"}'

# Switch to feature branch
git checkout -b feature/auth

# Start session (auto-inherits from main)
python3 memory.py -p . sync --start

# Add branch-specific memories
python3 memory.py -p . remember '{"auth": "OAuth2", "provider": "Auth0"}' -i h

# After merging in git
git checkout main
git merge feature/auth

# Merge memories
python3 memory.py -p . merge-branch feature-auth

Skill Integration

When used as a Claude Code skill, the system operates silently:

  1. Never asks "should I remember this?"
  2. Never announces "I'll remember that"
  3. Never shows command output to users
  4. Automatically manages memory lifecycle

Session Protocol

Session Start:
  → sync --start
  → Use context to inform responses

During Session:
  → Silently remember decisions, preferences, learnings
  → Query topics when relevant context needed

Session End:
  → sync --end with session summary

Technical Details

Data Model

Memory Entry:

{
    "d": Any,           # Data (the actual content)
    "e": List[str],     # Entities (auto-extracted)
    "t": str,           # Type (decision, preference, etc.)
    "g": List[str],     # Tags
    "i": str,           # Importance (c/h/n/l)
    "b": str,           # Branch (originating branch)
    "c": str,           # Created (ISO timestamp)
    "u": str,           # Updated (ISO timestamp)
    "a": int            # Access count
}

Index Entry (compact):

{
    "s": str,           # Summary (50 chars max)
    "e": List[str],     # Top 3 entities
    "t": str,           # Type
    "i": str,           # Importance
    "u": str            # Updated (date only)
}

Merge Strategy

When merging memories from another branch:

  • New keys: Added directly
  • Nested dicts: Recursively merged
  • Lists: Union (no duplicates)
  • Conflicting memories: Keep latest by update time
  • Topic counts: Take maximum

Requirements

  • Python 3.7+
  • Git (any recent version)
  • No external dependencies

License

MIT

Contributing

Contributions welcome! Please ensure any changes maintain:

  • Silent operation (no user prompts)
  • Token efficiency (compact outputs)
  • Branch awareness (proper isolation)
  • Domain agnosticism (no tech-specific patterns)

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install git-notes-memory?

Run openclaw add @mourad-ghafiri/git-notes-memory in your terminal. This installs git-notes-memory into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/mourad-ghafiri/git-notes-memory. Review commits and README documentation before installing.