source-command-claude-flow-memory

Store, query, and manage persistent memory entries in the Codex-Flow memory system.

Updated Feb 17, 2026
One-click install
npx skills add https://github.com/derbalimajd04-dot/al-wasat --skill source-command-claude-flow-memory-derbalimajd04-dot
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: source-command-claude-flow-memory
Source: https://github.com/derbalimajd04-dot/al-wasat/tree/main/.agents/skills/source-command-claude-flow-memory
Command: npx skills add https://github.com/derbalimajd04-dot/al-wasat --skill source-command-claude-flow-memory-derbalimajd04-dot

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? It provides persistent, cross-session memory storage for AI agent workflows, so context, decisions, and results survive between sessions and can be shared across agents. ## Core Features & Use Cases - Memory CRUD Operations: Store and query key-value entries across organized namespaces like arch, spec, test, and project. - Backup and Maintenance: Export and import memory snapshots as JSON files and clean up entries older than a configurable number of days. - Statistics Monitoring: Inspect storage usage globally or per namespace to track memory growth. - Use Case: A team running SPARC workflows stores architecture decisions in the arch namespace, test coverage results in the test namespace, and later queries them across sessions to maintain continuity between agents. ## Quick Start Ask the agent to store a project decision in Codex-Flow memory under the arch namespace and then query it back.

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. Queries match stored keys and values within the memory store.

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, test results, or session history.

How do I back up and restore Codex-Flow memory?▼

Export memory to a JSON file with ./Codex-flow memory export, optionally scoped to one namespace, and restore it with ./Codex-flow memory import. Regular exports provide backups before cleanup operations.

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

Run ./Codex-flow memory cleanup with --days to remove entries older than a given age, and add --namespace to limit cleanup to one namespace. Export a backup first to avoid losing needed data.