Install
$ agentstack add skill-crestapps-crestapps-agentskills-crestapps-core-ai-memory ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo 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.
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.
- Author: CrestApps
- Source: CrestApps/CrestApps.AgentSkills
- License: MIT
- Homepage: https://crestapps.com/
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.