source-command-claude-flow-memory

Store, query, and manage persistent cross-session memory via Codex-Flow CLI commands.

Updated May 11, 2026
One-click install
npx skills add https://github.com/Turgunoff/mebellar_app --skill source-command-claude-flow-memory-turgunoff
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: source-command-claude-flow-memory
Source: https://github.com/Turgunoff/mebellar_app/tree/main/.agents/skills/source-command-claude-flow-memory
Command: npx skills add https://github.com/Turgunoff/mebellar_app --skill source-command-claude-flow-memory-turgunoff

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Agent sessions lose context between runs, forcing users to re-explain decisions, requirements, and project state. This Skill provides persistent memory storage with CRDT-based conflict resolution so information survives across sessions and agents. ## Core Features & Use Cases - Memory CRUD Operations: Store and query key-value entries across organized namespaces such as arch, spec, test, and project. - Backup and Maintenance: Export and import memory snapshots as JSON files, view storage statistics, and clean up entries older than a configurable number of days. - Use Case: A team stores architecture decisions in the arch namespace during planning, then queries them in later sessions to keep implementation consistent with prior choices. ## Quick Start Ask the agent to store a project decision in Codex-Flow memory under the arch namespace and then query it back to confirm persistence.

Frequently Asked Questions about source-command-claude-flow-memory

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I store data in Codex-Flow memory?▼

Run ./Codex-flow memory store with a key and value, optionally adding --namespace to categorize the entry. For example, store architecture decisions under the arch namespace for later retrieval.

How do I search Codex-Flow memory across namespaces?▼

Use ./Codex-flow memory query with a search term to search all namespaces, or add --namespace and --limit flags to narrow results to a specific category and count.

What namespaces are available in Codex-Flow memory?▼

Available namespaces include default, agents, tasks, sessions, swarm, project, spec, arch, impl, test, and debug. Each namespace groups related data such as architecture decisions or test results.

Can I back up and restore Codex-Flow memory?▼

Yes, use ./Codex-flow memory export to write all memory or a single namespace to a JSON file, and ./Codex-flow memory import to restore it from a backup file.

How do I delete old Codex-Flow memory entries?▼

Run ./Codex-flow memory cleanup with --days to remove entries older than a given age, optionally scoped with --namespace to clean only one category of data.