agenticx-memory-architect

agenticx-memory-architect is a skill for Claude Code, Codex from DemonDamon/AgenticX. It costs 67 tokens per session (1,071 once invoked), scanned A, original, Apache-2.0.

A guide for adding short-term and persistent memory to AgenticX agents through Mem0 and selectable storage systems. Persistent memory lets an agent retain information across sessions.

In plain words
What is it for?
Use it to install the memory components, store information for users or agents, and search those memories in later interactions.
Why use it?
It explains how to preserve useful user preferences, conversation context, and past experience instead of starting with an empty context each time.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to install the memory components, store information for users or agents, and search those memories in later interactions.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/demondamon/agenticx/agenticx-memory-architect
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add DemonDamon/AgenticX --skill agenticx-memory-architect
Clone the repo
git clone --depth 1 https://github.com/DemonDamon/AgenticX

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for agenticx-memory-architect

README.md
[![agentmods](https://agentmods.dev/badge/skills/demondamon/agenticx/agenticx-memory-architect.svg)](https://agentmods.dev/skills/demondamon/agenticx/agenticx-memory-architect)
Your own site
<a href="https://agentmods.dev/skills/demondamon/agenticx/agenticx-memory-architect"><img src="https://agentmods.dev/badge/skills/demondamon/agenticx/agenticx-memory-architect.svg" alt="Measured on agentmods" height="20"></a>
Per session 67 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,071 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00067 $0.01071
Opus 5 $0.00034 $0.00535
Sonnet 5 $0.00013 $0.00214
Haiku 4.5 $0.00007 $0.00107

Measured 2d ago against content hash a8f091009d09, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

agenticx-memory-architect scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

agenticx/skills/agenticx-memory-architect/SKILL.md · 175 lines

How it starts

The opening of the file, as written. The whole thing — 175 lines — stays where its author put it; the contents beside it link to each section on GitHub.

AgenticX Memory Architect

Guide for building agents with persistent memory capabilities.

Overview

AgenticX integrates with Mem0 for long-term memory, providing agents with the ability to remember past interactions, learn from experience, and maintain context across sessions.

Installation

pip install "agenticx[memory]"
# Includes: mem0, chromadb, qdrant-client, redis, milvus

Memory System Components

Component Purpose
MemoryManager Core memory management interface
Mem0Integration Bridge to Mem0's memory engine
ContextMemory Short-term, session-scoped memory
LongTermMemory Persistent, cross-session memory

Basic Memory Usage

Initialize Memory

from agenticx.memory import MemoryManager

memory = MemoryManager(
    provider="mem0",
    config={
        "llm": {"provider": "openai", "config": {"model": "gpt-4"}},
        "vector_store": {"provider": "chroma"}
    }
)

Store and Retrieve

# Add a memory
memory.add(
    content="User prefers concise reports with bullet points",
    user_id="user-123",
    agent_id="analyst"
)

# Search memories
results = memory.search(
    query="What format does the user prefer?",
    user_id="user-123"
)
for r in results:
    print(f"[{r.score:.2f}] {r.content}")

# Get all memories for a user
all_memories = memory.get_all(user_id="user-123")

Memory-Enhanced Agents

Attach Memory to an Agent

from agenticx import Agent, AgentExecutor
from agenticx.memory import MemoryManager
from agenticx.llms import OpenAIProvider

memory = MemoryManager(provider="mem0")
agent = Agent(
    id="assistant",
    name="Personal Assistant",
    role="Assistant with memory",
    goal="Help users while remembering their preferences",
    organization_id="default"
)

executor = AgentExecutor(
    agent=agent,
    llm=OpenAIProvider(model="gpt-4"),
    memory=memory
)

# First interaction — learns preference
result = executor.run(task_1)

# Later interaction — recalls preference
result = executor.run(task_2)  # agent remembers context from task_1

Read the full file on GitHub · 175 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago Changed a8f091009d09
  2. 7d ago First seen · 175 lines · 67 tokens per session scan A b9d2761e6401

Subscribe to this mod's changes

agenticx-memory-architect is a skill published in the GitHub repository DemonDamon/AgenticX (228 stars, last pushed yesterday), licensed Apache-2.0. It adds 67 tokens to every session and 1,071 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

memory

Search conversation history and understand Dream-managed profile and memory files.

HKUDS/nanobot · 14 tokens

continuum-memory

Configure and use Continuum's two-tier memory system — mem0+Qdrant/Milvus for long-term facts, Redis for short-term sessions, with multi-tenant scopes (USER / AGENT / SHARED / RUN / CONVERSATION). Invoke when the user asks about "remember", "user preferences", "long-term memory", "vector search over memories"…

shyftlabs/continuum · 107 tokens

citedy-content-writer

From topic to published blog post in one conversation — generate SEO- and GEO-optimized articles with AI illustrations and voice-over in 55 languages, create social media adaptations for 9 platforms, set up automated content sessions, and manage product knowledge base. End-to-end blog autopilot. Powered by Citedy.

citedy/adclaw · 70 tokens

preferences-memory

Use memory tools only when the user explicitly wants a stable fact or preference remembered beyond the current conversation.

Threat-Vector-Security/guardian-agent · 0 tokens

obsidian

A skill for working with an Obsidian vault, which is a folder of Markdown notes used as a personal knowledge base. It covers creating, extending, searching, and organizing notes, including links, tags, folders, and daily entries.

Rayan55050/progressive-agent · 15 tokens

AgentDB Memory Patterns

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.

shyftlabs/continuum · 45 tokens