@pellux/goodvibes-tui 0.19.44 → 0.19.47
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 +25 -0
- package/README.md +1 -1
- package/docs/foundation-artifacts/knowledge-graphql.graphql +5 -5
- package/docs/foundation-artifacts/operator-contract.json +5571 -448
- package/package.json +2 -2
- package/src/cli/help.ts +2 -3
- package/src/runtime/services.ts +4 -1
- package/src/version.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,31 @@ All notable changes to GoodVibes TUI.
|
|
|
4
4
|
|
|
5
5
|
---
|
|
6
6
|
|
|
7
|
+
## [0.19.47] — 2026-04-28
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
- Moved Bun compile compatibility patching into `prebuild` so manual local compile flows patch SDK 0.26.0 transitive `css-tree` JSON loaders before `bun build --compile`.
|
|
11
|
+
- Patched the remaining `mdn-data` JSON imports used by `css-tree/lib/data.js`, fixing compiled TUI startup from directories outside the source checkout.
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
## [0.19.46] — 2026-04-28
|
|
16
|
+
|
|
17
|
+
### Fixed
|
|
18
|
+
- 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.
|
|
19
|
+
|
|
20
|
+
---
|
|
21
|
+
|
|
22
|
+
## [0.19.45] — 2026-04-28
|
|
23
|
+
|
|
24
|
+
### Added
|
|
25
|
+
- 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.
|
|
26
|
+
- Documented SDK-owned browser-local knowledge ingestion as an opt-in local-data import path exposed through `knowledge.ingest.browserHistory`.
|
|
27
|
+
|
|
28
|
+
### Changed
|
|
29
|
+
- 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.
|
|
30
|
+
- Regenerated foundation operator contract artifacts from the SDK 0.26.0 contract.
|
|
31
|
+
|
|
7
32
|
## [0.19.44] — 2026-04-27
|
|
8
33
|
|
|
9
34
|
### Changed
|
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://github.com/mgd34msu/goodvibes-tui/actions/workflows/ci.yml)
|
|
4
4
|
[](https://opensource.org/licenses/MIT)
|
|
5
|
-
[](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!
|