← Back to list

memory-read
by rcmiller01
⭐ 0🍴 0📅 Jan 15, 2026
SKILL.md
name: memory-read description: Search and retrieve past decisions from Mother-Harness long-term memory
Memory Read Skill
Retrieves relevant past decisions and learnings from persistent memory.
When to Use
Use this skill when you want to:
- Recall past decisions on a similar topic
- Find rationale for previous choices
- Search for all decisions in a project
- Look up decisions by tag
Input Format
Provide a search query:
Query: [Natural language query or keywords]
Project: [Filter by project - optional]
Tags: [Filter by tags - optional]
Limit: [Max results, default 5 - optional]
Examples
Semantic Search
Query: database selection decisions
Limit: 3
Project-Scoped
Query: authentication approach
Project: payment-platform
Tag Filter
Query: recent infrastructure decisions
Tags: architecture, infrastructure
What Happens
- Query is sent to the n8n memory-read webhook
- Semantic search finds relevant vectors in Qdrant (using Ollama embeddings)
- Results are returned with similarity scores
Response Format
{
"results": [
{
"decision": "Use PostgreSQL over MongoDB",
"rationale": "Strong consistency...",
"project": "payment-platform",
"tags": ["database"],
"timestamp": "2024-01-15T10:30:00Z",
"score": 0.92
}
],
"total": 5,
"query": "database selection decisions"
}
Implementation
Call the n8n webhook at: http://localhost:5678/webhook/memory-read
curl -X POST http://localhost:5678/webhook/memory-read \
-H "Content-Type: application/json" \
-d '{
"query": "database selection decisions",
"limit": 5
}'
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