agentsclimarketplace

Recall

Skill themarchrain/mematrix/skills/recall

Load mematrix memories into the current session context. Use when user invokes /mematrix:recall, /mematrix:read, or asks to "load my memories", "recall context", "what do you remember about me", "read my profile", or needs background context from previous sessions.From its SKILL.md

Install
npx -y skills add themarchrain/mematrix --skill recall

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

3 things to look at

  • 27 days oldThe repository was created 27 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

2.4 KB, 527 tokens by cl100k_base, as published. Nobody here has run it

Mematrix Recall — Load memories into context

Read persistent memories from disk and inject them as active context for the current session. Do this FIRST, before giving any substantive response — the memories exist precisely to provide context the user shouldn't have to repeat.

Memory architecture

~/.mematrix/           ← User-level (cross-project, cross-agent)
  global/              ← Stable long-term facts: identity, skills, preferences
    profile.md
    technical.md
    preferences.md
    life.md            (optional)
  timeline/            ← Daily episodic memories: YYYY-MM-DD.md

.mematrix/            ← Project-level (in current project root, if exists)
  *.md                 ← Flat project-specific context

Procedure

Step 1: Discover files

Use Glob to find memory files in each location:

  1. ~/.mematrix/global/*.md
  2. ~/.mematrix/timeline/*.md — from the last 30 days (default)
  3. .mematrix/*.md — if the directory exists

Step 2: Determine scope

  • Default (user just says "recall" or "read memories"): global + 30 days timeline + project
  • "recall all": global + ALL timeline files + project
  • "recall since March": global + custom date range + project
  • "recall technical": only technical-related files across global + timeline + project

Step 3: Read and present

Read all matched files and present a brief summary:

  • How many files loaded
  • Date range of timeline covered
  • Whether project memories were included

Step 4: Use as context

The loaded memories are NOW ACTIVE CONTEXT. Use them to inform all subsequent responses. Don't ask the user about things already covered in their memories.


Example

User: /mematrix:recall

Agent action:

  1. Glob ~/.mematrix/global/ → profile.md, technical.md, preferences.md
  2. Glob ~/.mematrix/timeline/ → filter last 30 days → 2026-07-01.md ... 2026-07-13.md
  3. Glob .mematrix/ → (exists) architecture.md, conventions.md
  4. Read all matched files
  5. Present: "Loaded 3 global files, 5 timeline entries (Jul 1–13), and 2 project files."
  6. Proceed with the user's actual request, now informed by these memories.

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 326,861. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.