@pellux/goodvibes-tui 0.19.72 → 0.19.73
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
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
|
|
|
@@ -345,22 +345,24 @@ input KnowledgePacketInput {
|
|
|
345
345
|
limit: Int
|
|
346
346
|
detail: KnowledgePacketDetail
|
|
347
347
|
budgetLimit: Int
|
|
348
|
+
knowledgeSpaceId: String
|
|
349
|
+
includeAllSpaces: Boolean
|
|
348
350
|
}
|
|
349
351
|
|
|
350
352
|
type Query {
|
|
351
|
-
status: KnowledgeStatus!
|
|
353
|
+
status(knowledgeSpaceId: String, includeAllSpaces: Boolean): KnowledgeStatus!
|
|
352
354
|
connectors: [KnowledgeConnector!]!
|
|
353
355
|
connectorDoctor(id: String!): KnowledgeConnectorDoctorReport
|
|
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!]!
|
|
356
|
+
sources(limit: Int, offset: Int, knowledgeSpaceId: String, includeAllSpaces: Boolean): [KnowledgeSource!]!
|
|
357
|
+
nodes(limit: Int, offset: Int, knowledgeSpaceId: String, includeAllSpaces: Boolean): [KnowledgeNode!]!
|
|
358
|
+
issues(limit: Int, offset: Int, knowledgeSpaceId: String, includeAllSpaces: Boolean): [KnowledgeIssue!]!
|
|
357
359
|
itemView(kind: String!, id: String!): KnowledgeItemView
|
|
358
|
-
extractions(limit: Int, sourceId: String, knowledgeSpaceId: String): [KnowledgeExtraction!]!
|
|
360
|
+
extractions(limit: Int, sourceId: String, knowledgeSpaceId: String, includeAllSpaces: Boolean): [KnowledgeExtraction!]!
|
|
359
361
|
neighbors(kind: String!, id: String!, relation: String, limit: Int): [KnowledgeEdge!]!
|
|
360
|
-
search(query: String!, limit: Int, knowledgeSpaceId: String): [KnowledgeSearchResult!]!
|
|
361
|
-
packet(task: String!, writeScope: [String!], limit: Int, detail: KnowledgePacketDetail, budgetLimit: Int): KnowledgePacket!
|
|
362
|
-
projectionTargets(limit: Int): [KnowledgeProjectionTarget!]!
|
|
363
|
-
projection(kind: KnowledgeProjectionKind!, id: String, limit: Int): KnowledgeProjectionBundle!
|
|
362
|
+
search(query: String!, limit: Int, knowledgeSpaceId: String, includeAllSpaces: Boolean): [KnowledgeSearchResult!]!
|
|
363
|
+
packet(task: String!, writeScope: [String!], limit: Int, detail: KnowledgePacketDetail, budgetLimit: Int, knowledgeSpaceId: String, includeAllSpaces: Boolean): KnowledgePacket!
|
|
364
|
+
projectionTargets(limit: Int, knowledgeSpaceId: String, includeAllSpaces: Boolean): [KnowledgeProjectionTarget!]!
|
|
365
|
+
projection(kind: KnowledgeProjectionKind!, id: String, limit: Int, knowledgeSpaceId: String, includeAllSpaces: Boolean): KnowledgeProjectionBundle!
|
|
364
366
|
jobs: [KnowledgeJob!]!
|
|
365
367
|
job(id: String!): KnowledgeJob
|
|
366
368
|
jobRuns(limit: Int, jobId: String): [KnowledgeJobRun!]!
|
|
@@ -380,8 +382,8 @@ type Mutation {
|
|
|
380
382
|
ingestBookmarkSeeds(seeds: [String!]!, connectorId: String, sessionId: String): KnowledgeBatchIngestResult!
|
|
381
383
|
ingestWithConnector(connectorId: String!, input: String!, sessionId: String, allowPrivateHosts: Boolean): KnowledgeBatchIngestResult!
|
|
382
384
|
ingestConnectorInput(input: String!, connectorId: String, sessionId: String, allowPrivateHosts: Boolean): KnowledgeBatchIngestResult!
|
|
383
|
-
renderProjection(kind: KnowledgeProjectionKind!, id: String, limit: Int): KnowledgeProjectionBundle!
|
|
384
|
-
materializeProjection(kind: KnowledgeProjectionKind!, id: String, limit: Int): KnowledgeMaterializedProjection!
|
|
385
|
+
renderProjection(kind: KnowledgeProjectionKind!, id: String, limit: Int, knowledgeSpaceId: String, includeAllSpaces: Boolean): KnowledgeProjectionBundle!
|
|
386
|
+
materializeProjection(kind: KnowledgeProjectionKind!, id: String, limit: Int, knowledgeSpaceId: String, includeAllSpaces: Boolean): KnowledgeMaterializedProjection!
|
|
385
387
|
reindex: KnowledgeStatus!
|
|
386
388
|
runJob(id: String!, mode: KnowledgeJobMode): KnowledgeJobRun!
|
|
387
389
|
saveSchedule(id: String, jobId: String!, label: String!, enabled: Boolean!, schedule: JSON!, metadata: JSON): KnowledgeSchedule!
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"product": {
|
|
4
4
|
"id": "goodvibes",
|
|
5
5
|
"surface": "operator",
|
|
6
|
-
"version": "0.33.
|
|
6
|
+
"version": "0.33.11"
|
|
7
7
|
},
|
|
8
8
|
"auth": {
|
|
9
9
|
"modes": [
|
|
@@ -35425,6 +35425,12 @@
|
|
|
35425
35425
|
},
|
|
35426
35426
|
"sourceId": {
|
|
35427
35427
|
"type": "string"
|
|
35428
|
+
},
|
|
35429
|
+
"knowledgeSpaceId": {
|
|
35430
|
+
"type": "string"
|
|
35431
|
+
},
|
|
35432
|
+
"includeAllSpaces": {
|
|
35433
|
+
"type": "boolean"
|
|
35428
35434
|
}
|
|
35429
35435
|
},
|
|
35430
35436
|
"additionalProperties": false
|
|
@@ -37804,6 +37810,12 @@
|
|
|
37804
37810
|
"properties": {
|
|
37805
37811
|
"limit": {
|
|
37806
37812
|
"type": "number"
|
|
37813
|
+
},
|
|
37814
|
+
"knowledgeSpaceId": {
|
|
37815
|
+
"type": "string"
|
|
37816
|
+
},
|
|
37817
|
+
"includeAllSpaces": {
|
|
37818
|
+
"type": "boolean"
|
|
37807
37819
|
}
|
|
37808
37820
|
},
|
|
37809
37821
|
"additionalProperties": false
|
|
@@ -37919,6 +37931,12 @@
|
|
|
37919
37931
|
"properties": {
|
|
37920
37932
|
"id": {
|
|
37921
37933
|
"type": "string"
|
|
37934
|
+
},
|
|
37935
|
+
"knowledgeSpaceId": {
|
|
37936
|
+
"type": "string"
|
|
37937
|
+
},
|
|
37938
|
+
"includeAllSpaces": {
|
|
37939
|
+
"type": "boolean"
|
|
37922
37940
|
}
|
|
37923
37941
|
},
|
|
37924
37942
|
"required": [
|
|
@@ -39862,6 +39880,12 @@
|
|
|
39862
39880
|
"limit": {
|
|
39863
39881
|
"type": "number"
|
|
39864
39882
|
},
|
|
39883
|
+
"knowledgeSpaceId": {
|
|
39884
|
+
"type": "string"
|
|
39885
|
+
},
|
|
39886
|
+
"includeAllSpaces": {
|
|
39887
|
+
"type": "boolean"
|
|
39888
|
+
},
|
|
39865
39889
|
"includeSources": {
|
|
39866
39890
|
"type": "boolean"
|
|
39867
39891
|
},
|
|
@@ -40434,6 +40458,12 @@
|
|
|
40434
40458
|
"properties": {
|
|
40435
40459
|
"limit": {
|
|
40436
40460
|
"type": "number"
|
|
40461
|
+
},
|
|
40462
|
+
"knowledgeSpaceId": {
|
|
40463
|
+
"type": "string"
|
|
40464
|
+
},
|
|
40465
|
+
"includeAllSpaces": {
|
|
40466
|
+
"type": "boolean"
|
|
40437
40467
|
}
|
|
40438
40468
|
},
|
|
40439
40469
|
"additionalProperties": false
|
|
@@ -40626,6 +40656,12 @@
|
|
|
40626
40656
|
"standard",
|
|
40627
40657
|
"detailed"
|
|
40628
40658
|
]
|
|
40659
|
+
},
|
|
40660
|
+
"knowledgeSpaceId": {
|
|
40661
|
+
"type": "string"
|
|
40662
|
+
},
|
|
40663
|
+
"includeAllSpaces": {
|
|
40664
|
+
"type": "boolean"
|
|
40629
40665
|
}
|
|
40630
40666
|
},
|
|
40631
40667
|
"required": [
|
|
@@ -40796,6 +40832,12 @@
|
|
|
40796
40832
|
},
|
|
40797
40833
|
"limit": {
|
|
40798
40834
|
"type": "number"
|
|
40835
|
+
},
|
|
40836
|
+
"knowledgeSpaceId": {
|
|
40837
|
+
"type": "string"
|
|
40838
|
+
},
|
|
40839
|
+
"includeAllSpaces": {
|
|
40840
|
+
"type": "boolean"
|
|
40799
40841
|
}
|
|
40800
40842
|
},
|
|
40801
40843
|
"required": [
|
|
@@ -41305,6 +41347,12 @@
|
|
|
41305
41347
|
},
|
|
41306
41348
|
"limit": {
|
|
41307
41349
|
"type": "number"
|
|
41350
|
+
},
|
|
41351
|
+
"knowledgeSpaceId": {
|
|
41352
|
+
"type": "string"
|
|
41353
|
+
},
|
|
41354
|
+
"includeAllSpaces": {
|
|
41355
|
+
"type": "boolean"
|
|
41308
41356
|
}
|
|
41309
41357
|
},
|
|
41310
41358
|
"required": [
|
|
@@ -42857,6 +42905,12 @@
|
|
|
42857
42905
|
"properties": {
|
|
42858
42906
|
"limit": {
|
|
42859
42907
|
"type": "number"
|
|
42908
|
+
},
|
|
42909
|
+
"knowledgeSpaceId": {
|
|
42910
|
+
"type": "string"
|
|
42911
|
+
},
|
|
42912
|
+
"includeAllSpaces": {
|
|
42913
|
+
"type": "boolean"
|
|
42860
42914
|
}
|
|
42861
42915
|
},
|
|
42862
42916
|
"additionalProperties": false
|
|
@@ -43885,6 +43939,12 @@
|
|
|
43885
43939
|
"limit": {
|
|
43886
43940
|
"type": "number"
|
|
43887
43941
|
},
|
|
43942
|
+
"knowledgeSpaceId": {
|
|
43943
|
+
"type": "string"
|
|
43944
|
+
},
|
|
43945
|
+
"includeAllSpaces": {
|
|
43946
|
+
"type": "boolean"
|
|
43947
|
+
},
|
|
43888
43948
|
"includeSources": {
|
|
43889
43949
|
"type": "boolean"
|
|
43890
43950
|
},
|
|
@@ -44406,6 +44466,12 @@
|
|
|
44406
44466
|
"properties": {
|
|
44407
44467
|
"limit": {
|
|
44408
44468
|
"type": "number"
|
|
44469
|
+
},
|
|
44470
|
+
"knowledgeSpaceId": {
|
|
44471
|
+
"type": "string"
|
|
44472
|
+
},
|
|
44473
|
+
"includeAllSpaces": {
|
|
44474
|
+
"type": "boolean"
|
|
44409
44475
|
}
|
|
44410
44476
|
},
|
|
44411
44477
|
"additionalProperties": false
|
|
@@ -44560,7 +44626,14 @@
|
|
|
44560
44626
|
},
|
|
44561
44627
|
"inputSchema": {
|
|
44562
44628
|
"type": "object",
|
|
44563
|
-
"properties": {
|
|
44629
|
+
"properties": {
|
|
44630
|
+
"knowledgeSpaceId": {
|
|
44631
|
+
"type": "string"
|
|
44632
|
+
},
|
|
44633
|
+
"includeAllSpaces": {
|
|
44634
|
+
"type": "boolean"
|
|
44635
|
+
}
|
|
44636
|
+
},
|
|
44564
44637
|
"additionalProperties": false
|
|
44565
44638
|
},
|
|
44566
44639
|
"outputSchema": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pellux/goodvibes-tui",
|
|
3
|
-
"version": "0.19.
|
|
3
|
+
"version": "0.19.73",
|
|
4
4
|
"description": "Terminal-native GoodVibes product for coding, operations, automation, knowledge, channels, and daemon-backed control-plane workflows.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/main.ts",
|
|
@@ -97,7 +97,7 @@
|
|
|
97
97
|
"@anthropic-ai/vertex-sdk": "^0.16.0",
|
|
98
98
|
"@ast-grep/napi": "^0.42.0",
|
|
99
99
|
"@aws/bedrock-token-generator": "^1.1.0",
|
|
100
|
-
"@pellux/goodvibes-sdk": "0.33.
|
|
100
|
+
"@pellux/goodvibes-sdk": "0.33.11",
|
|
101
101
|
"bash-language-server": "^5.6.0",
|
|
102
102
|
"fuse.js": "^7.1.0",
|
|
103
103
|
"graphql": "^16.13.2",
|
package/src/version.ts
CHANGED
|
@@ -6,7 +6,7 @@ import { join } from 'node:path';
|
|
|
6
6
|
// The prebuild script updates the fallback value before compilation.
|
|
7
7
|
// Uses import.meta.dir (Bun) to locate package.json relative to this file,
|
|
8
8
|
// which is correct regardless of the process working directory.
|
|
9
|
-
let _version = '0.19.
|
|
9
|
+
let _version = '0.19.73';
|
|
10
10
|
try {
|
|
11
11
|
const pkg = JSON.parse(readFileSync(join(import.meta.dir, '..', 'package.json'), 'utf-8'));
|
|
12
12
|
_version = pkg.version ?? _version;
|