@jskit-ai/agent-docs 0.1.74 → 0.1.76

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.
@@ -195,7 +195,7 @@ The most important parts look like this:
195
195
  "@jskit-ai/agent-docs": "0.x",
196
196
  "@jskit-ai/config-eslint": "0.x",
197
197
  "@jskit-ai/jskit-cli": "0.x",
198
- "@playwright/test": "^1.61.0",
198
+ "@playwright/test": "1.61.1",
199
199
  "@vitejs/plugin-vue": "^6.0.7",
200
200
  "eslint": "^9.39.4",
201
201
  "vite": "^8.0.16",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jskit-ai/agent-docs",
3
- "version": "0.1.74",
3
+ "version": "0.1.76",
4
4
  "description": "Distributed JSKIT agent references, prompts, guides, and generated reference maps.",
5
5
  "type": "module",
6
6
  "files": [
@@ -91,6 +91,7 @@ Local functions
91
91
  - `renderRouteWorkspaceSupportImports({ surfaceRequiresWorkspace = true } = {})`
92
92
  - `renderActionWorkspaceValidatorImport({ surfaceRequiresWorkspace = true } = {})`
93
93
  - `renderRouteParamsValidatorLine(operation = "", { surfaceRequiresWorkspace = true } = {})`
94
+ - `renderOptionalTemplateLine(line = "")`
94
95
  - `renderRouteInputLines(operation = "", { surfaceRequiresWorkspace = true } = {})`
95
96
  - `renderObjectSchemaDefinition(lines = [], { mode = "patch" } = {})`
96
97
  - `renderActionInputExpressions({ surfaceRequiresWorkspace = true } = {})`
@@ -80,6 +80,8 @@ Local functions
80
80
  Exports
81
81
  - `createHttpError(response, data = {})`
82
82
  - `createNetworkError(cause)`
83
+ Local functions
84
+ - `standardErrorMessage(payload = {})`
83
85
 
84
86
  ### `src/shared/clientRuntime/headers.js`
85
87
  Exports
@@ -344,6 +344,7 @@ Local functions
344
344
  - `resolveSurfaceVisibilityOptionPolicy(packageEntry = {})`
345
345
  - `resolveSurfaceDefinitionsForOptionPolicy(configContext = {})`
346
346
  - `normalizeResolvedOptionValue(value = "")`
347
+ - `isFlagOptionSchema(schema = {})`
347
348
  - `normalizeResolvedOptionSchemaValue({ packageEntry, optionName = "", schema = {}, value = "" } = {})`
348
349
  - `resolveSchemaValidatedOptionNames(packageEntry = {}, validationType = "", { optionNames = null } = {})`
349
350
  - `resolveAllowedValuesForSchema(schema = {})`
@@ -373,6 +374,7 @@ Local functions
373
374
 
374
375
  ### `src/server/cliRuntime/packageTemplateResolution.js`
375
376
  Exports
377
+ - `buildCatalogPackageCacheInstallArgs(packageSpec)`
376
378
  - `cleanupMaterializedPackageRoots()`
377
379
  - `materializeCatalogPackageRoot({ packageEntry, appRoot, reportTemplateFetchStatus = null, installCatalogPackage = installCatalogPackageIntoCache } = {})`
378
380
  - `resolvePackageTemplateRoot({ packageEntry, appRoot, reportTemplateFetchStatus = null, materializeCatalogRoot = materializeCatalogPackageRoot } = {})`
@@ -387,6 +389,25 @@ Local functions
387
389
  - `loadLocalWorkspacePackageIdIndex()`
388
390
  - `resolvePackageRootFromLocalWorkspace({ packageId })`
389
391
 
392
+ ### `src/server/cliRuntime/sensitiveLockState.js`
393
+ Exports
394
+ - `collectOptionReferences(value = "")`
395
+ - `isSensitiveEnvKey(key = "")`
396
+ - `isSensitiveManagedTextRecord({ packageEntry = {}, record = {} } = {})`
397
+ - `isSensitivePackageOption(packageEntry = {}, optionName = "")`
398
+ - `isSensitiveTextMutation({ packageEntry = {}, mutation = {}, resolvedKey = "" } = {})`
399
+ - `resolveSensitiveOptionEnvFallbacks({ packageEntry = {}, appRoot = "", optionInput = {}, readFileBufferIfExists } = {})`
400
+ - `sanitizeInstalledPackageRecordForLock(record = {}, packageEntry = {})`
401
+ - `sanitizeLockSecretsForWrite(lock = {}, packageRegistry = null)`
402
+ - `sanitizeManagedTextForLock(packageEntry = {}, managedText = {})`
403
+ - `sanitizePackageOptionsForLock(packageEntry = {}, options = {})`
404
+ - `sanitizePackageOptionsForResolve(packageEntry = {}, options = {})`
405
+ Local functions
406
+ - `isSensitiveName(value = "")`
407
+ - `textValueReferencesSensitiveOption(packageEntry = {}, value = "")`
408
+ - `isExactOptionReference(value = "", optionName = "")`
409
+ - `readEnvValue(content = "", key = "")`
410
+
390
411
  ### `src/server/cliRuntime/viteProxy.js`
391
412
  Exports
392
413
  - `createEmptyViteDevProxyConfig()`
@@ -657,6 +678,7 @@ Local functions
657
678
  - `renderWrappedShellCommand(binaryName, args = [], { maxWidth = 100, continuationIndent = " " } = {})`
658
679
  - `runLocalProjectBinary(binaryName, args = [], { appRoot, io, pathModule = path, createCliError, explanation = "", dryRun = false } = {})`
659
680
  - `installAppDependenciesForHook({ appRoot, appPackageJson, io, pathModule = path, createCliError, dryRun = false, runDevlinks = false } = {})`
681
+ - `resolvePackageOptionInputForInstall({ packageEntry, existingInstall, packageInlineOptions, appRoot, readFileBufferIfExists })`
660
682
  - `validateHookResult(result = {}, { packageId = "", hookLabel = "" } = {})`
661
683
  - `loadInstallHook({ packageEntry, appRoot, hookSpec, hookLabel = "" } = {})`
662
684
  - `createInstallHookHelpers({ ctx, appRoot, io, appPackageJson, commandOptions = {} } = {})`
@@ -895,6 +917,7 @@ Exports
895
917
  - `appendTextSnippet(content, snippet, position = "bottom")`
896
918
  - `escapeRegExp(value)`
897
919
  - `interpolateOptionValue(rawValue, options, ownerId, key)`
920
+ - `isSecretOptionInput(optionSchema)`
898
921
  - `normalizeSkipChecks(value)`
899
922
  - `promptForRequiredOption({ ownerType, ownerId, optionName, optionSchema, promptChoices = [], stdin = process.stdin, stdout = process.stdout })`
900
923
  Local functions
@@ -914,7 +937,6 @@ Local functions
914
937
  - `parseTransformSpec(transform)`
915
938
  - `applyOptionTransform(value, transform, ownerId, key, optionName)`
916
939
  - `applyOptionTransformPipeline(rawValue, rawPipeline, ownerId, key, optionName)`
917
- - `isSecretOptionInput(optionSchema)`
918
940
  - `createMutedReadlineOutput(stdout)`
919
941
 
920
942
  ### `src/server/shared/outputFormatting.js`