From antigravity-awesome-skills
Provides persistent, searchable knowledge management for AI agents with memory tools (search, write, read, stats) that syncs with project documentation.
How this skill is triggered — by the user, by Claude, or both
Slash command
/antigravity-awesome-skills:agent-memoryThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this skill when you need a hybrid memory system that provides persistent, searchable knowledge management for AI agents.
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
Install Dependencies:
npm install
Build the Project:
npm run compile
Start the Memory Server: 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/.npx claudepluginhub sickn33/agentic-awesome-skills --plugin antigravity-awesome-skills5plugins reuse this skill
First indexed Jul 2, 2026
Provides persistent, searchable knowledge management for AI agents with memory tools (search, write, read, stats) that syncs with project documentation.
Provides persistent, searchable memory for AI agents via MCP. Stores architecture decisions, patterns, and knowledge with search, write, read, and analytics tools.
Manages persistent local memory in .nemp/memories.json for Claude Code agents, storing project stack, architecture decisions, user preferences, and enabling cross-session context retention.