Skip to content

Commit 1d532fa

Browse files
committed
Initial commit
Signed-off-by: Steve Scargall <[email protected]>
1 parent 4f59a98 commit 1d532fa

File tree

1,927 files changed

+109246
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,927 files changed

+109246
-0
lines changed

.gitignore

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Generated files by hugo
2+
/public/
3+
/resources/_gen/
4+
/assets/jsconfig.json
5+
hugo_stats.json
6+
7+
# Executable may be added to repository
8+
hugo.exe
9+
hugo.darwin
10+
hugo.linux
11+
12+
# Temporary lock file while building
13+
/.hugo_build.lock

archetypes/default.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
+++
2+
date = '{{ .Date }}'
3+
draft = true
4+
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
5+
+++
18 KB
Loading
Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
---
2+
title: "Introducing MemMachine: The Missing Memory Layer for Your AI Agents"
3+
date: 2025-08-26T10:00:00-06:00
4+
featured_image: "featured_image.png"
5+
tags: ["Product Launch", "AI", "Memory", "featured"]
6+
author: "The MemMachine Team"
7+
description: "Today marks a significant milestone in AI development! We're thrilled to announce the official launch of MemMachine, an open-source, multi-layered memory system designed to empower your AI agents with true intelligence and context."
8+
---
9+
10+
We're incredibly excited to pull back the curtain and officially launch **MemMachine**, a project we believe will fundamentally change how developers build and interact with AI agents. Today, we're making MemMachine available to everyone – from individual developers to large enterprises – offering a robust, flexible, and open-source solution for true agent intelligence.
11+
12+
## **The Challenge: Forgetful Agents**
13+
14+
If you've built AI agents using frameworks like LangChain or LangGraph, you've likely encountered a common frustration: your agents forget. They struggle with long-term context, personalized interactions, and building upon past conversations. While existing memory solutions offer pieces of the puzzle, a comprehensive, multi-layered system has been elusive... until now.
15+
16+
## **Enter MemMachine: Memory, Reimagined**
17+
18+
MemMachine is designed to be the missing memory layer for your AI agents. It provides:
19+
20+
1. **Short-Term Memory (STM):** For immediate conversational context. Think of it as the agent's working memory, allowing fluid, natural dialogue within a single interaction.
21+
2. **Long-Term Memory (LTM):** For recalling facts, procedures, and general knowledge over extended periods. This enables agents to learn and retain information across sessions and users.
22+
3. **Personalization Memory (PM):** This is where MemMachine truly shines. Agents can remember user-specific preferences, interaction history, and unique facts, leading to deeply personalized and intuitive experiences.
23+
24+
**http://googleusercontent.com/image_generation_content/0
25+
26+
**
27+
28+
## **Key Features at a Glance**
29+
30+
* **Open Source:** Full transparency and flexibility. Deploy it yourself, inspect the code, and contribute to its evolution.
31+
* **Multi-layered Architecture:** Go beyond basic conversation buffers with dedicated layers for different memory types.
32+
* **Seamless Integration:** Designed to work with popular agent frameworks like LangChain and LangGraph, enhancing their capabilities without reinvention.
33+
* **Granular Data Control:** Securely connect to your existing data silos (Notion, Slack, databases, etc.) and precisely control what your agent remembers and forgets.
34+
* **Scalability & Persistence:** Built for production, ensuring your agents' memories are robust and available when needed.
35+
36+
## **The Vision: Truly Intelligent AI**
37+
38+
Our goal with MemMachine is to empower developers to build AI agents that are not just reactive, but truly *intelligent*. Agents that understand context, learn from interactions, adapt to individual users, and retain knowledge like a human. This opens up a new realm of possibilities for customer service, personalized assistants, internal tools, and much more.
39+
40+
## **Get Started Today!**
41+
42+
Whether you're an individual developer experimenting with AI or an enterprise looking to deploy sophisticated agents, MemMachine has a plan for you:
43+
44+
* **Open Source:** Dive into the code, self-host, and build.
45+
* **Pro:** Managed cloud service for production-ready teams.
46+
* **Enterprise:** On-premise deployment, custom SLAs, and dedicated support for maximum control and security.
47+
48+
**Explore the Code:** [View on GitHub](#)
49+
**Try it Out:** [Explore Our Playground](#)
50+
**Learn More:** [Check out our Pricing Page](#) or [Contact Sales](#)
51+
52+
We invite you to join our community, explore the possibilities, and start building the next generation of truly intelligent AI agents with MemMachine.
53+
54+
**The MemMachine Team**
18 KB
Loading
Lines changed: 125 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,125 @@
1+
---
2+
title: "Markdown Test Post: Showcasing All Elements"
3+
date: 2025-08-20T10:00:00-07:00
4+
draft: false
5+
authors: ["Theresa Webb"]
6+
featured_image: "featured_image.png"
7+
tags: ["AI", "Sales"]
8+
categories: ["Technology"]
9+
---
10+
11+
## Heading Level 2
12+
13+
### Heading Level 3
14+
15+
#### Heading Level 4
16+
17+
##### Heading Level 5
18+
19+
###### Heading Level 6
20+
21+
---
22+
23+
## Text Formatting
24+
25+
**Bold text**
26+
27+
*Italic text*
28+
29+
***Bold and italic text***
30+
31+
~~Strikethrough~~
32+
33+
**Bold _and_ _italic_** mixed
34+
35+
---
36+
37+
## Lists
38+
39+
### Unordered List
40+
41+
- Item 1
42+
- Item 2
43+
- Subitem 2a
44+
- Subitem 2b
45+
- Item 3
46+
47+
### Ordered List
48+
49+
1. First item
50+
2. Second item
51+
1. Subitem 2.1
52+
2. Subitem 2.2
53+
3. Third item
54+
55+
---
56+
57+
## Blockquotes
58+
59+
> This is a blockquote.
60+
>
61+
> It can span multiple lines.
62+
63+
---
64+
65+
## Code Blocks
66+
67+
### Inline code
68+
69+
Example: `console.log("Hello, Hugo!");`
70+
71+
### Fenced code block (Go example)
72+
73+
```go
74+
package main
75+
76+
import "fmt"
77+
78+
func main() {
79+
fmt.Println("Hello, Hugo!")
80+
}
81+
```
82+
83+
---
84+
85+
## Links
86+
87+
- [Hugo Official Site](https://gohugo.io/)
88+
- [Markdown Guide](https://www.markdownguide.org/)
89+
90+
---
91+
92+
## Images
93+
94+
![Sample Image](https://i.ytimg.com/vi/aqz-KE-bpKQ/maxresdefault.jpg)
95+
96+
---
97+
98+
## YouTube Video Embed
99+
100+
{{< youtube aqz-KE-bpKQ >}}
101+
102+
---
103+
104+
## Tables
105+
106+
| Feature | Supported | Example |
107+
|-----------------|-----------|----------------------|
108+
| Headings | Yes | See above |
109+
| Lists | Yes | `- Item`, `1. Item` |
110+
| Images | Yes | See the image above |
111+
| YouTube Videos | Yes | See above |
112+
| Code Blocks | Yes | See the Go example |
113+
114+
---
115+
116+
## Horizontal Rule
117+
118+
---
119+
120+
## Task List (if supported by theme)
121+
122+
- [x] Completed task
123+
- [ ] Incomplete task
124+
125+
---

content/en/blog/_index.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
title: "Blog"
3+
---
4+
5+
Welcome to the MemMachine blog, your essential resource for building with the next generation of AI memory. Here you'll find product announcements, in-depth technical guides, and news from the forefront of open-source agent development.

content/en/community.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
title: "Welcome the Community Building Agent Memory"
3+
date: 2024-08-21T12:00:00-07:00
4+
draft: false
5+
layout: "community"
6+
---
7+
8+
Welcome! The MemMachine community is a global group of developers, researchers, and AI enthusiasts dedicated to building the open-source memory layer for the next generation of intelligent agents. We're glad you're here.

content/en/contact.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
title: "Contact"
3+
layout: "contact"
4+
hero:
5+
title: "Contact"
6+
span: "Us"
7+
---
8+
9+
Got questions? Reach out! We're here and ready to assist.

content/en/conversations.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
title: "Example Conversations"
3+
date: 2024-08-21T12:00:00-07:00
4+
draft: false
5+
layout: "conversations"
6+
---
7+
8+
Unlock the Potential of Data-Driven Assistants with Actual Conversations

0 commit comments

Comments
 (0)