UNPKG

claude-flow

Version:

Ruflo - Enterprise AI agent orchestration for Claude Code. Deploy 60+ specialized agents in coordinated swarms with self-learning, fault-tolerant consensus, vector memory, and MCP integration

26 lines (19 loc) 534 B
# memory-usage Manage persistent memory storage. ## Usage ```bash npx claude-flow memory usage [options] ``` ## Options - `--action <type>` - Action (store, retrieve, list, clear) - `--key <key>` - Memory key - `--value <data>` - Data to store (JSON) ## Examples ```bash # Store memory npx claude-flow memory usage --action store --key "project-config" --value '{"api": "v2"}' # Retrieve memory npx claude-flow memory usage --action retrieve --key "project-config" # List all keys npx claude-flow memory usage --action list ```