lingxling/agent-memory
A hybrid memory system that provides persistent, searchable knowledge management for AI agents.
npx skills add https://github.com/lingxling/awesome-skills-cn --skill agent-memory
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.
agentMemory is already installed in the project: ls -la .agentMemory
npm install
npm run compile
You need to run the MCP server to interact with the memory bank.
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.*
Once the server is running, you can use these tools:
memory_searchSearch for memories by query, type, or tags.
query (string), type? (string), tags? (string[])memory_search({ query: "authentication", type: "pattern" })memory_writeRecord new knowledge or decisions.
key (string), type (string), content (string), tags? (string[])memory_write({ key: "auth-v1", type: "decision", content: "..." })memory_readRetrieve specific memory content by key.
key (string)memory_read({ key: "auth-v1" })memory_statsView analytics on memory usage.
memory_stats({}).kilocode/, .clinerules/, or .roo/.Take lingxling/agent-memory from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.
The instructions reference npm.
Without those the skill loads but fails at the first command.