Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

README.md

Use Cases

This folder contains apps, demos, and integrations that show what persistent memory enables in real products and workflows. Some examples are complete local projects; others are focused integrations that can be adapted into your own agent stack.

Use Case Catalogue

banner-gif

Earth Online Memory Game

Earth Online is a memory-aware productivity game that turns everyday planning into a living quest log.

Code

banner-gif

Multi-Agent Orchestration Platform

Golutra presents a multi-agent workforce for engineering teams, extending the IDE model from a single assistant to coordinated agents.

Code

banner-gif

Your Personal Tasting Universe

Record, visualize, and explore your tasting journey through an immersive 3D star map.

Code

banner-gif

EverOS Open Her

Build AI that feels. Open-source persona engine — personality emerges from neural drives, not prompts. Inspired by Her.

Code · Local notes

banner-gif

Browser Agent for Personal Memory

Ruminer brings persistent memory to a browser agent so it can carry personal context across web tasks.

Plugin

banner-gif

EverMem Sync with EverOS

One command to connect any AI coding CLI to EverMemOS long-term memory.

Code

banner-gif

MCO - Orchestrate AI Coding Agents

MCO equips your primary agent with an agent team that can work together to solve complex tasks.

Code

banner-gif

Study Buddy with Self-Evolving Memory

Study proactively with an agent that has self-evolving memory.

Code

banner-gif

Alzheimer’s Memory Assistant

Empowering individuals with advanced memory support and daily assistance.

Code

banner-gif

Memory-Driven Multi-Agent NPC Experience

An iOS sci-fi mystery game where players explore and uncover the truth.

Code

banner-gif

Mobi Companion

An iOS app where users create, nurture, and live with a personalized AI companion called Mobi.

Code

banner-gif

AI Wearable with Memory

A context-native AI wearable that listens to everyday life and converts conversations into memory.

Code

banner-gif

OpenClaw Agent Memory

A 24/7 agent workflow with continuous learning memory across sessions.

Plugin

banner-gif

Live2D Character with Memory

Add long-term memory to a real-time Live2D character, powered by TEN Framework.

Code

banner-gif

Computer-Use with Memory

Run screenshot-based analysis with computer-use and store the results in memory.

Live Demo

banner-gif

Game of Thrones Memories

A demonstration of AI memory infrastructure through an interactive Q&A experience with A Game of Thrones.

Code

banner-gif

Claude Code Plugin

Persistent memory for Claude Code. Automatically saves and recalls context from past coding sessions.

Code

banner-gif

Memory Graph Visualization

Explore stored entities and relationships in a graph interface. Frontend demo; backend integration is in progress.

Live Demo

Contributing Guidelines

Before submitting a use case, please follow these best practices to keep the repository clean and lightweight.

No images in the repo

Do not commit image files (.png, .jpg, .gif, .svg, etc.) to this repository. Images bloat the Git history and cannot be removed after the fact.

Instead, upload images to GitHub user-attachments and reference them by URL in your README:

![Screenshot](https://github.com/user-attachments/assets/your-image-id)

No generated or dependency files

Do not commit files that can be regenerated locally:

  • node_modules/ — run npm install to regenerate
  • package-lock.json — already in .gitignore for this folder
  • dist/, build/, .next/ — build output
  • .env — use .env.example with placeholder values instead

Keep code DRY

Avoid duplicating logic across your use case. If multiple files share the same functionality, extract it into a shared utility. This makes examples easier to follow and maintain.

General checklist

Before opening a PR, verify:

  • No image files committed (use external URLs)
  • No node_modules, lock files, or build artifacts
  • No secrets or API keys (only .env.example with placeholders)
  • README included with setup instructions
  • Code is concise and avoids unnecessary repetition