Fähigkeiten agent-memory-mcp
📦

agent-memory-mcp

Sicher

Enable Persistent Memory for AI Agents

This skill provides AI agents with persistent, searchable memory to retain architecture decisions, patterns, and knowledge across sessions without manual tracking.

UnterstĂĽtzt: Claude Codex Code(CC)
🥉 74 Bronze
1

Die Skill-ZIP herunterladen

2

In Claude hochladen

Gehe zu Einstellungen → Fähigkeiten → Skills → Skill hochladen

3

Einschalten und loslegen

Teste es

Verwendung von "agent-memory-mcp". Search for all stored patterns related to authentication

Erwartetes Ergebnis:

Found 3 memories:
- auth-oauth2: OAuth2 implementation pattern
- auth-jwt: JWT token handling pattern
- auth-sessions: Session management pattern

Verwendung von "agent-memory-mcp". Write a new architecture decision about database choice

Erwartetes Ergebnis:

Memory saved successfully:
Key: db-choice-postgres
Type: decision
Content: Selected PostgreSQL for its relational integrity and JSON support
Tags: database, architecture, production

Verwendung von "agent-memory-mcp". Show memory statistics

Erwartetes Ergebnis:

Memory Stats:
- Total memories: 24
- Types: decisions(8), patterns(12), knowledge(4)
- Top tags: authentication(5), database(4), api(3)

Sicherheitsaudit

Sicher
v1 • 2/24/2026

All static findings are false positives. The skill contains only documentation with setup instructions (git clone, npm commands). The flagged 'external_commands' are legitimate bash commands in documentation, not executable code. The flagged 'network' URLs are documentation references (GitHub repo URL, localhost dashboard). The flagged 'cryptographic' terms ('key', 'risk') are common English words used in their normal sense, not cryptographic algorithms.

1
Gescannte Dateien
88
Analysierte Zeilen
0
befunde
1
Gesamtzahl Audits
Keine Sicherheitsprobleme gefunden
Auditiert von: claude

Qualitätsbewertung

38
Architektur
100
Wartbarkeit
87
Inhalt
50
Community
100
Sicherheit
91
Spezifikationskonformität

Was du bauen kannst

Retain Architecture Decisions

Store and retrieve architectural choices made during project setup so future sessions understand why certain patterns were selected.

Build Pattern Library

Collect and search reusable code patterns, snippets, and best practices discovered during development.

Track Project Context

Maintain persistent context about project goals, constraints, and conventions across agent sessions.

Probiere diese Prompts

Save Architecture Decision
Use memory_write to store this architecture decision: key: '{decision_key}', type: 'decision', content: '{decision_content}', tags: ['{tag1}', '{tag2}']
Find Authentication Patterns
Search the memory for authentication patterns using memory_search with query: 'authentication', type: 'pattern'
Recall Design Discussion
Retrieve the design discussion about '{topic}' using memory_read with key: '{memory_key}'
Review Memory Statistics
Show memory statistics using memory_stats to understand what knowledge has been stored

Bewährte Verfahren

  • Use consistent naming conventions for memory keys to make retrieval predictable
  • Add relevant tags when writing memories to improve searchability
  • Periodically review memory_stats to ensure the knowledge base remains organized

Vermeiden

  • Storing sensitive information like API keys or passwords in memory
  • Creating duplicate memories with slightly different keys instead of updating existing ones
  • Using overly generic search queries that return too many unrelated results

Häufig gestellte Fragen

How does this skill persist memory across sessions?
The skill runs as an MCP server that maintains a local storage file. As long as the server runs, memories persist. Restarting the server with the same project_id loads existing memories.
Can I share memories between different projects?
Memories are stored per project_id. You would need to manually export/import memory data to share across projects.
What happens if I forget my memory key?
You can use memory_search to find memories by content, type, or tags even if you do not remember the exact key.
Is the dashboard accessible remotely?
No, the dashboard runs on localhost only for security reasons. It is not exposed to external networks.
Can I delete or update existing memories?
The current version supports writing new memories. For updates, you would write a new memory with an updated key or content.
What types of content can I store?
You can store any text content including architecture decisions, code patterns, meeting notes, API specifications, and project conventions.

Entwicklerdetails

Dateistruktur

đź“„ SKILL.md