Skip to main content
Back to the directory
sickn33/antigravity-awesome-skillsSoftware EngineeringFrontend and Design

conversation-memory

Persistent memory systems for LLM conversations with tiered storage and intelligent retrieval.

SkillJury keeps community verdicts, source metadata, and external repository signals in separate lanes so ranking data never pretends to be a review.

SkillJury verdict
Pending

No approved reviews yet

Would recommend
Pending

Waiting on enough review volume

Install signal
998

Weekly or total install activity from catalog data

Sign in to review
0 review requests
Install command
npx skills add https://github.com/sickn33/antigravity-awesome-skills --skill conversation-memory
SkillJury does not have enough approved reviews to publish a community verdict yet. Source metadata and repository proof are still available above.
SkillJury Signal Summary

As of May 1, 2026, conversation-memory has 998 weekly installs, 0 community reviews on SkillJury. Community votes currently stand at 0 upvotes and 0 downvotes. Source: sickn33/antigravity-awesome-skills. Canonical URL: https://skills.sh/sickn33/antigravity-awesome-skills/conversation-memory.

Security audits
Gen Agent Trust HubPASS
SocketPASS
SnykFAIL
About this skill
Persistent memory systems for LLM conversations with tiered storage and intelligent retrieval. Persistent memory systems for LLM conversations including short-term, long-term, and entity-based memory Different memory tiers for different purposes When to use : Building any conversational AI interface MemorySystem { // Buffer: Current conversation (in context) buffer: ConversationBuffer; } class TieredMemory implements MemorySystem { async addMessage(message: Message): Promise { // Always add to buffer this.buffer.add(message); } Store and update facts about entities When to use : Need to remember details about people, places, things interface Entity { id: string; name: string; type: 'person' | 'place' | 'thing' | 'concept'; facts: Fact[]; lastMentioned: number; mentionCount: number; } interface Fact { content: string; confidence: number; source: string; // Which message this came from timestamp: number; } class EntityMemory { async extractAndStore(message: Message): Promise { // Use LLM to extract entities and facts const extraction = await llm.complete(` Extract entities and facts from this message. Return JSON: { "entities": [ { "name": "...", "type": "...", "facts": ["..."] } ]} } Include relevant memories in prompts When to use : Making LLM calls with memory context async function promptWithMemory( query: string, memory: MemorySystem, systemPrompt: string ): Promise { //...

Source description provided by the upstream listing. Community review signal and install context stay separate from this narrative layer.

Community reviews

Latest reviews

No community reviews yet. Be the first to review.

Browse this skill in context
FAQ
What does conversation-memory do?

Persistent memory systems for LLM conversations with tiered storage and intelligent retrieval.

Is conversation-memory good?

conversation-memory does not have approved reviews yet, so SkillJury cannot publish a community verdict.

Which AI agents support conversation-memory?

conversation-memory currently lists compatibility with Skills CLI.

Is conversation-memory safe to install?

conversation-memory has been scanned by security audit providers tracked on SkillJury. Check the security audits section on this page for detailed results from Socket.dev and Snyk.

What are alternatives to conversation-memory?

Skills in the same category include review-management, coverage, grimoire-aave, report.

How do I install conversation-memory?

Run the following command to install conversation-memory: npx skills add https://github.com/sickn33/antigravity-awesome-skills --skill conversation-memory

Related skills

More from sickn33/antigravity-awesome-skills

Related skills

Alternatives in Software Engineering