@pellux/goodvibes-agent 1.1.1 → 1.1.2

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
@@ -2,6 +2,10 @@
2
2
 
3
3
  Product-facing release notes for GoodVibes Agent.
4
4
 
5
+ ## 1.1.2 - 2026-06-05
6
+
7
+ - Remove the redundant Finish action so onboarding completion presents only Apply & close.
8
+
5
9
  ## 1.1.1 - 2026-06-05
6
10
 
7
11
  - Fix first-run onboarding so clean launches open the fullscreen setup workspace until the user explicitly chooses Finish -> Apply & close.
@@ -450372,23 +450372,6 @@ function createSchema2(db) {
450372
450372
  `);
450373
450373
  db.run(`CREATE INDEX IF NOT EXISTS idx_knowledge_schedules_job_id ON knowledge_schedules(job_id)`);
450374
450374
  }
450375
- function getKnowledgeSchemaStatements() {
450376
- const statements = [];
450377
- createSchema2({
450378
- run(sql) {
450379
- const normalized = sql.trim();
450380
- if (normalized.length > 0)
450381
- statements.push(normalized);
450382
- }
450383
- });
450384
- return statements;
450385
- }
450386
- function renderKnowledgeSchemaSql() {
450387
- return `${getKnowledgeSchemaStatements().map((statement) => statement.endsWith(";") ? statement : `${statement};`).join(`
450388
-
450389
- `)}
450390
- `;
450391
- }
450392
450375
  function rowObject(columns, values2) {
450393
450376
  return Object.fromEntries(columns.map((column, index) => [column, values2[index]]));
450394
450377
  }
@@ -763671,9 +763654,6 @@ var init_ingest = __esm(() => {
763671
763654
  // node_modules/@pellux/goodvibes-sdk/dist/platform/knowledge/browser-history/index.js
763672
763655
  var init_browser_history = __esm(() => {
763673
763656
  init_ingest();
763674
- init_discover();
763675
- init_readers();
763676
- init_paths2();
763677
763657
  });
763678
763658
 
763679
763659
  // node_modules/graphql/jsutils/devAssert.mjs
@@ -781313,7 +781293,6 @@ var init_semantic = __esm(() => {
781313
781293
  init_llm();
781314
781294
  init_gap_repair();
781315
781295
  init_service4();
781316
- init_self_improvement();
781317
781296
  });
781318
781297
 
781319
781298
  // node_modules/@pellux/goodvibes-sdk/dist/platform/knowledge/home-graph/helpers.js
@@ -785282,40 +785261,8 @@ var init_map_view = __esm(() => {
785282
785261
  });
785283
785262
 
785284
785263
  // node_modules/@pellux/goodvibes-sdk/dist/platform/knowledge/home-graph/types.js
785285
- var HOME_GRAPH_NODE_KINDS, HOME_GRAPH_RELATIONS, HOME_GRAPH_CAPABILITIES;
785264
+ var HOME_GRAPH_CAPABILITIES;
785286
785265
  var init_types15 = __esm(() => {
785287
- HOME_GRAPH_NODE_KINDS = [
785288
- "ha_home",
785289
- "ha_entity",
785290
- "ha_device",
785291
- "ha_area",
785292
- "ha_automation",
785293
- "ha_script",
785294
- "ha_scene",
785295
- "ha_label",
785296
- "ha_integration",
785297
- "ha_room",
785298
- "ha_device_passport",
785299
- "ha_maintenance_item",
785300
- "ha_troubleshooting_case",
785301
- "ha_purchase",
785302
- "ha_network_node"
785303
- ];
785304
- HOME_GRAPH_RELATIONS = [
785305
- "controls",
785306
- "located_in",
785307
- "belongs_to_device",
785308
- "has_manual",
785309
- "has_receipt",
785310
- "has_warranty",
785311
- "has_issue",
785312
- "fixed_by",
785313
- "uses_battery",
785314
- "connected_via",
785315
- "part_of_network",
785316
- "mentioned_by",
785317
- "source_for"
785318
- ];
785319
785266
  HOME_GRAPH_CAPABILITIES = [
785320
785267
  "knowledge-space-isolation",
785321
785268
  "snapshot-sync",
@@ -786722,7 +786669,6 @@ var init_service5 = __esm(() => {
786722
786669
  var init_home_graph = __esm(() => {
786723
786670
  init_service5();
786724
786671
  init_extension();
786725
- init_types15();
786726
786672
  });
786727
786673
 
786728
786674
  // node_modules/@pellux/goodvibes-sdk/dist/platform/knowledge/store-refinement.js
@@ -789050,14 +788996,10 @@ var init_service6 = __esm(() => {
789050
788996
  var init_project_planning = __esm(() => {
789051
788997
  init_service6();
789052
788998
  init_helpers3();
789053
- init_readiness();
789054
788999
  });
789055
789000
 
789056
789001
  // node_modules/@pellux/goodvibes-sdk/dist/platform/knowledge/persistence.js
789057
- var init_persistence = __esm(() => {
789058
- init_store_schema();
789059
- init_store_load();
789060
- });
789002
+ var init_persistence = () => {};
789061
789003
 
789062
789004
  // node_modules/@pellux/goodvibes-sdk/dist/platform/knowledge/projections.js
789063
789005
  class KnowledgeProjectionService {
@@ -792565,21 +792507,21 @@ var init_service7 = __esm(() => {
792565
792507
  var exports_knowledge = {};
792566
792508
  __export(exports_knowledge, {
792567
792509
  withKnowledgeSpace: () => withKnowledgeSpace,
792568
- uniqKnowledgeValues: () => uniq2,
792569
- stabilizeKnowledgeText: () => stableText,
792570
- runKnowledgeSemanticSelfImprovement: () => runKnowledgeSemanticSelfImprovement,
792510
+ uniqKnowledgeValues: () => uniq3,
792511
+ stabilizeKnowledgeText: () => stableText2,
792512
+ runKnowledgeSemanticSelfImprovement: () => runKnowledgeSemanticSelfImprovement2,
792571
792513
  resolveProjectPlanningSpace: () => resolveProjectPlanningSpace,
792572
- resolveKnowledgeDbPathFromControlPlaneDir: () => resolveKnowledgeDbPathFromControlPlaneDir,
792514
+ resolveKnowledgeDbPathFromControlPlaneDir: () => resolveKnowledgeDbPathFromControlPlaneDir2,
792573
792515
  renderPacket: () => renderPacket,
792574
792516
  renderKnowledgeSchemaSql: () => renderKnowledgeSchemaSql,
792575
792517
  renderKnowledgeMap: () => renderKnowledgeMap,
792576
792518
  readKnowledgeSearchText: () => readKnowledgeSearchText,
792577
- readBrowserKnowledgeProfile: () => readBrowserKnowledgeProfile,
792519
+ readBrowserKnowledgeProfile: () => readBrowserKnowledgeProfile2,
792578
792520
  projectPlanningSourceId: () => projectPlanningSourceId,
792579
792521
  projectPlanningProjectIdFromPath: () => projectPlanningProjectIdFromPath,
792580
792522
  projectPlanningCanonicalUri: () => projectPlanningCanonicalUri,
792581
792523
  projectKnowledgeSpaceId: () => projectKnowledgeSpaceId,
792582
- parseKnowledgeJsonValue: () => parseJsonValue,
792524
+ parseKnowledgeJsonValue: () => parseJsonValue2,
792583
792525
  normalizeProjectId: () => normalizeProjectId,
792584
792526
  normalizeKnowledgeSpaceId: () => normalizeKnowledgeSpaceId,
792585
792527
  normalizeHomeAssistantInstallationId: () => normalizeHomeAssistantInstallationId,
@@ -792587,12 +792529,12 @@ __export(exports_knowledge, {
792587
792529
  materializeGeneratedKnowledgeProjection: () => materializeGeneratedKnowledgeProjection,
792588
792530
  looksLikeRawPdfPayload: () => looksLikeRawPdfPayload,
792589
792531
  looksBinaryLikeText: () => looksBinaryLikeText,
792590
- loadKnowledgeStoreSnapshot: () => loadKnowledgeStoreSnapshot,
792532
+ loadKnowledgeStoreSnapshot: () => loadKnowledgeStoreSnapshot2,
792591
792533
  listGeneratedKnowledgePages: () => listGeneratedKnowledgePages,
792592
- listBrowserKinds: () => listBrowserKinds,
792534
+ listBrowserKinds: () => listBrowserKinds2,
792593
792535
  knowledgeSpaceMetadata: () => knowledgeSpaceMetadata,
792594
792536
  knowledgePageSourceWeight: () => knowledgePageSourceWeight,
792595
- knowledgeNowMs: () => nowMs,
792537
+ knowledgeNowMs: () => nowMs2,
792596
792538
  knowledgeExtractionNeedsRefresh: () => knowledgeExtractionNeedsRefresh,
792597
792539
  isUsefulKnowledgePageSourceCandidate: () => isUsefulKnowledgePageSourceCandidate,
792598
792540
  isUsefulKnowledgePageSource: () => isUsefulKnowledgePageSource,
@@ -792612,12 +792554,12 @@ __export(exports_knowledge, {
792612
792554
  generatedKnowledgeSourceId: () => generatedKnowledgeSourceId,
792613
792555
  generatedKnowledgeCanonicalUri: () => generatedKnowledgeCanonicalUri,
792614
792556
  extractKnowledgeArtifact: () => extractKnowledgeArtifact,
792615
- evaluateProjectPlanningReadiness: () => evaluateProjectPlanningReadiness,
792616
- discoverBrowserKnowledgeProfiles: () => discoverBrowserKnowledgeProfiles,
792557
+ evaluateProjectPlanningReadiness: () => evaluateProjectPlanningReadiness2,
792558
+ discoverBrowserKnowledgeProfiles: () => discoverBrowserKnowledgeProfiles2,
792617
792559
  createWebKnowledgeGapRepairer: () => createWebKnowledgeGapRepairer,
792618
792560
  createProviderBackedKnowledgeSemanticLlm: () => createProviderBackedKnowledgeSemanticLlm,
792619
792561
  createMemoryApi: () => createMemoryApi,
792620
- createKnowledgeSchema: () => createSchema2,
792562
+ createKnowledgeSchema: () => createSchema3,
792621
792563
  createKnowledgeApi: () => createKnowledgeApi,
792622
792564
  createDefaultKnowledgeConnectorRegistry: () => createDefaultKnowledgeConnectorRegistry,
792623
792565
  compareKnowledgePageSources: () => compareKnowledgePageSources,
@@ -795056,7 +794998,7 @@ var init_delivery_manager = __esm(() => {
795056
794998
  });
795057
794999
 
795058
795000
  // node_modules/@pellux/goodvibes-sdk/dist/platform/automation/scheduler-capacity.js
795059
- function computeSchedulerCapacity(slotsTotal, runs, nowMs2 = Date.now()) {
795001
+ function computeSchedulerCapacity(slotsTotal, runs, nowMs3 = Date.now()) {
795060
795002
  let slotsInUse = 0;
795061
795003
  const queuedRuns = [];
795062
795004
  for (const run7 of runs) {
@@ -795066,7 +795008,7 @@ function computeSchedulerCapacity(slotsTotal, runs, nowMs2 = Date.now()) {
795066
795008
  queuedRuns.push(run7);
795067
795009
  }
795068
795010
  const queueDepth = queuedRuns.length;
795069
- const oldestQueuedAgeMs = queueDepth > 0 ? nowMs2 - Math.min(...queuedRuns.map((r6) => r6.queuedAt)) : null;
795011
+ const oldestQueuedAgeMs = queueDepth > 0 ? nowMs3 - Math.min(...queuedRuns.map((r6) => r6.queuedAt)) : null;
795070
795012
  return { slotsTotal, slotsInUse, queueDepth, oldestQueuedAgeMs };
795071
795013
  }
795072
795014
 
@@ -817145,7 +817087,7 @@ var createStyledCell = (char, overrides = {}) => ({
817145
817087
  // src/version.ts
817146
817088
  import { readFileSync } from "fs";
817147
817089
  import { join } from "path";
817148
- var _version = "1.1.1";
817090
+ var _version = "1.1.2";
817149
817091
  try {
817150
817092
  const pkg = JSON.parse(readFileSync(join(import.meta.dir, "..", "package.json"), "utf-8"));
817151
817093
  _version = typeof pkg.version === "string" ? pkg.version : _version;
@@ -839658,7 +839600,7 @@ var WORK_PLAN_STATUSES = [
839658
839600
  "failed",
839659
839601
  "cancelled"
839660
839602
  ];
839661
- function nowMs2() {
839603
+ function nowMs3() {
839662
839604
  return Date.now();
839663
839605
  }
839664
839606
  function isObject4(value) {
@@ -839764,7 +839706,7 @@ class WorkPlanStore {
839764
839706
  if (!normalizedTitle)
839765
839707
  throw new Error("Work plan item title is required.");
839766
839708
  const plan = this.readPlan();
839767
- const time4 = nowMs2();
839709
+ const time4 = nowMs3();
839768
839710
  const item = {
839769
839711
  id: createItemId(),
839770
839712
  title: normalizedTitle,
@@ -839788,7 +839730,7 @@ class WorkPlanStore {
839788
839730
  updateItem(idOrPrefix, patch2) {
839789
839731
  const plan = this.readPlan();
839790
839732
  const item = this.resolveItem(plan, idOrPrefix);
839791
- const time4 = nowMs2();
839733
+ const time4 = nowMs3();
839792
839734
  const nextStatus = patch2.status ?? item.status;
839793
839735
  const next = this.pruneItem({
839794
839736
  ...item,
@@ -839821,7 +839763,7 @@ class WorkPlanStore {
839821
839763
  removeItem(idOrPrefix) {
839822
839764
  const plan = this.readPlan();
839823
839765
  const item = this.resolveItem(plan, idOrPrefix);
839824
- const time4 = nowMs2();
839766
+ const time4 = nowMs3();
839825
839767
  const remaining = plan.items.filter((candidate) => candidate.id !== item.id);
839826
839768
  this.writePlan({
839827
839769
  ...plan,
@@ -839841,7 +839783,7 @@ class WorkPlanStore {
839841
839783
  ...plan,
839842
839784
  items: remaining,
839843
839785
  activeItemId: remaining[0]?.id,
839844
- updatedAt: nowMs2()
839786
+ updatedAt: nowMs3()
839845
839787
  });
839846
839788
  return removed;
839847
839789
  }
@@ -839880,7 +839822,7 @@ class WorkPlanStore {
839880
839822
  const parsed = JSON.parse(raw);
839881
839823
  if (!isObject4(parsed))
839882
839824
  return this.createEmptyPlan();
839883
- const time4 = nowMs2();
839825
+ const time4 = nowMs3();
839884
839826
  const createdAt = typeof parsed.createdAt === "number" ? parsed.createdAt : time4;
839885
839827
  const updatedAt = typeof parsed.updatedAt === "number" ? parsed.updatedAt : createdAt;
839886
839828
  const items = Array.isArray(parsed.items) ? parsed.items.map((item) => normalizeItem(item, createdAt)).filter((item) => item !== null) : [];
@@ -839899,7 +839841,7 @@ class WorkPlanStore {
839899
839841
  };
839900
839842
  }
839901
839843
  createEmptyPlan() {
839902
- const time4 = nowMs2();
839844
+ const time4 = nowMs3();
839903
839845
  return {
839904
839846
  id: createPlanId(this.options.projectId, this.options.projectRoot),
839905
839847
  projectId: this.options.projectId,
@@ -891067,8 +891009,7 @@ var AGENT_WORKSPACE_CATEGORIES = [
891067
891009
  summary: "Acknowledge setup and close onboarding.",
891068
891010
  detail: "Use this final step after reviewing setup. Apply & close writes the user onboarding completion marker so normal future launches start in the main conversation.",
891069
891011
  actions: [
891070
- { id: "onboarding-apply-close", label: "Apply & close", detail: "Acknowledge onboarding as finished, persist the user completion marker, and close the fullscreen Agent workspace.", kind: "onboarding-complete", safety: "safe" },
891071
- { id: "finish-review-setup", label: "Review setup first", detail: "Jump back to setup before acknowledging onboarding as finished.", targetCategoryId: "setup", kind: "workspace", safety: "safe" }
891012
+ { id: "onboarding-apply-close", label: "Apply & close", detail: "Acknowledge onboarding as finished, persist the user completion marker, and close the fullscreen Agent workspace.", kind: "onboarding-complete", safety: "safe" }
891072
891013
  ]
891073
891014
  }
891074
891015
  ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pellux/goodvibes-agent",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "private": false,
5
5
  "description": "GoodVibes personal operator assistant TUI with a proactive Agent product brain, isolated Agent Knowledge, local profiles, routines, skills, personas, and explicit build delegation.",
6
6
  "type": "module",
@@ -617,7 +617,6 @@ export const AGENT_WORKSPACE_CATEGORIES: readonly AgentWorkspaceCategory[] = [
617
617
  detail: 'Use this final step after reviewing setup. Apply & close writes the user onboarding completion marker so normal future launches start in the main conversation.',
618
618
  actions: [
619
619
  { id: 'onboarding-apply-close', label: 'Apply & close', detail: 'Acknowledge onboarding as finished, persist the user completion marker, and close the fullscreen Agent workspace.', kind: 'onboarding-complete', safety: 'safe' },
620
- { id: 'finish-review-setup', label: 'Review setup first', detail: 'Jump back to setup before acknowledging onboarding as finished.', targetCategoryId: 'setup', kind: 'workspace', safety: 'safe' },
621
620
  ],
622
621
  },
623
622
  ];
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 = '1.1.1';
9
+ let _version = '1.1.2';
10
10
  try {
11
11
  const pkg = JSON.parse(readFileSync(join(import.meta.dir, '..', 'package.json'), 'utf-8')) as {
12
12
  readonly version?: unknown;