@pellux/goodvibes-sdk 0.33.32 → 0.33.33

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.
@@ -3,7 +3,7 @@
3
3
  "product": {
4
4
  "id": "goodvibes",
5
5
  "surface": "operator",
6
- "version": "0.33.32"
6
+ "version": "0.33.33"
7
7
  },
8
8
  "auth": {
9
9
  "modes": [
@@ -160,7 +160,9 @@ function isDefaultExtensionContaminatedSource(source) {
160
160
  source.tags.join(' '),
161
161
  metadataSearchText(source.metadata),
162
162
  ].join(' ');
163
- return hasLegacyDefaultAgentWikiMarker(text) || hasExtensionOnlyKnowledgeMarker(text);
163
+ return hasLegacyDefaultAgentWikiMarker(text)
164
+ || hasDefaultGoodVibesProductNavigationMarker(text)
165
+ || hasExtensionOnlyKnowledgeMarker(text);
164
166
  }
165
167
  function isDefaultExtensionContaminatedNode(node, lookup) {
166
168
  if (getKnowledgeSpaceId(node) !== DEFAULT_KNOWLEDGE_SPACE_ID)
@@ -182,7 +184,9 @@ function isDefaultExtensionContaminatedNode(node, lookup) {
182
184
  node.aliases.join(' '),
183
185
  metadataSearchText(node.metadata),
184
186
  ].join(' ');
185
- return hasLegacyDefaultAgentWikiMarker(text) || hasExtensionOnlyKnowledgeMarker(text);
187
+ return hasLegacyDefaultAgentWikiMarker(text)
188
+ || hasDefaultGoodVibesProductNavigationMarker(text)
189
+ || hasExtensionOnlyKnowledgeMarker(text);
186
190
  }
187
191
  function nodeReferencesExtensionObject(node, lookup) {
188
192
  for (const nodeId of uniqueStrings([
@@ -219,7 +223,9 @@ function isDefaultExtensionContaminatedIssue(issue, lookup) {
219
223
  issue.nodeId,
220
224
  metadataSearchText(issue.metadata),
221
225
  ].join(' ');
222
- return hasLegacyDefaultAgentWikiMarker(text) || hasExtensionOnlyKnowledgeMarker(text);
226
+ return hasLegacyDefaultAgentWikiMarker(text)
227
+ || hasDefaultGoodVibesProductNavigationMarker(text)
228
+ || hasExtensionOnlyKnowledgeMarker(text);
223
229
  }
224
230
  function isDefaultAnswerGapNode(node) {
225
231
  return node.kind === 'knowledge_gap'
@@ -368,3 +374,13 @@ function hasLegacyDefaultAgentWikiMarker(value) {
368
374
  || /\bfrontmatter\b/.test(lower)
369
375
  || /\bgoodvibes:\/\/wiki\/default\b/.test(lower);
370
376
  }
377
+ function hasDefaultGoodVibesProductNavigationMarker(value) {
378
+ const lower = value.toLowerCase();
379
+ const isGoodVibesRepo = /\bgithub\.com\/mgd34msu\/goodvibes[-_][a-z0-9._-]+\b/.test(lower)
380
+ || /\bmgd34msu\/goodvibes[-_][a-z0-9._-]+\b/.test(lower);
381
+ if (!isGoodVibesRepo)
382
+ return false;
383
+ return /\bnavigation\s+menu\b/.test(lower)
384
+ || /\bskip\s+to\s+content\b/.test(lower)
385
+ || /\bgithub\s+navigation\b/.test(lower);
386
+ }
@@ -1,6 +1,6 @@
1
1
  import { readFileSync } from 'node:fs';
2
2
  import { join } from 'node:path';
3
- let version = '0.33.32';
3
+ let version = '0.33.33';
4
4
  try {
5
5
  const pkg = JSON.parse(readFileSync(join(import.meta.dir, '..', '..', 'package.json'), 'utf-8'));
6
6
  version = pkg.version ?? version;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pellux/goodvibes-sdk",
3
- "version": "0.33.32",
3
+ "version": "0.33.33",
4
4
  "description": "TypeScript SDK for building GoodVibes operator, peer, web, mobile, and daemon-connected apps with typed contracts, auth, realtime events, and transport layers.",
5
5
  "keywords": [
6
6
  "goodvibes",
@@ -453,14 +453,14 @@
453
453
  "sideEffects": false,
454
454
  "type": "module",
455
455
  "dependencies": {
456
- "@pellux/goodvibes-contracts": "0.33.32",
457
- "@pellux/goodvibes-daemon-sdk": "0.33.32",
458
- "@pellux/goodvibes-errors": "0.33.32",
459
- "@pellux/goodvibes-operator-sdk": "0.33.32",
460
- "@pellux/goodvibes-peer-sdk": "0.33.32",
461
- "@pellux/goodvibes-transport-core": "0.33.32",
462
- "@pellux/goodvibes-transport-http": "0.33.32",
463
- "@pellux/goodvibes-transport-realtime": "0.33.32"
456
+ "@pellux/goodvibes-contracts": "0.33.33",
457
+ "@pellux/goodvibes-daemon-sdk": "0.33.33",
458
+ "@pellux/goodvibes-errors": "0.33.33",
459
+ "@pellux/goodvibes-operator-sdk": "0.33.33",
460
+ "@pellux/goodvibes-peer-sdk": "0.33.33",
461
+ "@pellux/goodvibes-transport-core": "0.33.33",
462
+ "@pellux/goodvibes-transport-http": "0.33.33",
463
+ "@pellux/goodvibes-transport-realtime": "0.33.33"
464
464
  },
465
465
  "optionalDependencies": {
466
466
  "@agentclientprotocol/sdk": "^0.21.0",