agent-management
Create, manage, and orchestrate AI agents using the AI Maestro CLI. Use when the user asks to "create agent", "list agents", "delete agent", "hibernate agent",…
A hybrid memory system that provides persistent, searchable knowledge management for AI agents (Architecture, Patterns, Decisions).
$ npx -y skills add davila7/claude-code-templates --skill agent-memory-mcp --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/agent-memory-mcpContext preview
The summary Claude sees to decide when to auto-load this skill.
A hybrid memory system that provides persistent, searchable knowledge management for AI agents (Architecture, Patterns, Decisions).
name: agent-memory-mcp author: Amit Rathiesh description: A hybrid memory system that provides persistent, searchable knowledge management for AI agents (Architecture, Patterns, Decisions).
This skill provides a persistent, searchable memory bank that automatically syncs with project documentation. It runs as an MCP server to allow reading/writing/searching of long-term memories.
1. **Clone the Repository**: Clone the `agentMemory` project into your agent's workspace or a parallel directory:
git clone https://github.com/webzler/agentMemory.git .agent/skills/agent-memory
2. **Install Dependencies**:
cd .agent/skills/agent-memory npm install npm run compile
3. **Start the MCP Server**: Use the helper script to activate the memory bank for your current project:
npm run start-server <project_id> <absolute_path_to_target_workspace>
_Example for current directory:_
npm run start-server my-project $(pwd)
Search for memories by query, type, or tags.
Record new knowledge or decisions.
Retrieve specific memory content by key.
View analytics on memory usage.
This skill includes a standalone dashboard to visualize memory usage.
npm run start-dashboard <absolute_path_to_target_workspace>
Access at: `http://localhost:3333`
Ready-to-use configurations for Anthropic's Claude Code. A comprehensive collection of AI agents, custom commands, settings, hooks, external integrations (MCPs), and project templates to enhance your development workflow.
Repo: davila7/claude-code-templates
Create, manage, and orchestrate AI agents using the AI Maestro CLI. Use when the user asks to "create agent", "list agents", "delete agent", "hibernate agent",…
Send and receive cryptographically signed messages between AI agents using the Agent Messaging Protocol (AMP). Use when the user asks to "send a message to an…
Search auto-generated codebase documentation for function signatures, API docs, class definitions, and code comments. Use when the user asks to "search docs",…
Query the code graph database to understand component relationships, dependencies, and change impact. Use when the user asks to "find callers", "check…
Search conversation history and semantic memory to recall previous discussions, decisions, and context. Use when the user asks to "search memory", "what did we…