원클릭으로
source-command-claude-flow-memory
Interact with Codex-Flow memory system
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Interact with Codex-Flow memory system
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
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