Back to list
robabby

init-memory

by robabby

Documentation website for AI-ready Obsidian vaults with downloadable starter templates

0🍴 0📅 Jan 13, 2026

SKILL.md


name: init-memory description: Initialize the memory system in an AI-ready vault. Creates the folder structure, Memory.md dashboard, and example files needed for cross-session memory persistence. Use when setting up a new vault or adding memory capabilities to an existing vault.

Init Memory

Create the memory system folder structure and dashboard.

Memory System Structure

Areas/AI/Memory/
├── Memory.md           # Dashboard with DataView queries
├── Episodic/           # Events, breakthroughs, frustrations
├── Semantic/           # Facts, definitions, project details
├── Procedural/         # Patterns, how-tos, workflows
└── Strategic/          # Decisions, approaches, plans

Workflow

  1. Confirm target location

    • Default: Areas/AI/Memory/
    • Ask user if different location preferred
  2. Create folder structure

    • Create parent folders if needed
    • Create Memory/ directory
    • Create four type subdirectories
  3. Create Memory.md dashboard

    • Overview of memory system
    • DataView queries for recent/important memories
    • Quick reference for memory types
  4. Create example memories (optional)

    • One example in each folder
    • Demonstrates proper format
    • Can be deleted after review
  5. Update CLAUDE.md

    • Add memory system documentation
    • Add memory-related instructions

Memory.md Template

---
created: {date}
type: dashboard
tags:
  - memory-system
  - ai
---

# Memory System

Cross-session memory for AI collaboration.

## Memory Types

| Type | Purpose | When to Use |
|------|---------|-------------|
| **Episodic** | Events & experiences | Breakthroughs, frustrations, milestones |
| **Semantic** | Facts & knowledge | Definitions, project details, learned info |
| **Procedural** | Patterns & how-tos | Workflows, techniques, processes |
| **Strategic** | Decisions & plans | Choices made, approaches, rationale |

## Recent Memories

```dataview
TABLE type, importance, concepts
FROM "Areas/AI/Memory"
WHERE type != "dashboard"
SORT created DESC
LIMIT 10

High Importance

TABLE type, created, concepts
FROM "Areas/AI/Memory"
WHERE importance >= 0.7
SORT importance DESC

Usage

  • /remember - Store a new memory
  • /recall {terms} - Search memories
  • /reflect - End-of-session consolidation
  • /glean - Surface patterns across memories

## Parameters

- `$ARGUMENTS` (optional): Custom path for memory system (default: `Areas/AI/Memory/`)

## Example

User: `/init-memory`

Response:
"Initializing memory system...

Created:
→ `Areas/AI/Memory/`
→ `Areas/AI/Memory/Memory.md` (dashboard)
→ `Areas/AI/Memory/Episodic/`
→ `Areas/AI/Memory/Semantic/`
→ `Areas/AI/Memory/Procedural/`
→ `Areas/AI/Memory/Strategic/`

Memory system ready. Use `/remember` to store your first memory."

Score

Total Score

50/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon