kiro-memory 2.1.0 → 3.0.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/README.md +5 -1
- package/package.json +3 -3
- package/plugin/dist/cli/contextkit.js +2342 -183
- package/plugin/dist/hooks/agentSpawn.js +575 -52
- package/plugin/dist/hooks/kiro-hooks.js +575 -52
- package/plugin/dist/hooks/postToolUse.js +583 -59
- package/plugin/dist/hooks/stop.js +575 -52
- package/plugin/dist/hooks/userPromptSubmit.js +578 -53
- package/plugin/dist/index.js +576 -53
- package/plugin/dist/plugins/github/github-client.js +152 -0
- package/plugin/dist/plugins/github/index.js +412 -0
- package/plugin/dist/plugins/github/issue-parser.js +54 -0
- package/plugin/dist/plugins/slack/formatter.js +90 -0
- package/plugin/dist/plugins/slack/index.js +215 -0
- package/plugin/dist/sdk/index.js +575 -52
- package/plugin/dist/servers/mcp-server.js +4461 -397
- package/plugin/dist/services/search/EmbeddingService.js +64 -20
- package/plugin/dist/services/search/HybridSearch.js +380 -38
- package/plugin/dist/services/search/VectorSearch.js +65 -21
- package/plugin/dist/services/search/index.js +380 -38
- package/plugin/dist/services/sqlite/Backup.js +416 -0
- package/plugin/dist/services/sqlite/Database.js +98 -3
- package/plugin/dist/services/sqlite/ImportExport.js +452 -0
- package/plugin/dist/services/sqlite/Observations.js +291 -7
- package/plugin/dist/services/sqlite/Prompts.js +1 -1
- package/plugin/dist/services/sqlite/Search.js +10 -10
- package/plugin/dist/services/sqlite/Summaries.js +4 -4
- package/plugin/dist/services/sqlite/index.js +1350 -31
- package/plugin/dist/viewer.css +1 -1
- package/plugin/dist/viewer.js +16 -8
- package/plugin/dist/viewer.js.map +4 -4
- package/plugin/dist/worker-service.js +326 -75
- package/plugin/dist/worker-service.js.map +4 -4
package/README.md
CHANGED
|
@@ -59,6 +59,10 @@ When a new session starts, Kiro Memory automatically injects previous session co
|
|
|
59
59
|
- **Session Tracking** -- Sessions view with stats (total, active, completed, avg duration) and expandable session details
|
|
60
60
|
- **Session Summaries** -- Structured summaries with investigated/completed/learned/next_steps sections
|
|
61
61
|
- **Web Dashboard** -- Real-time viewer at `http://localhost:3001` with dark/light/system theme, hybrid search, project filters, mobile drawer, and live updates via SSE
|
|
62
|
+
- **Plugin System** -- Extensible architecture with auto-discovery, lifecycle management, REST API. Built-in Slack and GitHub plugins
|
|
63
|
+
- **Backup & Restore** -- Automatic SQLite backup with rotation, point-in-time restore, gzip compression
|
|
64
|
+
- **Import/Export JSONL** -- Streaming import/export with SHA256 deduplication for portable backups
|
|
65
|
+
- **Secret Filtering** -- Automatic redaction of API keys, passwords, and tokens in observations
|
|
62
66
|
- **MCP Server** -- 11 tools exposed via Model Context Protocol
|
|
63
67
|
- **Full-Text Search** -- SQLite FTS5 with weighted BM25 scoring for relevance-ranked results
|
|
64
68
|
- **Data Export** -- Export observations and summaries in JSON or Markdown format
|
|
@@ -112,7 +116,7 @@ For editors without hook support, Kiro Memory uses **rules files** + **MCP serve
|
|
|
112
116
|
- **Windsurf**: `.windsurfrules` + MCP config in `~/.codeium/windsurf/mcp_config.json`
|
|
113
117
|
- **Cline**: `.clinerules` + MCP config in Cline settings
|
|
114
118
|
|
|
115
|
-
The MCP server exposes
|
|
119
|
+
The MCP server exposes 11 tools that your AI assistant can use directly.
|
|
116
120
|
|
|
117
121
|
## Architecture
|
|
118
122
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kiro-memory",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.1",
|
|
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",
|
|
@@ -97,7 +97,7 @@
|
|
|
97
97
|
"class-variance-authority": "^0.7.1",
|
|
98
98
|
"cors": "^2.8.5",
|
|
99
99
|
"dompurify": "^3.3.1",
|
|
100
|
-
"express": "^
|
|
100
|
+
"express": "^5.2.1",
|
|
101
101
|
"express-rate-limit": "^8.2.1",
|
|
102
102
|
"glob": "^11.0.3",
|
|
103
103
|
"handlebars": "^4.7.8",
|
|
@@ -116,7 +116,7 @@
|
|
|
116
116
|
"@types/better-sqlite3": "^7.6.13",
|
|
117
117
|
"@types/cors": "^2.8.19",
|
|
118
118
|
"@types/dompurify": "^3.0.5",
|
|
119
|
-
"@types/express": "^
|
|
119
|
+
"@types/express": "^5.0.6",
|
|
120
120
|
"@types/express-rate-limit": "^5.1.3",
|
|
121
121
|
"@types/node": "^20.0.0",
|
|
122
122
|
"@types/react": "^18.3.5",
|