Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 35 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -314,9 +314,43 @@ interface ProjectMemoryConfig {

## Requirements

- Node.js >= 18.0.0
- **Node.js LTS**: 18.x, 20.x, or 22.x (recommended)
- MCP-compatible AI coding assistant

### Node.js Version Notes

This package uses `better-sqlite3` which requires native binaries. **Prebuilt binaries are available for LTS versions only**.

| Node Version | Status | Notes |
|--------------|--------|-------|
| 18.x LTS | ✅ Works | Prebuilt binaries |
| 20.x LTS | ✅ Works | Prebuilt binaries |
| 22.x LTS | ✅ Works | Prebuilt binaries |
| 19.x, 21.x, 23.x | ⚠️ Requires build tools | No prebuilt binaries |

### Using Non-LTS Versions (Windows)

If you must use a non-LTS version (19, 21, 23), install build tools first:

**Option 1: Visual Studio Build Tools**
```powershell
# Download and install from:
# https://visualstudio.microsoft.com/visual-cpp-build-tools/
# Select "Desktop development with C++" workload
```

**Option 2: windows-build-tools (npm)**
```powershell
npm install --global windows-build-tools
```

**Option 3: Chocolatey**
```powershell
choco install visualstudio2022-workload-vctools
```

See [node-gyp Windows guide](https://github.com/nodejs/node-gyp#on-windows) for more details.

---

## AgentKits Ecosystem
Expand Down
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aitytech/agentkits-memory",
"version": "2.0.0",
"version": "2.0.2",
"type": "module",
"description": "Persistent memory system for AI coding assistants via MCP. Works with Claude Code, Cursor, Copilot, Windsurf, Cline.",
"main": "dist/index.js",
Expand Down Expand Up @@ -77,6 +77,6 @@
],
"license": "MIT",
"engines": {
"node": ">=18.0.0"
"node": "^18.0.0 || ^20.0.0 || ^22.0.0"
}
}