gitmem-mcp 1.3.4 → 1.3.5

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/CHANGELOG.md CHANGED
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [1.3.5] - 2026-02-22
11
+
12
+ ### Fixed
13
+ - **Free tier recall→confirm_scars flow broken**: Recall on free tier returned scars to the agent but never tracked them in session state, causing confirm_scars to respond with "No recall-surfaced scars to confirm" even when valid confirmations were submitted. Reported across 3 clean room sessions.
14
+
15
+ ### Added
16
+ - **E2E regression test for recall→confirm_scars**: Verifies the full free tier flow — create scar, recall it, confirm it — catches the session state tracking gap.
17
+
10
18
  ## [1.3.4] - 2026-02-22
11
19
 
12
20
  ### Added
@@ -201,6 +201,16 @@ export async function recall(params) {
201
201
  similarityScores: scars.map((s) => s.similarity),
202
202
  search_mode: "local",
203
203
  });
204
+ // Track surfaced scars for confirm_scars (same as pro tier path)
205
+ const recallSurfacedAt = new Date().toISOString();
206
+ const recallSurfacedScars = scars.map((scar) => ({
207
+ scar_id: scar.id,
208
+ scar_title: scar.title,
209
+ scar_severity: scar.severity || "medium",
210
+ surfaced_at: recallSurfacedAt,
211
+ source: "recall",
212
+ }));
213
+ addSurfacedScars(recallSurfacedScars);
204
214
  const freeFormatted = formatResponse(scars, plan);
205
215
  return {
206
216
  activated: scars.length > 0,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gitmem-mcp",
3
- "version": "1.3.4",
3
+ "version": "1.3.5",
4
4
  "mcpName": "io.github.gitmem-dev/gitmem",
5
5
  "description": "Persistent learning memory for AI coding agents. Memory that compounds.",
6
6
  "type": "module",