Agent skill · AI & Agents

agent-memory

A hybrid memory system that provides persistent, searchable knowledge management for AI agents.

Nick44,086★ · +407/wk · 1 repos on radarProfile →
claude-codecodexcursorMIT
Install
npx skills add sickn33/agentic-awesome-skills --skill agent-memory --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 3 KB
Bundled scripts: none
Path: skills/agent-memory/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 44,414 · +328 this week
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# agentMemory Skill ## When to Use Use this skill when you need a hybrid memory system that provides persistent, searchable knowledge management for AI agents. This skill extends your capabilities by providing a persistent, searchable memory bank that automatically syncs with project documentation. ## Prerequisites - Node.js installed - Check if `agentMemory` is already installed in the project: ```bash ls -la .agentMemory ``` ## Setup 1. **Install Dependencies**: ```bash npm install ``` 2. **Build the Project**: ```bash npm run compile ``` 3. **Start the Memory Server**: You need to run the MCP server to interact with the memory bank. ```bash npm run start-server <project_id> <absolute_path_to_workspace> ``` *Note: This skill typically runs as a background process or via an mcp-server configuration. ensuring it is running is key.* ## Capabilities (MCP Tools) Once the server is running, you can use these tools: ### `memory_search` Search for memories by query, type, or tags. - **Args**: `query` (string), `type?` (string), `tags?` (string[]) - **Usage**: "Find all authentication patterns" -> `memory_search({ query: "authentication", type: "pattern" })` ### `memory_write` Record new

What's inside
Steps it walks through
  1. When to Use
  2. Prerequisites
  3. Setup
  4. Capabilities (MCP Tools)
  5. memorysearch
  6. memorywrite
  7. memoryread
  8. memorystats
  9. Workflow
  10. Limitations
Commands it runs
ls -la .agentMemory
npm install
npm run compile
npm run start-server <project_id> <absolute_path_to_workspace>
More from agentic-awesome-skills
All skills →
About this skill
What does the agent-memory skill do?

A hybrid memory system that provides persistent, searchable knowledge management for AI agents.

How do I install it?

Run `npx skills add sickn33/agentic-awesome-skills --skill agent-memory --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From sickn33/agentic-awesome-skills, a repository with 44,414 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going