@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.
@@ -320,9 +320,9 @@ const defaultModelConfigs = {
320
320
  {
321
321
  tier: "oracle",
322
322
  provider: "claude",
323
- model: "claude-3-opus-20240229",
324
- costPerToken: 0.015,
325
- // $15/1M input tokens
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-3-5-haiku-20241022",
340
- costPerToken: 25e-5,
341
- // $0.25/1M input tokens
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.6",
4
- "description": "Project-scoped memory for AI coding tools. Durable context across sessions with 32 MCP tools, FTS5 search, Claude/Codex/OpenCode wrappers, Linear sync, automatic hooks, and log analysis.",
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.com/stackmemoryai/stackmemory",
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
- "coding",
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
- "prompt-optimization",
80
- "model-routing",
81
- "agent-orchestration"
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