@hyperdreamer/pi-webui 1.9.1 → 1.10.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.
@@ -1217,6 +1217,17 @@ export interface SystemMetricsResponse {
1217
1217
  memory: SystemMemoryInfo;
1218
1218
  network: SystemNetworkMetrics;
1219
1219
  }
1220
+ export interface MemoryEntry {
1221
+ id: string;
1222
+ content: string;
1223
+ category?: string;
1224
+ created?: string;
1225
+ last?: string;
1226
+ failureReason?: string;
1227
+ }
1228
+ export interface MemoryEntriesResponse {
1229
+ entries: MemoryEntry[];
1230
+ }
1220
1231
  export interface SystemInfoResponse {
1221
1232
  generatedAt: string;
1222
1233
  os: SystemOsInfo;
package/docs/plugins.md CHANGED
@@ -201,6 +201,23 @@ PI WEBUI ships core, discoverable plugins in the main `@hyperdreamer/pi-webui` n
201
201
 
202
202
  Built-in plugins can be managed from **Settings → PI WEBUI plugins** or with the top-level `plugins` config key.
203
203
 
204
+ ### Memory
205
+
206
+ **Plugin id:** `workspace-memory`
207
+ **What it does:** adds a read-only **Memory** workspace tab. It reads `pi-hermes-memory`-compatible data through PI WEBUI and never writes, creates, edits, or deletes memories.
208
+
209
+ The tab shows independently collapsible **Global memory** and **Project-specific memory** groups. Project-specific memory contains entries only for the selected workspace project. Empty or missing memory data appears as a scoped empty state. An unavailable project-specific request displays a scoped **Project-specific unavailable** state while **Global memory** remains available. A failed global-memory request is presented as a panel-level retryable error.
210
+
211
+ Memory is bundled with PI WEBUI and enabled by default. To disable it, use **Settings → PI WEBUI plugins** or set:
212
+
213
+ ```json
214
+ {
215
+ "plugins": {
216
+ "workspace-memory": { "enabled": false }
217
+ }
218
+ }
219
+ ```
220
+
204
221
  ### Updates
205
222
 
206
223
  **Plugin id:** `updates`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hyperdreamer/pi-webui",
3
- "version": "1.9.1",
3
+ "version": "1.10.1",
4
4
  "description": "Web UI for persistent Pi Coding Agent sessions in real workspaces.",
5
5
  "license": "MIT",
6
6
  "author": "Federico Jaramillo Martinez and HyperDreamer",