kiro-memory 1.8.1 → 2.1.0
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/package.json +6 -4
- package/plugin/dist/cli/contextkit.js +428 -205
- package/plugin/dist/hooks/agentSpawn.js +311 -180
- package/plugin/dist/hooks/kiro-hooks.js +299 -168
- package/plugin/dist/hooks/postToolUse.js +303 -172
- package/plugin/dist/hooks/stop.js +308 -177
- package/plugin/dist/hooks/userPromptSubmit.js +303 -172
- package/plugin/dist/index.js +303 -299
- package/plugin/dist/sdk/index.js +299 -172
- package/plugin/dist/services/search/EmbeddingService.js +88 -23
- package/plugin/dist/services/search/HybridSearch.js +190 -84
- package/plugin/dist/services/search/VectorSearch.js +128 -45
- package/plugin/dist/services/search/index.js +192 -223
- package/plugin/dist/services/sqlite/Database.js +55 -153
- package/plugin/dist/services/sqlite/Observations.js +23 -12
- package/plugin/dist/services/sqlite/Search.js +31 -19
- package/plugin/dist/services/sqlite/Sessions.js +5 -0
- package/plugin/dist/services/sqlite/index.js +113 -183
- package/plugin/dist/viewer.css +1 -0
- package/plugin/dist/viewer.html +2 -100
- package/plugin/dist/viewer.js +15 -24896
- package/plugin/dist/viewer.js.map +7 -0
- package/plugin/dist/worker-service.js +158 -5551
- package/plugin/dist/worker-service.js.map +7 -0
- package/scripts/postinstall.cjs +42 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kiro-memory",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "2.1.0",
|
|
4
4
|
"description": "Persistent cross-session memory for AI coding assistants. Works with Claude Code, Cursor, Windsurf, Cline, and any MCP-compatible editor.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"kiro",
|
|
@@ -41,7 +41,8 @@
|
|
|
41
41
|
},
|
|
42
42
|
"files": [
|
|
43
43
|
"dist",
|
|
44
|
-
"plugin"
|
|
44
|
+
"plugin",
|
|
45
|
+
"scripts/postinstall.cjs"
|
|
45
46
|
],
|
|
46
47
|
"bin": {
|
|
47
48
|
"kiro-memory": "./plugin/dist/cli/contextkit.js"
|
|
@@ -53,6 +54,7 @@
|
|
|
53
54
|
"scripts": {
|
|
54
55
|
"dev": "npm run build-and-sync",
|
|
55
56
|
"build": "node scripts/build-plugin.js",
|
|
57
|
+
"typecheck": "tsc --noEmit",
|
|
56
58
|
"build-and-sync": "npm run build && npm run sync-kiro && npm run worker:restart",
|
|
57
59
|
"sync-kiro": "node scripts/sync-kiro.cjs",
|
|
58
60
|
"sync-kiro:force": "node scripts/sync-kiro.cjs --force",
|
|
@@ -75,6 +77,7 @@
|
|
|
75
77
|
"test:infra": "bun test tests/infrastructure/",
|
|
76
78
|
"test:server": "bun test tests/server/",
|
|
77
79
|
"install:kiro": "bash scripts/install-kiro.sh",
|
|
80
|
+
"postinstall": "node scripts/postinstall.cjs",
|
|
78
81
|
"prepublishOnly": "npm run build",
|
|
79
82
|
"release": "np",
|
|
80
83
|
"release:patch": "np patch --no-cleanup",
|
|
@@ -88,11 +91,9 @@
|
|
|
88
91
|
"2fa": false
|
|
89
92
|
},
|
|
90
93
|
"dependencies": {
|
|
91
|
-
"@chroma-core/default-embed": "^0.1.9",
|
|
92
94
|
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
93
95
|
"ansi-to-html": "^0.7.2",
|
|
94
96
|
"better-sqlite3": "^12.6.2",
|
|
95
|
-
"chromadb": "^3.2.2",
|
|
96
97
|
"class-variance-authority": "^0.7.1",
|
|
97
98
|
"cors": "^2.8.5",
|
|
98
99
|
"dompurify": "^3.3.1",
|
|
@@ -123,6 +124,7 @@
|
|
|
123
124
|
"bun-types": "^1.0.0",
|
|
124
125
|
"esbuild": "^0.27.2",
|
|
125
126
|
"np": "^11.0.2",
|
|
127
|
+
"tailwindcss": "^3.4.19",
|
|
126
128
|
"tsx": "^4.20.6",
|
|
127
129
|
"typescript": "^5.3.0"
|
|
128
130
|
}
|