🧠 Memphis Cognitive Engine - Complete AI Memory System
Transform your OpenClaw agent into a cognitive partner with:
- Model A: Record conscious decisions (manual)
- Model B: Detect decisions from git (automatic)
- Model C: Predict decisions before you make them (predictive)
- Advanced: TUI, Knowledge Graph, Reflection, Trade Protocol, Multi-Agent Sync
Production-ready with 100% working commands (17/17), zero bugs.
⚠️ IMPORTANT: This is a META-PACKAGE (documentation only). Memphis CLI must be installed separately.
Quick start: clawhub install memphis-cognitive
Standardmäßig ist der Prompt ausgewählt, der zuerst die Quelle prüft. Sie können zu einem direkten Befehl wechseln oder eine lokale Kopie herunterladen.
Quelldateien prüfen
Lesen Sie SKILL.md und alle von SkillsMP angezeigten Begleitdateien, bevor Sie sich für eine Installation entscheiden.
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Ein direkter Befehl überspringt den Prüf-Prompt. Prüfen Sie die Quelle, bevor Sie ihn ausführen.
Der Befehl bleibt in einer Zeile. Scrollen Sie horizontal, um ihn vor dem Kopieren vollständig zu prüfen.
Sie bevorzugen eine lokale Kopie? Laden Sie die Dateien herunter, die SkillsMP derzeit vorliegen.
Datei-Explorer
5 Dateien
SKILL.md wird angezeigt
SKILL.md
Quellanweisungen · Schreibgeschützte Vorschau
name
Memphis Cognitive Engine
version
3.7.2
description
🧠 Memphis Cognitive Engine - Complete AI Memory System
Transform your OpenClaw agent into a cognitive partner with:
- Model A: Record conscious decisions (manual)
- Model B: Detect decisions from git (automatic)
- Model C: Predict decisions before you make them (predictive)
- Advanced: TUI, Knowledge Graph, Reflection, Trade Protocol, Multi-Agent Sync
Production-ready with 100% working commands (17/17), zero bugs.
⚠️ IMPORTANT: This is a META-PACKAGE (documentation only). Memphis CLI must be installed separately.
Quick start: clawhub install memphis-cognitive
Other Memphis skills on ClawHub (memphis, memphis-bootstrap, memphis-brain, memphis-super) are DEPRECATED. Please use this skill only:clawhub install memphis-cognitive
🎉 PRODUCTION READY - 100% WORKING, ZERO BUGS!
Status (2026-03-05 02:03 CET):
✅ 17/17 commands working (100%)
✅ Zero critical bugs
✅ All advanced features tested
✅ Multi-agent network operational
✅ Binary builds available (Linux, macOS, Windows)
✅ Consolidated to single skill (2026-03-05)
⚡ Installation (5 minutes)
⚠️ IMPORTANT: This skill is a META-PACKAGE. Memphis CLI must be installed separately.
# Check sync status
memphis share-sync --status
# Push local blocks to remote
memphis share-sync --push
# Pull remote blocks to local
memphis share-sync --pull
# Custom remote
memphis share-sync --push --remote 10.0.0.80 --user memphis
Performance: 18 blocks synced in 0.81s ✅
6. Decision Management
List and manage decisions
# List all decisions
memphis decisions list
# Filter by tags
memphis decisions list --tags project,tech
# Limit results
memphis decisions list --limit 5
# JSON output
memphis decisions list --json
# Show by numeric index
memphis show decision 0
memphis show decision 1
# Show by decisionId
memphis show decision e4b5877bf16abae5
📚 Complete Command Reference
Core Commands (17 total - 100% working)
Decisions:
memphis decide - Record decision (Model A)
memphis decide-fast - Ultra-fast capture (<100ms)
memphis decisions list - List all decisions
memphis show decision <id> - Show decision details
memphis revise - Revise decision
memphis infer - Detect from git (Model B)
memphis predict - Predict decisions (Model C)
memphis suggest - Proactive suggestions
Memory:
memphis journal - Add journal entry
memphis ask - Query with context
memphis recall - Semantic search
memphis reflect - Generate insights
Advanced:
memphis tui - Terminal UI dashboard
memphis graph build - Knowledge graph
memphis trade create/accept - Trade protocol
memphis share-sync - Multi-agent sync
memphis status - System status
🎯 Real-World Examples
Scenario 1: Developer Starting New Project
# 1. Architecture decisions (Model A)
memphis decide "API Architecture""GraphQL" \
-r "Flexible queries for frontend"
memphis decide-fast "use PostgreSQL for main DB"# 2. Work on project, commit to git
git commit -m "Migrated from REST to GraphQL"# 3. Detect decisions from commits (Model B)
memphis infer --since 7
# 4. Build knowledge graph
memphis graph build --limit 50
memphis graph show --stats
# 5. Daily reflection
memphis reflect --daily --save