AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Ai Memory Developer

skill-daemon-blockint-tech-agentic-enteprises-skill-ai-memory-developer · by daemon-blockint-tech

|

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

Install

$ agentstack add skill-daemon-blockint-tech-agentic-enteprises-skill-ai-memory-developer

✓ 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.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-daemon-blockint-tech-agentic-enteprises-skill-ai-memory-developer)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
4mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Ai Memory Developer? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

AI Memory Developer

When to Use

  • Building persistent memory for copilots, agents, or conversational AI
  • Designing memory APIs (read/write/consolidate/forget)
  • Choosing between vector stores, graph databases, or structured DBs for memory
  • Implementing memory write/read policies and ACLs
  • Debugging wrong, stale, or hallucinated memories
  • Tuning what the model should remember across sessions (episodic vs semantic)
  • Planning GDPR deletion paths and privacy retention for stored memories
  • Evaluating memory quality (recall, precision, isolation)

When NOT to Use

  • General RAG document search or indexing pipelines → ai-engineer
  • Context window packing, token budgets, or compression → ai-context-engineer
  • AI team operations, release governance, or SLOs → ai-lead-ops
  • Org-wide token cost improvement roadmaps → ai-token-improvement-plan-engineer

Related skills

| Need | Skill | |---|---| | End-to-end LLM app, RAG, agents | ai-engineer | | Context assembly and compression | ai-context-engineer | | Prompt and tool message design | prompt-engineer | | PII retention and governance | ai-risk-governance | | Production monitoring and incidents | ai-lead-ops | | Token cost program and phased savings plan | ai-token-improvement-plan-engineer |

Core Workflows

1. Memory model design

Classify memory types:

| Type | Lifetime | Examples | Store | |---|---|---|---| | Working | Single turn / tool loop | Tool results, scratchpad | In-context only | | Session | Chat session | Current task state | Redis / thread store | | User long-term | Cross-session | Preferences, facts user stated | Vector + structured DB | | Organizational | Shared | Docs, policies | RAG index (see ai-engineer) |

Design decisions:

  1. What may be written automatically vs requires user confirmation?
  2. Per-tenant isolation and ACL on every read/write
  3. TTL and deletion (GDPR erase path)
  4. Conflict resolution when new fact contradicts old

See references/memory_architecture.md for patterns and anti-patterns.

2. Write path (ingestion to memory)

observe → extract candidates → score importance → dedupe → persist → index

Checklist:

  • [ ] Extract only durable facts, not transient chit-chat
  • [ ] Attach provenance (message ID, timestamp, source)
  • [ ] Dedupe with embedding similarity + entity linking
  • [ ] Never store secrets, raw payment data, or full medical records unless required and approved

See references/write_consolidation.md for extraction prompts and consolidation jobs.

3. Read path (retrieval for generation)

  1. Build query from current user message + session summary
  2. Retrieve top-k memories with metadata filters (user_id, tenant_id)
  3. Rerank; drop below relevance threshold
  4. Inject into context in structured block (see ai-context-engineer)
  5. Cite memory IDs in logs for debugging

See references/read_retrieval.md for ranking and injection formats.

4. Forgetting and maintenance

| Trigger | Action | |---|---| | User delete request | Hard delete all user memories | | TTL expired | Archive or purge | | Low usefulness score | Decay or summarize away | | Contradiction | Supersede old record; keep audit trail |

Run nightly consolidation: merge episodic notes into semantic summaries.

See references/write_consolidation.md for consolidation algorithms.

5. Evaluation

| Test | Pass criteria | |---|---| | Write accuracy | Gold facts appear in store after session | | Recall | Question answerable from prior session | | Precision | Irrelevant memories not retrieved | | Isolation | Tenant A never sees tenant B | | Forgetting | Deleted user has zero retrievable memories |

See references/memory_eval.md for datasets and regression harness.

When to load references

  • Architecture and storesreferences/memory_architecture.md
  • Write and consolidationreferences/write_consolidation.md
  • Read and rankingreferences/read_retrieval.md
  • Evaluationreferences/memory_eval.md

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.