ac-memory-manager
The ac-memory-manager skill integrates with Graphiti to store and retrieve persistent knowledge across coding sessions using episodic, semantic, and procedural memory types. Use this when autonomous coding agents need to learn from past experiences, retain project-specific facts, remember coding patterns, or access stored knowledge between separate interactions.
git clone --depth 1 https://github.com/majiayu000/claude-skill-registry /tmp/ac-memory-manager && cp -r /tmp/ac-memory-manager/skills/agent/ac-memory-manager ~/.claude/skills/ac-memory-managerSKILL.md
# AC Memory Manager
Manage persistent memory using Graphiti for cross-session knowledge.
## Purpose
Integrates with Graphiti memory system to store and retrieve knowledge, enabling learning across sessions and projects.
## Quick Start
```python
from scripts.memory_manager import MemoryManager
memory = MemoryManager(project_dir)
await memory.store("auth patterns", {"jwt": True, "session": False})
knowledge = await memory.retrieve("authentication")
```
## Memory Types
- **Episodic**: Past events and experiences
- **Semantic**: Facts and knowledge
- **Procedural**: Learned skills and patterns
## Integration
Uses Graphiti + LadybugDB for persistent storage.
## API Reference
See `scripts/memory_manager.py` for full implementation.Use when you need to install the embedded robot agents into either .cursor/agents or .claude/agents, selecting the destination interactively and copying the embedded agent definitions from project assets. This should trigger for requests such as Install embedded agents; Bootstrap .cursor/agents; Bootstrap .claude/agents; Copy robot agents. Part of cursor-rules-java project
Use when you need to generate an AGENTS.md file for a Java repository — covering project conventions, tech stack, file structure, commands, Git workflow, and contributor boundaries — through a modular, step-based interactive process that adapts to your specific project needs. This should trigger for requests such as Create AGENTS.md; Update AGENTS.md file; Add agent instructions. Part of cursor-rules-java project
>
Generated skill from request: trinity auto-boot validator
Create your OpenAI Agents SDK skill in one prompt, then learn to improve it throughout the chapter
Create your OpenAI Agents SDK skill in one prompt, then learn to improve it throughout the chapter
Create your Google Agent Development Kit skill in one prompt, then learn to improve it throughout the chapter