gitmem-mcp 1.3.0 → 1.3.1
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 +8 -0
- package/README.md +1 -1
- package/bin/init-wizard.js +1 -2
- package/dist/services/local-file-storage.js +2 -1
- package/dist/tools/log.js +1 -1
- package/package.json +2 -2
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.1] - 2026-02-22
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- **Archived learnings excluded from free tier search/log**: `keywordSearch` and `log` on the free tier (local JSON storage) now filter out `is_active === false` learnings, matching pro tier behavior.
|
|
14
|
+
|
|
15
|
+
### Changed
|
|
16
|
+
- **Removed uninstall line from init success footer**: Cleaner post-install output.
|
|
17
|
+
|
|
10
18
|
## [1.3.0] - 2026-02-22
|
|
11
19
|
|
|
12
20
|
### Added
|
package/README.md
CHANGED
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
|
|
20
20
|
---
|
|
21
21
|
|
|
22
|
-
GitMem is an [MCP server](https://modelcontextprotocol.io/) that gives your AI coding agent **persistent memory across sessions**. It remembers mistakes (scars), successes (wins), and decisions — so your agent learns from experience instead of starting from scratch every time.
|
|
22
|
+
GitMem is an [MCP server](https://modelcontextprotocol.io/) that gives your AI coding agent **persistent learning memory across agent sessions**. It remembers mistakes (scars), successes (wins), and decisions — so your agent learns from experience instead of starting from scratch every time.
|
|
23
23
|
|
|
24
24
|
> **What's MCP?** [Model Context Protocol](https://modelcontextprotocol.io/) is how AI coding tools connect to external capabilities. GitMem is an MCP server — install it once and your agent gains persistent memory.
|
|
25
25
|
|
package/bin/init-wizard.js
CHANGED
|
@@ -913,8 +913,7 @@ async function main() {
|
|
|
913
913
|
console.log("───────────────────────────────────────────────────");
|
|
914
914
|
console.log("");
|
|
915
915
|
console.log(`${PRODUCT} ${C.red}${C.bold}installed successfully!${C.reset}`);
|
|
916
|
-
console.log(`${C.dim}Docs:${C.reset}
|
|
917
|
-
console.log(`${C.dim}Remove:${C.reset} npx gitmem-mcp uninstall`);
|
|
916
|
+
console.log(`${C.dim}Docs:${C.reset} ${C.red}https://gitmem.ai/docs${C.reset}`);
|
|
918
917
|
console.log("");
|
|
919
918
|
console.log(`${C.dim}Try asking your agent:${C.reset}`);
|
|
920
919
|
console.log(` ${C.italic}"Review the gitmem tools, test them, convince yourself"${C.reset}`);
|
|
@@ -123,7 +123,8 @@ export class LocalFileStorage {
|
|
|
123
123
|
* Uses stemming, IDF weighting, and document length normalization.
|
|
124
124
|
*/
|
|
125
125
|
async keywordSearch(query, k = 5) {
|
|
126
|
-
const learnings = this.readCollection("learnings")
|
|
126
|
+
const learnings = this.readCollection("learnings")
|
|
127
|
+
.filter((l) => l.is_active !== false);
|
|
127
128
|
if (learnings.length === 0)
|
|
128
129
|
return [];
|
|
129
130
|
// Build BM25 documents with field boosting
|
package/dist/tools/log.js
CHANGED
|
@@ -75,7 +75,7 @@ export async function log(params) {
|
|
|
75
75
|
try {
|
|
76
76
|
const queryTimer = new Timer();
|
|
77
77
|
const storage = getStorage();
|
|
78
|
-
const filters = {};
|
|
78
|
+
const filters = { is_active: "eq.true" };
|
|
79
79
|
if (typeFilter)
|
|
80
80
|
filters.learning_type = typeFilter;
|
|
81
81
|
if (severityFilter)
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gitmem-mcp",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.1",
|
|
4
4
|
"mcpName": "io.github.gitmem-dev/gitmem",
|
|
5
|
-
"description": "
|
|
5
|
+
"description": "Persistent learning memory for AI coding agents. Memory that compounds.",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "dist/index.js",
|
|
8
8
|
"types": "dist/index.d.ts",
|