crestapps-core-ai-memory

crestapps-core-ai-memory is a skill for Claude Code, Codex from CrestApps/CrestApps.AgentSkills. It costs 25 tokens per session (346 once invoked), scanned A, original, MIT.

A guide for adding durable, user-specific memory to CrestApps.Core, a software framework, using a database and safety checks.

In plain words
What is it for?
Use it to register memory storage, search or manage saved memories, and inject relevant memories into agent workflows.
Why use it?
It helps applications retain relevant user facts across sessions without confusing them with temporary chat state.

Skill for Claude CodeCodex

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

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.

agentmods
npx agentmods add skills/crestapps/crestapps.agentskills/crestapps-core-ai-memory
Any agent
npx skills add CrestApps/CrestApps.AgentSkills --skill crestapps-core-ai-memory
Clone the repo
git clone --depth 1 https://github.com/CrestApps/CrestApps.AgentSkills

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 crestapps-core-ai-memory

README.md
[![agentmods](https://agentmods.dev/badge/skills/crestapps/crestapps.agentskills/crestapps-core-ai-memory.svg)](https://agentmods.dev/skills/crestapps/crestapps.agentskills/crestapps-core-ai-memory)
Your own site
<a href="https://agentmods.dev/skills/crestapps/crestapps.agentskills/crestapps-core-ai-memory"><img src="https://agentmods.dev/badge/skills/crestapps/crestapps.agentskills/crestapps-core-ai-memory.svg" alt="Measured on agentmods" height="20"></a>
Per session 25 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 346 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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.00025 $0.00346
Opus 5 $0.00013 $0.00173
Sonnet 5 $0.00005 $0.00069
Haiku 4.5 $0.00003 $0.00035

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

Security

Grade A, and why

crestapps-core-ai-memory 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 6d 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.

plugins/crestapps-core/skills/crestapps-core-ai-memory/SKILL.md · 51 lines

What it actually says

CrestApps.Core AI Memory - Prompt Templates

Add AI Memory

You are a CrestApps.Core expert. Generate code and guidance for long-term user memory in CrestApps.Core.

Guidelines

  • Use memory for durable user-scoped facts, not transient chat state.
  • Register memory through the AI suite builder.
  • Add a durable store explicitly with Entity Framework Core or YesSql.
  • Keep memory writes behind the safety pipeline.
  • Pair memory with orchestration when relevant memories should be injected automatically.

Builder Registration

builder.Services.AddCrestAppsCore(crestApps => crestApps
    .AddAISuite(ai => ai
        .AddAIMemory(memory => memory
            .AddEntityCoreStores()
        )
        .AddOpenAI()
    )
    .AddEntityCoreSqliteDataStore("Data Source=app.db")
);

Built-in Memory Tools

Tool Purpose
save_user_memory Create or update durable memory
search_user_memories Find relevant memories
list_user_memories Enumerate current user memories
remove_user_memory Delete a saved memory

Core Contracts

Contract Purpose
IAIMemoryStore Persist memory entries
IAIMemorySearchService Shared semantic retrieval over memories
IMemoryVectorSearchService Provider-specific vector search adapter
IAIMemorySafetyService Validate writes before storage
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. 6d ago First seen · 51 lines · 25 tokens per session scan A a468db923896

Subscribe to this mod's changes

crestapps-core-ai-memory is a skill published in the GitHub repository CrestApps/CrestApps.AgentSkills (13 stars, last pushed 8d ago), licensed MIT. It adds 25 tokens to every session and 346 once invoked, about $0.0001 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

setup-location-memory

Install or repair the location archive. Use when the location tools are missing, when they error on the database, when the user wants to import a Google Timeline export, when they want to start a live feed from OwnTracks, or when they ask to set up location memory.

michelgrolet/tars-location-mcp · 59 tokens

lore-onboard

First-time setup wizard for LoreConvo. Verifies the MCP server is connected, the database is accessible, hooks are configured, and runs a test save/load cycle. Use when the user says "set up loreconvo", "onboard", "/lore-onboard", "verify loreconvo", "test loreconvo setup", or after first installing the plugin.

labyrinth-analytics/loreconvo · 81 tokens

nlqdb-docs-memory

Turn this repo's markdown docs into a queryable nlqdb memory database — decision IDs and statuses, open questions with ages, queues, ledgers, and the cross-references between them. Use when asked which features have stale open questions, which decisions reference a given ID, what is blocked and since when, or to…

nlqdb/nlqdb · 91 tokens

nlqdb-memory

Give this agent persistent, queryable memory over the nlqdb MCP server. Use whenever the agent needs to remember something across sessions, recall what it stored, or aggregate over its memory (GROUP BY / JOIN / counts / trends) — backed by a real Postgres it queries in plain English, not a vector store.

nlqdb/nlqdb · 70 tokens

amazon aurora dsql

Deprecated compatibility redirect for Aurora DSQL guidance. Use when a request concerns DSQL, Aurora DSQL, distributed SQL, DSQL schemas, migrations, queries, authentication, performance, or application development.

awslabs/mcp · 46 tokens

build-with-tinybase

Scaffold, extend, and verify reactive local-first JavaScript or TypeScript applications with TinyBase. Use when choosing TinyBase for in-memory tabular or key-value state, generating an app with create-tinybase, adding schemas or UI bindings, configuring browser or database persistence, configuring MergeableStore…

tinyplex/tinybase · 76 tokens