@stackmemoryai/stackmemory 0.3.16 → 0.3.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +48 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# StackMemory
|
|
2
2
|
|
|
3
|
-
**Lossless, project-scoped memory for AI tools** • v0.3.
|
|
3
|
+
**Lossless, project-scoped memory for AI tools** • v0.3.16
|
|
4
4
|
|
|
5
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
|
|
|
@@ -12,6 +12,8 @@ StackMemory is a **production-ready memory runtime** for AI coding tools that pr
|
|
|
12
12
|
- ✅ **Two-tier storage system** with local tiers and infinite remote storage
|
|
13
13
|
- ✅ **Smart compression** (LZ4/ZSTD) with 2.5-3.5x ratios
|
|
14
14
|
- ✅ **Background migration** with configurable triggers
|
|
15
|
+
- ✅ **296 tests passing** with improved error handling
|
|
16
|
+
- ✅ **npm v0.3.16** published with production-ready improvements
|
|
15
17
|
|
|
16
18
|
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.
|
|
17
19
|
|
|
@@ -92,6 +94,30 @@ The editor never manages memory directly; it asks StackMemory for the **context
|
|
|
92
94
|
|
|
93
95
|
---
|
|
94
96
|
|
|
97
|
+
## Product Health Metrics
|
|
98
|
+
|
|
99
|
+
### Current Status (v0.3.16)
|
|
100
|
+
|
|
101
|
+
| Metric | Current | Target | Status |
|
|
102
|
+
|--------|---------|--------|--------|
|
|
103
|
+
| **Test Coverage** | 80% | 90% | 🟡 |
|
|
104
|
+
| **Performance (p50)** | TBD | <50ms | 🔄 |
|
|
105
|
+
| **Documentation** | 60% | 100% | 🟡 |
|
|
106
|
+
| **Active Issues** | 13 high | 0 high | 🟡 |
|
|
107
|
+
| **Code Quality** | 296 tests | 350+ | ✅ |
|
|
108
|
+
| **npm Downloads** | Growing | 1K+/week | 🚀 |
|
|
109
|
+
|
|
110
|
+
### Quality Score: 72/100
|
|
111
|
+
|
|
112
|
+
**Formula:** (Test Coverage × 0.3) + (Performance × 0.3) + (Documentation × 0.2) + (Issues Resolution × 0.2)
|
|
113
|
+
|
|
114
|
+
### Next Sprint Priorities
|
|
115
|
+
|
|
116
|
+
1. **[STA-289] Performance Optimization** - Achieve SLA targets
|
|
117
|
+
2. **[STA-291] Code Cleanup** - Zero TODOs, 90% coverage
|
|
118
|
+
|
|
119
|
+
---
|
|
120
|
+
|
|
95
121
|
# QuickStart
|
|
96
122
|
|
|
97
123
|
## 1. Hosted (Recommended)
|
|
@@ -110,6 +136,8 @@ This creates a **project-scoped memory space** tied to the repo.
|
|
|
110
136
|
### Step 2: Install StackMemory
|
|
111
137
|
|
|
112
138
|
```bash
|
|
139
|
+
npm install -g @stackmemoryai/stackmemory@0.3.16
|
|
140
|
+
# or latest
|
|
113
141
|
npm install -g @stackmemoryai/stackmemory@latest
|
|
114
142
|
```
|
|
115
143
|
|
|
@@ -427,8 +455,26 @@ stackmemory mcp-server [--port 3001]
|
|
|
427
455
|
- Hosted: **Private beta**
|
|
428
456
|
- OSS mirror: **Production ready**
|
|
429
457
|
- MCP integration: **Stable**
|
|
430
|
-
- CLI: **v0.3.
|
|
458
|
+
- CLI: **v0.3.16** - Full task, context, Linear, and storage management
|
|
431
459
|
- Two-tier storage: **Complete**
|
|
460
|
+
- Test Suite: **296 tests passing**
|
|
461
|
+
|
|
462
|
+
---
|
|
463
|
+
|
|
464
|
+
## Changelog
|
|
465
|
+
|
|
466
|
+
### v0.3.16 (2026-01-15)
|
|
467
|
+
- ✅ Fixed critical error handling - getFrame() returns undefined instead of throwing
|
|
468
|
+
- ✅ Improved test coverage and fixed StackMemoryError constructor usage
|
|
469
|
+
- ✅ Removed dangerous secret-cleaning scripts from repository
|
|
470
|
+
- ✅ All tests passing, lint clean, build successful
|
|
471
|
+
- ✅ Published to npm with production-ready improvements
|
|
472
|
+
|
|
473
|
+
### v0.3.15 (2026-01-14)
|
|
474
|
+
- ✅ Two-tier storage system implementation complete
|
|
475
|
+
- ✅ Smart compression with LZ4/ZSTD support
|
|
476
|
+
- ✅ Background migration with configurable triggers
|
|
477
|
+
- ✅ Improved Linear integration with bidirectional sync
|
|
432
478
|
|
|
433
479
|
---
|
|
434
480
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stackmemoryai/stackmemory",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.17",
|
|
4
4
|
"description": "Lossless memory runtime for AI coding tools - organizes context as a call stack instead of linear chat logs, with team collaboration and infinite retention",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=20.0.0",
|