.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/dicklesworthstone/cass_memory_system
home/mcp-servers/dicklesworthstone/cass_memory_system
dicklesworthstone avatar

cass_memory_system

bydicklesworthstone· 3 MCP servers

Stars

404

Forks

46

Category

AI Agents & MCP

View on GitHub

TL;DR

Procedural memory for AI coding agents: transforms scattered session history into persistent, cross-agent memory so every agent learns from every other

How to install cass_memory_system?

dicklesworthstone/cass_memory_system
$git clone https://github.com/dicklesworthstone/cass_memory_system

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install cass_memory_system by running `git clone https://github.com/dicklesworthstone/cass_memory_system`, then use it for the current task and follow its documentation at https://github.com/dicklesworthstone/cass_memory_system.

Files · 1

View on GitHub
README.md
1# cass-memory
2 
3<div align="center">
4 <img src="cm_illustration.webp" alt="cass-memory - Procedural memory for AI coding agents">
5</div>
6 
7![Platform](https://img.shields.io/badge/platform-Linux%20%7C%20macOS%20%7C%20Windows-blue.svg)
8![Runtime](https://img.shields.io/badge/runtime-Bun-f472b6.svg)
9![Status](https://img.shields.io/badge/status-alpha-purple.svg)
10![License](https://img.shields.io/badge/license-MIT-green.svg)
11 
12**Procedural memory for AI coding agents.**
13Transforms scattered agent sessions into persistent, cross-agent memory—so every agent learns from every other agent's experience.
14 
15<div align="center">
16 
17**One-liner install (Linux/macOS):**
18 
19```bash
20curl -fsSL "https://raw.githubusercontent.com/Dicklesworthstone/cass_memory_system/main/install.sh?$(date +%s)" \
21 | bash -s -- --easy-mode --verify
22```
23 
24**Or via package managers:**
25 
26```bash
27# macOS/Linux (Homebrew)
28brew install dicklesworthstone/tap/cm
29 
30# Windows (Scoop)
31scoop bucket add dicklesworthstone https://github.com/Dicklesworthstone/scoop-bucket
32scoop install dicklesworthstone/cm
33```
34 
35</div>
36 
37---
38 
39## 🤖 Agent Quickstart (JSON)
40 
41**Always use `--json` in agent contexts.** stdout = data, stderr = diagnostics, exit 0 = success.
42 
43```bash
44# 1) Get task-specific memory before you start
45cm context "implement auth rate limiting" --json
46 
47# 2) See the minimum viable workflow
48cm quickstart --json
49 
50# 3) Build the playbook (memory onboarding)
51cm onboard status --json
52cm onboard sample --fill-gaps --json
53cm onboard read /path/to/session.jsonl --template --json
54cm onboard mark-done /path/to/session.jsonl
55```
56 
57## Table of Contents
58 
59- [Why This Exists](#-why-this-exists)
60- [How It Works](#-how-it-works)
61- [Key Features](#-key-features)
62- [For AI Agents](#-for-ai-agents-the-most-important-section)
63- [Installation](#-installation)
64- [CLI Reference](#-cli-reference)
65- [The ACE Pipeline](#-the-ace-pipeline)
66- [Data Models](#-data-models)
67- [Scoring Algorithm](#-scoring-algorithm)
68- [Configuration](#-configuration)
69- [MCP Server](#-mcp-server)
70- [Architecture & Engineering](#-architecture--engineering)
71- [Deep Dive: Core Algorithms](#-deep-dive-core-algorithms)
72- [Privacy & Security](#-privacy--security)
73- [Trauma Guard: Safety System](#-trauma-guard-safety-system)
74- [Performance Characteristics](#-performance-characteristics)
75- [Starter Playbooks](#-starter-playbooks)
76- [Extensibility](#-extensibility-adding-new-components)
77- [Troubleshooting](#-troubleshooting)
78- [Design Philosophy](#-design-philosophy)
79- [Comparison with Alternatives](#-comparison-with-alternatives)
80- [Roadmap](#-roadmap)
81 
82---
83 
84## 💡 Why This Exists
85 
86### The Problem
87 
88AI coding agents accumulate valuable knowledge through sessions: debugging strategies, code patterns, user preferences, project-specific insights. But this knowledge is:
89 
901. **Trapped in sessions** — Each session ends, context is lost forever
912. **Agent-specific** — Claude Code doesn't know what Cursor learned yesterday
923. **Unstructured** — Raw conversation logs aren't actionable as guidance
934. **Subject to collapse** — Naive summarization loses critical nuances and details
94 
95You've solved authentication bugs three times this month across different agents. Each time, you started from scratch because the knowledge from previous sessions was inaccessible.
96 
97### The Solution
98 
99`cass-memory` implements a **three-layer cognitive architecture** that transforms raw session logs into actionable, confidence-tracked rules:
100 
101| Layer | Role | Implementation |
102|-------|------|----------------|
103| **Episodic Memory** | Raw ground truth from all agents | `cass` search engine |
104| **Working Memory** | Structured session summaries | Diary entries |
105| **Procedural Memory** | Distilled rules with tracking | Playbook bullets |
106 
107This mirrors how human expertise develops: raw experiences (episodic) are consolidated into structured memories (working), which eventually become automatic knowledge (procedural).
108 
109### Who Benefits
110 
111- **AI Agents**: Get relevant rules and historic

Preview

dicklesworthstone/cass_memory_systemdicklesworthstone/cass_memory_system
Repodicklesworthstone/cass_memory_system
TypeMCP Servers
CategoryAI Agents & MCP
UpdatedJul 2026
LicenseNOASSERTION
First seenJul 27, 2026

Tags

MCP

Related

6 picks
Type
  1. langchain-ai avatarlangchain-mcp-adaptersMake Anthropic Model Context Protocol (MCP) tools compatible with LangChain and LangGraph agents.MCP ServersJul 20267.0M3.6k
  2. openclaw avatarmcporterTypeScript runtime and CLI for connecting to configured Model Context Protocol servers.MCP ServersJul 20262.5M4.8k
  3. sparfenyuk avatarmcp-proxyA MCP server which proxies requests to a remote MCP server over streamable HTTP or SSE.MCP ServersJul 20262.2M2.7k
  4. sooperset avatarmcp-atlassianThe Model Context Protocol (MCP) Atlassian integration is an open-source implementation that bridges Atlassian products (Jira and Confluence) with AI language models following Anthropic's MCP specification.MCP ServersJul 20261.7M5.6k
  5. open-webui avataropen-webuiOpen WebUIMCP ServersJul 20261.4M147k
  6. dyoshikawa avatarrulesyncUnified AI rules management CLI tool that generates configuration files for various AI development toolsMCP ServersJul 2026889k1.3k