Back to list
rcmiller01

memory-write

by rcmiller01

0🍴 0📅 Jan 15, 2026

SKILL.md


name: memory-write description: Persist a decision or learning to Mother-Harness long-term memory

Memory Write Skill

Saves decisions, rationale, and learnings to persistent memory for later retrieval.

When to Use

Use this skill when you want to:

  • Record an important design decision
  • Save a learning or insight from a project
  • Store rationale that should be retrievable later
  • Document an architectural choice

Input Format

Provide structured information:

Decision: [The decision that was made]
Rationale: [Why this decision was made]
Project: [Project name - optional]
Tags: [Comma-separated tags - optional]

Example

Decision: Use PostgreSQL over MongoDB for the user service
Rationale: Need strong consistency for financial transactions, relational queries are primary use case, team has more SQL expertise
Project: payment-platform
Tags: database, architecture, infrastructure

What Happens

  1. The decision is sent to the n8n memory-write webhook
  2. An embedding is generated for semantic search
  3. The record is stored in both Qdrant (vector) and Postgres (relational)
  4. You receive a confirmation with the record ID

Implementation

Call the n8n webhook at: http://localhost:5678/webhook/memory-write

curl -X POST http://localhost:5678/webhook/memory-write \
  -H "Content-Type: application/json" \
  -d '{
    "decision": "Use PostgreSQL over MongoDB",
    "rationale": "Strong consistency needed...",
    "project": "payment-platform",
    "tags": ["database", "architecture"]
  }'

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