You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+97-33Lines changed: 97 additions & 33 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,19 +1,15 @@
1
1
# StackMemory
2
2
3
-
**Lossless, project-scoped memory for AI tools** • v0.5.30
3
+
**Lossless, project-scoped memory for AI tools** • v0.5.40
4
4
5
-
StackMemory is a **production-ready memory runtime** for AI coding tools that preserves full project context across sessions. With **Phases 1-4 complete**, it delivers:
5
+
StackMemory is a **production-ready memory runtime** for AI coding tools that preserves full project context across sessions:
6
6
7
-
-**89-98% faster**task operations than manual tracking
8
-
-**10,000+ frame depth**support with hierarchical organization
7
+
-**Zero-config setup**- `stackmemory init` just works, no questions asked
8
+
-**26 MCP tools**for Claude Code integration
9
9
-**Full Linear integration** with bidirectional sync
10
-
-**20+ MCP tools** for Claude Code
11
10
-**Context persistence** that survives /clear operations
12
-
-**Two-tier storage system** with local tiers and infinite remote storage
13
-
-**Smart compression** (LZ4/ZSTD) with 2.5-3.5x ratios
14
-
-**Background migration** with configurable triggers
15
-
-**396 tests passing** with standardized error handling
16
-
-**npm v0.5.30** published with WhatsApp notifications and improved integrations
-**490 tests passing** with comprehensive coverage
17
13
18
14
Instead of a linear chat log, StackMemory organizes memory as a **call stack** of scoped work (frames), with intelligent LLM-driven retrieval and team collaboration features.
19
15
@@ -120,46 +116,76 @@ The editor never manages memory directly; it asks StackMemory for the **context
120
116
121
117
# QuickStart
122
118
123
-
## 1. Hosted (Recommended)
124
-
125
-
### Step 1: Create a project
119
+
## 1. Install & Initialize (30 seconds)
126
120
127
121
```bash
128
-
stackmemory projects create \
129
-
--repo https://github.com/org/repo
122
+
# Install globally
123
+
npm install -g @stackmemoryai/stackmemory
124
+
125
+
# Initialize in your project (zero-config, just works)
126
+
cd your-project
127
+
stackmemory init
128
+
129
+
# Configure Claude Code integration
130
+
stackmemory setup-mcp
131
+
132
+
# Verify everything works
133
+
stackmemory doctor
130
134
```
131
135
132
-
This creates a **project-scoped memory space** tied to the repo.
136
+
That's it! Restart Claude Code and StackMemory MCP tools are available.
133
137
134
138
---
135
139
136
-
### Step 2: Install StackMemory
140
+
## 2. Detailed Setup
141
+
142
+
### Install
137
143
138
144
```bash
139
-
npm install -g @stackmemoryai/stackmemory@0.5.30
140
-
# or latest
141
145
npm install -g @stackmemoryai/stackmemory@latest
142
146
```
143
147
144
-
---
148
+
During install, you'll be asked if you want to install Claude Code hooks (optional but recommended).
145
149
146
-
### Step 3: Setup Claude Code Integration (Automated)
150
+
### Initialize Project
147
151
148
152
```bash
149
-
# Automatic setup - configures MCP and session hooks
150
-
npm run claude:setup
153
+
cd your-project
154
+
stackmemory init
151
155
```
152
156
153
-
This automatically:
157
+
This creates `.stackmemory/` with SQLite storage. No questions asked.
0 commit comments