con un clic
source-command-claude-flow-memory
Interact with Codex-Flow memory system
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Interact with Codex-Flow memory system
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
Implement persistent memory patterns for AI agents using AgentDB. Includes session memory, long-term storage, pattern learning, and context management. Use when building stateful agents, chat systems, or intelligent assistants.
Implement semantic vector search with AgentDB for intelligent document retrieval, similarity matching, and context-aware querying. Use when building RAG systems, semantic search engines, or intelligent knowledge bases.
Web browser automation with AI-optimized snapshots for Codex-flow agents
Comprehensive GitHub code review with AI-powered swarm coordination
Multi-repository coordination, synchronization, and architecture management with AI swarm orchestration
Comprehensive GitHub project management with swarm-coordinated issue tracking, project board automation, and sprint planning
| name | source-command-claude-flow-memory |
| description | Interact with Codex-Flow memory system |
Use this skill when the user asks to run the migrated source command claude-flow-memory.
The memory system provides persistent storage for cross-session and cross-agent collaboration with CRDT-based conflict resolution.
# Store with default namespace
./Codex-flow memory store "key" "value"
# Store with specific namespace
./Codex-flow memory store "architecture_decisions" "microservices with API gateway" --namespace arch
# Search across all namespaces
./Codex-flow memory query "authentication"
# Search with filters
./Codex-flow memory query "API design" --namespace arch --limit 10
# Show overall statistics
./Codex-flow memory stats
# Show namespace-specific stats
./Codex-flow memory stats --namespace project
# Export all memory
./Codex-flow memory export full-backup.json
# Export specific namespace
./Codex-flow memory export project-backup.json --namespace project
# Import memory
./Codex-flow memory import backup.json
# Clean entries older than 30 days
./Codex-flow memory cleanup --days 30
# Clean specific namespace
./Codex-flow memory cleanup --namespace temp --days 7
./Codex-flow memory store "spec_auth_requirements" "OAuth2 + JWT with refresh tokens" --namespace spec
./Codex-flow memory store "arch_api_design" "RESTful microservices with GraphQL gateway" --namespace arch
./Codex-flow memory store "test_coverage_auth" "95% coverage, all tests passing" --namespace test
./Codex-flow memory query "authentication" --namespace arch --limit 5
./Codex-flow memory query "test results" --namespace test
./Codex-flow memory export project-$(date +%Y%m%d).json --namespace project