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
docs: Update README and add comprehensive two-tier storage documentation
- Updated README to v0.3.15 with new storage features
- Added storage CLI commands and tier descriptions
- Created detailed TWO_TIER_STORAGE.md with:
- Architecture overview
- Configuration options
- Performance characteristics
- Monitoring and troubleshooting guides
- Best practices and examples
Copy file name to clipboardExpand all lines: README.md
+34-8Lines changed: 34 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,14 +1,17 @@
1
1
# StackMemory
2
2
3
-
**Lossless, project-scoped memory for AI tools** • v0.3.4
3
+
**Lossless, project-scoped memory for AI tools** • v0.3.15
4
4
5
-
StackMemory is a **production-ready memory runtime** for AI coding tools that preserves full project context across sessions. With **Phases 1-3 complete**, it delivers:
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:
6
6
7
7
- ✅ **89-98% faster** task operations than manual tracking
8
8
- ✅ **10,000+ frame depth** support with hierarchical organization
9
9
- ✅ **Full Linear integration** with bidirectional sync
10
10
- ✅ **20+ MCP tools** for Claude Code
11
11
- ✅ **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
12
15
13
16
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.
14
17
@@ -251,18 +254,33 @@ Each interaction: ingests events → updates indices → retrieves relevant cont
251
254
252
255
## Storage & limits
253
256
257
+
### Two-Tier Storage System (v0.3.15+)
258
+
259
+
StackMemory implements an intelligent two-tier storage architecture:
260
+
261
+
#### Local Storage Tiers
262
+
-**Young (<24h)**: Uncompressed, complete retention in memory/Redis
0 commit comments