kiro-memory 1.1.0 → 1.1.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 CHANGED
@@ -38,6 +38,8 @@ When a new session starts, Kiro Memory automatically injects previous session co
38
38
  - **Prompt Tracking** -- Every user prompt recorded for continuity (`userPromptSubmit` hook)
39
39
  - **Tool & File Monitoring** -- File writes, command executions, and tool usage captured in real time (`postToolUse` hook)
40
40
  - **Session Summaries** -- Structured summaries generated when sessions end (`stop` hook)
41
+ - **Web Dashboard** -- Real-time viewer at `http://localhost:3001` with dark/light theme, search, project filters, and live updates via SSE
42
+ - **Auto-Start Worker** -- The background worker starts automatically when a Kiro session begins (no manual setup required)
41
43
  - **MCP Server** -- 4 tools (`search`, `timeline`, `get_observations`, `get_context`) exposed via Model Context Protocol
42
44
  - **Full-Text Search** -- SQLite FTS5 for fast, typo-tolerant search across all stored context
43
45
  - **TypeScript SDK** -- Programmatic access to the entire memory system
@@ -62,11 +64,7 @@ npm install && npm run build
62
64
  npm run install:kiro
63
65
  ```
64
66
 
65
- Start the worker, then use Kiro as usual -- Kiro Memory runs in the background:
66
-
67
- ```bash
68
- npm run worker:start
69
- ```
67
+ Use Kiro as usual -- Kiro Memory runs entirely in the background. The worker auto-starts when a session begins, and the web dashboard is available at `http://localhost:3001`.
70
68
 
71
69
  ## Kiro Integration
72
70
 
@@ -108,12 +106,17 @@ The hooks are fully automatic. No changes to your workflow required.
108
106
  Worker HTTP MCP Server
109
107
  (port 3001) (stdio)
110
108
  | |
111
- +------+------+
109
+ Web Dashboard |
110
+ (localhost:3001) |
111
+ | |
112
+ +------+-----+
112
113
  |
113
114
  SQLite + FTS5
114
115
  (~/.kiro-memory/kiro-memory.db)
115
116
  ```
116
117
 
118
+ > The worker auto-starts when `agentSpawn` fires. No manual setup required.
119
+
117
120
  ### Hooks
118
121
 
119
122
  | Hook | Trigger | Purpose |
@@ -242,7 +245,16 @@ kiro-memory add-observation "Architecture Decision" "Chose PostgreSQL over Mongo
242
245
  | `KIRO_MEMORY_LOG_LEVEL` | `INFO` | Log verbosity: `DEBUG`, `INFO`, `WARN`, `ERROR` |
243
246
  | `KIRO_CONFIG_DIR` | `~/.kiro` | Kiro CLI configuration directory |
244
247
 
245
- ### Worker Management
248
+ ### Worker & Web Dashboard
249
+
250
+ The worker starts automatically when a Kiro session begins (via the `agentSpawn` hook). Once running, open `http://localhost:3001` in your browser to access the web dashboard with:
251
+
252
+ - **Live feed** of observations, summaries, and prompts (via SSE)
253
+ - **Project sidebar** with type filters and stats
254
+ - **Spotlight search** (Ctrl+K / Cmd+K) with instant results
255
+ - **Dark/light theme** toggle
256
+
257
+ For development, you can also manage the worker manually:
246
258
 
247
259
  ```bash
248
260
  npm run worker:start # Start the background worker
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kiro-memory",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "Persistent cross-session memory for Kiro CLI. Automatically tracks context, observations, and summaries across coding sessions.",
5
5
  "keywords": [
6
6
  "kiro",
@@ -1,4 +1,5 @@
1
1
  #!/usr/bin/env node
2
+ import { createRequire } from 'module';const require = createRequire(import.meta.url);
2
3
  var __defProp = Object.defineProperty;
3
4
  var __getOwnPropNames = Object.getOwnPropertyNames;
4
5
  var __require = /* @__PURE__ */ ((x) => typeof require !== "undefined" ? require : typeof Proxy !== "undefined" ? new Proxy(x, {
@@ -1,4 +1,5 @@
1
1
  #!/usr/bin/env node
2
+ import { createRequire } from 'module';const require = createRequire(import.meta.url);
2
3
  var __defProp = Object.defineProperty;
3
4
  var __getOwnPropNames = Object.getOwnPropertyNames;
4
5
  var __require = /* @__PURE__ */ ((x) => typeof require !== "undefined" ? require : typeof Proxy !== "undefined" ? new Proxy(x, {
@@ -1,3 +1,4 @@
1
+ import { createRequire } from 'module';const require = createRequire(import.meta.url);
1
2
  var __defProp = Object.defineProperty;
2
3
  var __getOwnPropNames = Object.getOwnPropertyNames;
3
4
  var __require = /* @__PURE__ */ ((x) => typeof require !== "undefined" ? require : typeof Proxy !== "undefined" ? new Proxy(x, {
@@ -1,4 +1,5 @@
1
1
  #!/usr/bin/env node
2
+ import { createRequire } from 'module';const require = createRequire(import.meta.url);
2
3
  var __defProp = Object.defineProperty;
3
4
  var __getOwnPropNames = Object.getOwnPropertyNames;
4
5
  var __require = /* @__PURE__ */ ((x) => typeof require !== "undefined" ? require : typeof Proxy !== "undefined" ? new Proxy(x, {
@@ -1,4 +1,5 @@
1
1
  #!/usr/bin/env node
2
+ import { createRequire } from 'module';const require = createRequire(import.meta.url);
2
3
  var __defProp = Object.defineProperty;
3
4
  var __getOwnPropNames = Object.getOwnPropertyNames;
4
5
  var __require = /* @__PURE__ */ ((x) => typeof require !== "undefined" ? require : typeof Proxy !== "undefined" ? new Proxy(x, {
@@ -1,4 +1,5 @@
1
1
  #!/usr/bin/env node
2
+ import { createRequire } from 'module';const require = createRequire(import.meta.url);
2
3
  var __defProp = Object.defineProperty;
3
4
  var __getOwnPropNames = Object.getOwnPropertyNames;
4
5
  var __require = /* @__PURE__ */ ((x) => typeof require !== "undefined" ? require : typeof Proxy !== "undefined" ? new Proxy(x, {