@jskit-ai/agent-docs 0.1.75 → 0.1.77

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.75",
3
+ "version": "0.1.77",
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 = {})`
@@ -388,6 +389,25 @@ Local functions
388
389
  - `loadLocalWorkspacePackageIdIndex()`
389
390
  - `resolvePackageRootFromLocalWorkspace({ packageId })`
390
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
+
391
411
  ### `src/server/cliRuntime/viteProxy.js`
392
412
  Exports
393
413
  - `createEmptyViteDevProxyConfig()`
@@ -658,6 +678,7 @@ Local functions
658
678
  - `renderWrappedShellCommand(binaryName, args = [], { maxWidth = 100, continuationIndent = " " } = {})`
659
679
  - `runLocalProjectBinary(binaryName, args = [], { appRoot, io, pathModule = path, createCliError, explanation = "", dryRun = false } = {})`
660
680
  - `installAppDependenciesForHook({ appRoot, appPackageJson, io, pathModule = path, createCliError, dryRun = false, runDevlinks = false } = {})`
681
+ - `resolvePackageOptionInputForInstall({ packageEntry, existingInstall, packageInlineOptions, appRoot, readFileBufferIfExists })`
661
682
  - `validateHookResult(result = {}, { packageId = "", hookLabel = "" } = {})`
662
683
  - `loadInstallHook({ packageEntry, appRoot, hookSpec, hookLabel = "" } = {})`
663
684
  - `createInstallHookHelpers({ ctx, appRoot, io, appPackageJson, commandOptions = {} } = {})`
@@ -896,6 +917,7 @@ Exports
896
917
  - `appendTextSnippet(content, snippet, position = "bottom")`
897
918
  - `escapeRegExp(value)`
898
919
  - `interpolateOptionValue(rawValue, options, ownerId, key)`
920
+ - `isSecretOptionInput(optionSchema)`
899
921
  - `normalizeSkipChecks(value)`
900
922
  - `promptForRequiredOption({ ownerType, ownerId, optionName, optionSchema, promptChoices = [], stdin = process.stdin, stdout = process.stdout })`
901
923
  Local functions
@@ -915,7 +937,6 @@ Local functions
915
937
  - `parseTransformSpec(transform)`
916
938
  - `applyOptionTransform(value, transform, ownerId, key, optionName)`
917
939
  - `applyOptionTransformPipeline(rawValue, rawPipeline, ownerId, key, optionName)`
918
- - `isSecretOptionInput(optionSchema)`
919
940
  - `createMutedReadlineOutput(stdout)`
920
941
 
921
942
  ### `src/server/shared/outputFormatting.js`