@pellux/goodvibes-tui 0.19.44 → 0.19.46

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/CHANGELOG.md CHANGED
@@ -4,6 +4,23 @@ All notable changes to GoodVibes TUI.
4
4
 
5
5
  ---
6
6
 
7
+ ## [0.19.46] — 2026-04-28
8
+
9
+ ### Fixed
10
+ - Patched the release binary build for SDK 0.26.0 dependencies that load `css-tree` JSON metadata through `createRequire`, allowing Bun-compiled daemon binaries to start successfully.
11
+
12
+ ---
13
+
14
+ ## [0.19.45] — 2026-04-28
15
+
16
+ ### Added
17
+ - Documented SDK-owned Home Assistant Home Graph daemon routes for snapshot sync, graph browse, source-backed answers, issue review, device passports, room pages, packets, import/export, and source inventory.
18
+ - Documented SDK-owned browser-local knowledge ingestion as an opt-in local-data import path exposed through `knowledge.ingest.browserHistory`.
19
+
20
+ ### Changed
21
+ - Updated `@pellux/goodvibes-sdk` to `0.26.0` for Home Assistant Home Graph support, browser-local knowledge ingestion, Readability-backed HTML extraction, and refreshed SDK docs/operator contracts.
22
+ - Regenerated foundation operator contract artifacts from the SDK 0.26.0 contract.
23
+
7
24
  ## [0.19.44] — 2026-04-27
8
25
 
9
26
  ### Changed
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  [![CI](https://github.com/mgd34msu/goodvibes-tui/actions/workflows/ci.yml/badge.svg)](https://github.com/mgd34msu/goodvibes-tui/actions/workflows/ci.yml)
4
4
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
5
- [![Version](https://img.shields.io/badge/version-0.19.44-blue.svg)](https://github.com/mgd34msu/goodvibes-tui)
5
+ [![Version](https://img.shields.io/badge/version-0.19.46-blue.svg)](https://github.com/mgd34msu/goodvibes-tui)
6
6
 
7
7
  A terminal-native AI coding, operations, automation, knowledge, and integration console with a typed runtime, omnichannel surfaces, structured memory/knowledge, and a raw ANSI renderer.
8
8
 
@@ -351,13 +351,13 @@ type Query {
351
351
  status: KnowledgeStatus!
352
352
  connectors: [KnowledgeConnector!]!
353
353
  connectorDoctor(id: String!): KnowledgeConnectorDoctorReport
354
- sources(limit: Int, offset: Int): [KnowledgeSource!]!
355
- nodes(limit: Int, offset: Int): [KnowledgeNode!]!
356
- issues(limit: Int, offset: Int): [KnowledgeIssue!]!
354
+ sources(limit: Int, offset: Int, knowledgeSpaceId: String): [KnowledgeSource!]!
355
+ nodes(limit: Int, offset: Int, knowledgeSpaceId: String): [KnowledgeNode!]!
356
+ issues(limit: Int, offset: Int, knowledgeSpaceId: String): [KnowledgeIssue!]!
357
357
  itemView(kind: String!, id: String!): KnowledgeItemView
358
- extractions(limit: Int, sourceId: String): [KnowledgeExtraction!]!
358
+ extractions(limit: Int, sourceId: String, knowledgeSpaceId: String): [KnowledgeExtraction!]!
359
359
  neighbors(kind: String!, id: String!, relation: String, limit: Int): [KnowledgeEdge!]!
360
- search(query: String!, limit: Int): [KnowledgeSearchResult!]!
360
+ search(query: String!, limit: Int, knowledgeSpaceId: String): [KnowledgeSearchResult!]!
361
361
  packet(task: String!, writeScope: [String!], limit: Int, detail: KnowledgePacketDetail, budgetLimit: Int): KnowledgePacket!
362
362
  projectionTargets(limit: Int): [KnowledgeProjectionTarget!]!
363
363
  projection(kind: KnowledgeProjectionKind!, id: String, limit: Int): KnowledgeProjectionBundle!