AgentStack
SKILL verified MIT Self-run

Crestapps Core Ai Memory

skill-crestapps-crestapps-agentskills-crestapps-core-ai-memory · by CrestApps

Skill for durable user memory, safety validation, and memory-aware orchestration in CrestApps.Core.

No reviews yet
0 installs
8 views
0.0% view→install

Install

$ agentstack add skill-crestapps-crestapps-agentskills-crestapps-core-ai-memory

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of Crestapps Core Ai Memory? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

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 |

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.