Interact with Claude-Flow memory system
# 🧠 Claude-Flow Memory System The memory system provides persistent storage for cross-session and cross-agent collaboration with CRDT-based conflict resolution. ## Store Information ```bash # Store with default namespace ./claude-flow memory store "key" "value" # Store with specific namespace ./claude-flow memory store "architecture_decisions" "microservices with API gateway" --namespace arch ``` ## Query Memory ```bash # Search across all namespaces ./claude-flow memory query "authentication" # Search with filters ./claude-flow memory query "API design" --namespace arch --limit 10 ``` ## Memory Statistics ```bash # Show overall statistics
Sign in to view the full prompt.
Sign In