@stackmemoryai/stackmemory 1.2.6 → 1.2.8
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 +9 -3
- package/dist/src/cli/commands/digest.js +73 -0
- package/dist/src/cli/commands/ralph.js +3 -3
- package/dist/src/cli/index.js +2 -0
- package/dist/src/core/digest/chronological-digest.js +143 -0
- package/dist/src/core/digest/index.js +1 -0
- package/dist/src/core/extensions/provider-adapter.js +5 -13
- package/dist/src/core/models/model-router.js +3 -5
- package/dist/src/integrations/mcp/server.js +473 -247
- package/dist/src/integrations/mcp/tool-definitions.js +567 -50
- package/dist/src/integrations/ralph/patterns/oracle-worker-pattern.js +6 -6
- package/package.json +21 -8
- package/templates/claude-hooks/session-rescue.sh +3 -0
- /package/templates/claude-hooks/{auto-background-hook.js → archive/auto-background-hook.js} +0 -0
- /package/templates/claude-hooks/{hook-config.json → archive/hook-config.json} +0 -0
- /package/templates/claude-hooks/{hooks.json → archive/hooks.json} +0 -0
- /package/templates/claude-hooks/{on-compact-detected → archive/on-compact-detected} +0 -0
- /package/templates/claude-hooks/{on-exit → archive/on-exit} +0 -0
- /package/templates/claude-hooks/{post-edit-sweep.js → archive/post-edit-sweep.js} +0 -0
- /package/templates/claude-hooks/{pre-tool-use → archive/pre-tool-use} +0 -0
|
@@ -320,9 +320,9 @@ const defaultModelConfigs = {
|
|
|
320
320
|
{
|
|
321
321
|
tier: "oracle",
|
|
322
322
|
provider: "claude",
|
|
323
|
-
model: "claude-
|
|
324
|
-
costPerToken:
|
|
325
|
-
// $
|
|
323
|
+
model: "claude-sonnet-4-5-20250929",
|
|
324
|
+
costPerToken: 3e-3,
|
|
325
|
+
// $3/1M input tokens
|
|
326
326
|
capabilities: [
|
|
327
327
|
"strategic_planning",
|
|
328
328
|
"complex_reasoning",
|
|
@@ -336,9 +336,9 @@ const defaultModelConfigs = {
|
|
|
336
336
|
{
|
|
337
337
|
tier: "worker",
|
|
338
338
|
provider: "claude",
|
|
339
|
-
model: "claude-
|
|
340
|
-
costPerToken:
|
|
341
|
-
// $0.
|
|
339
|
+
model: "claude-haiku-4-5-20251001",
|
|
340
|
+
costPerToken: 8e-4,
|
|
341
|
+
// $0.80/1M input tokens
|
|
342
342
|
capabilities: [
|
|
343
343
|
"code_implementation",
|
|
344
344
|
"unit_testing",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stackmemoryai/stackmemory",
|
|
3
|
-
"version": "1.2.
|
|
4
|
-
"description": "Project-scoped memory for AI coding tools. Durable context across sessions with
|
|
3
|
+
"version": "1.2.8",
|
|
4
|
+
"description": "Project-scoped memory for AI coding tools. Durable context across sessions with 55 MCP tools, FTS5 search, Claude/Codex/OpenCode wrappers, Linear sync, automatic hooks, and log analysis.",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=20.0.0",
|
|
7
7
|
"npm": ">=10.0.0"
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"type": "git",
|
|
53
53
|
"url": "https://github.com/stackmemoryai/stackmemory.git"
|
|
54
54
|
},
|
|
55
|
-
"homepage": "https://github.
|
|
55
|
+
"homepage": "https://stackmemoryai.github.io/stackmemory/",
|
|
56
56
|
"bugs": {
|
|
57
57
|
"url": "https://github.com/stackmemoryai/stackmemory/issues"
|
|
58
58
|
},
|
|
@@ -63,22 +63,35 @@
|
|
|
63
63
|
},
|
|
64
64
|
"keywords": [
|
|
65
65
|
"ai",
|
|
66
|
+
"ai-memory",
|
|
67
|
+
"ai-coding",
|
|
66
68
|
"memory",
|
|
67
69
|
"context",
|
|
70
|
+
"context-management",
|
|
68
71
|
"llm",
|
|
69
72
|
"mcp",
|
|
73
|
+
"mcp-server",
|
|
74
|
+
"mcp-tools",
|
|
75
|
+
"model-context-protocol",
|
|
70
76
|
"claude",
|
|
71
77
|
"claude-code",
|
|
72
|
-
"
|
|
78
|
+
"codex",
|
|
79
|
+
"opencode",
|
|
80
|
+
"coding-assistant",
|
|
73
81
|
"persistence",
|
|
82
|
+
"session-persistence",
|
|
83
|
+
"fts5",
|
|
84
|
+
"full-text-search",
|
|
85
|
+
"sqlite",
|
|
74
86
|
"skills",
|
|
75
87
|
"hooks",
|
|
76
|
-
"spec-generator",
|
|
77
88
|
"linear",
|
|
89
|
+
"linear-integration",
|
|
78
90
|
"task-runner",
|
|
79
|
-
"
|
|
80
|
-
"
|
|
81
|
-
"
|
|
91
|
+
"agent-orchestration",
|
|
92
|
+
"multi-agent",
|
|
93
|
+
"developer-tools",
|
|
94
|
+
"devtools"
|
|
82
95
|
],
|
|
83
96
|
"scripts": {
|
|
84
97
|
"start": "node dist/src/integrations/mcp/server.js",
|
|
@@ -13,3 +13,6 @@ command -v stackmemory >/dev/null 2>&1 || exit 0
|
|
|
13
13
|
# Capture without committing, compact format, 10s timeout
|
|
14
14
|
timeout 10 stackmemory capture --no-commit --format compact \
|
|
15
15
|
-m "auto-rescue on session close" >/dev/null 2>&1 || true
|
|
16
|
+
|
|
17
|
+
# Generate today's digest (best-effort, 5s timeout)
|
|
18
|
+
timeout 5 stackmemory digest today >/dev/null 2>&1 || true
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|