@jskit-ai/agent-docs 0.1.40 → 0.1.41

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jskit-ai/agent-docs",
3
- "version": "0.1.40",
3
+ "version": "0.1.41",
4
4
  "description": "Distributed JSKIT agent references, prompts, guides, and generated reference maps.",
5
5
  "type": "module",
6
6
  "files": [
@@ -916,6 +916,14 @@ Local functions
916
916
  - `commitWorktree(paths, { message, allowNoChanges = false } = {})`
917
917
  - `uniqueChangedFileList(entries = [])`
918
918
  - `changedFilesInWorktree(paths)`
919
+ - `blueprintBaselinePath(paths)`
920
+ - `isBlueprintRelativePath(filePath = "")`
921
+ - `nonBlueprintChangedFiles(files = [])`
922
+ - `hashWorktreeFile(paths, filePath)`
923
+ - `buildDirtyFileSnapshot(paths, files = [])`
924
+ - `writeBlueprintBaseline(paths)`
925
+ - `readBlueprintBaseline(paths)`
926
+ - `unexpectedBlueprintStepChanges(paths, changedFiles = [])`
919
927
  - `changedFilesSinceBase(paths)`
920
928
  - `nextReviewPassNumber(pass = "")`
921
929
  - `readCurrentReviewPass(paths)`
@@ -1067,7 +1075,7 @@ Exports
1067
1075
  ### `src/server/sessionRuntime/responses.js`
1068
1076
  Exports
1069
1077
  - `buildSessionErrorResponse({ targetRoot = process.cwd(), sessionId = "", code, message, repairCommand = "", status = SESSION_STATUS.BLOCKED, preconditions = [], errors = undefined } = {})`
1070
- - `buildSessionResponse(paths, { codex = undefined, ok = true, errors = [], preconditions = [], prompt = undefined, status = undefined } = {})`
1078
+ - `buildSessionResponse(paths, { codex = undefined, ok = true, errors = [], preconditions = [], prompt = undefined, status = undefined, warnings = [] } = {})`
1071
1079
  - `buildStepDefinitions()`
1072
1080
  - `createError({ code, message, repairCommand = "" })`
1073
1081
  - `createPrecondition({ id, ok, message })`
@@ -1085,6 +1093,7 @@ Exports
1085
1093
  - `writeCycleReceipt(paths, receiptName, message, { cycle = "" } = {})`
1086
1094
  - `writeReceipt(paths, stepId, message)`
1087
1095
  Local functions
1096
+ - `createWarning({ code, message, repairCommand = "" })`
1088
1097
  - `normalizeStepId(stepId)`
1089
1098
  - `stepIndex(stepId)`
1090
1099
  - `normalizeKnownStepIds(stepIds = [])`
@@ -1117,6 +1126,8 @@ Local functions
1117
1126
  - `readWorktreeStatus(paths, worktreeReady)`
1118
1127
  - `resolveNextStep(completedSteps = [])`
1119
1128
  - `cloneContractValue(value)`
1129
+ - `normalizeWarning(warning)`
1130
+ - `mergeWarnings(...warningLists)`
1120
1131
  - `publicCodexContract(codex = null)`
1121
1132
  - `stepRepeatabilityContract(stepId)`
1122
1133
  - `publicStepDefinition(step, index)`