@jskit-ai/agent-docs 0.1.36 → 0.1.38

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.36",
3
+ "version": "0.1.38",
4
4
  "description": "Distributed JSKIT agent references, prompts, guides, and generated reference maps.",
5
5
  "type": "module",
6
6
  "files": [
@@ -831,6 +831,7 @@ Exports
831
831
  - `listSessions({ targetRoot = process.cwd(), archive = "active" } = {})`
832
832
  - `renderTemplate`
833
833
  - `recordDependenciesInstalled(paths, { message = "Installed Node dependencies in the session worktree.", preconditions = [] } = {})`
834
+ - `rewindSession({ targetRoot = process.cwd(), sessionId, stepId } = {})`
834
835
  - `resolveSessionPaths`
835
836
  - `runSessionStep({ targetRoot = process.cwd(), sessionId, options = {} } = {})`
836
837
  Local functions
@@ -858,6 +859,16 @@ Local functions
858
859
  - `commandOutputSummary(output = "")`
859
860
  - `appendCommandLog(paths, { args = [], command, cwd = "", kind = "command", result } = {})`
860
861
  - `runLoggedCommand(paths, kind, command, args = [], options = {})`
862
+ - `readWorktreePackageJson(worktree)`
863
+ - `packageScriptRunArgs(packageManager, scriptName)`
864
+ - `packageScriptCommandForWorktree(worktree, scriptName, { preferredPackageManager = "" } = {})`
865
+ - `sessionPackageScriptEnv(paths, scriptName)`
866
+ - `packageScriptRepairCommand(paths, command, args)`
867
+ - `packageScriptReceiptName(scriptName)`
868
+ - `writeSessionHookReceipt(paths, scriptName, message)`
869
+ - `runOptionalSessionPackageScript(paths, { failureCode, failureMessage, kind, preferredPackageManager = "", preconditions = [], scriptName, timeout = 1000 * 60 * 10 } = {})`
870
+ - `runSessionFinalizationGuard(paths, preconditions = [])`
871
+ - `runSessionProvisioningHook(paths, { preferredPackageManager = "", preconditions = [] } = {})`
861
872
  - `readIssueMetadata(paths)`
862
873
  - `writeIssueMetadata(paths, metadata = {})`
863
874
  - `readGithubComments(paths)`
@@ -888,6 +899,20 @@ Local functions
888
899
  - `untrackedFiles(worktree)`
889
900
  - `untrackedFileDiff(worktree, filePath)`
890
901
  - `untrackedFilesDiff(worktree)`
902
+ - `removeSessionPath(paths, ...parts)`
903
+ - `removeSessionRootFile(paths, fileName)`
904
+ - `removePromptArtifact(paths, fileName)`
905
+ - `removeGlobalCodexResult(paths, stepId)`
906
+ - `removeGithubCommentPurpose(paths, purpose)`
907
+ - `removeIssueDetailsMetadata(paths)`
908
+ - `removeCycleDirectories(paths)`
909
+ - `removeCyclePromptArtifacts(paths)`
910
+ - `cancelAllCycleState(paths)`
911
+ - `targetRequiresCycleReset(stepId)`
912
+ - `targetIsAllowedRewindStep(stepId)`
913
+ - `deletedStepIdsForRewindTarget(stepId)`
914
+ - `removeReceiptsForDeletedSteps(paths, deletedStepIds)`
915
+ - `cancelDeletedStepArtifacts(paths, deletedStepIds, { cycleReset = false } = {})`
891
916
  - `commitWorktree(paths, { message, allowNoChanges = false } = {})`
892
917
  - `uniqueChangedFileList(entries = [])`
893
918
  - `changedFilesInWorktree(paths)`
@@ -924,13 +949,16 @@ Local functions
924
949
  - `assertTargetRootCleanForBaseUpdate(paths)`
925
950
  - `removeSessionWorktree(paths)`
926
951
  - `writePrOutcome(paths, outcome)`
952
+ - `mainCheckoutSyncPath(paths)`
953
+ - `writeMainCheckoutSync(paths, payload = {})`
927
954
  - `assertTargetRootCanUpdateBase(paths, branch)`
928
- - `assertTargetBaseCanFastForward(paths, branch)`
929
955
  - `updateLocalBaseBranch(paths, baseBranch = "")`
956
+ - `syncMainCheckout(paths, options = {}, context = {})`
930
957
  - `updateHelperMapBeforePr(paths)`
931
958
  - `createPr(paths)`
932
959
  - `closePrWithoutMerge(paths, prUrl, options = {})`
933
- - `finalizePr(paths, options = {})`
960
+ - `preparePrMerge(paths, options = {}, context = {})`
961
+ - `finalizePr(paths, options = {}, context = {})`
934
962
  - `finishSession(paths)`
935
963
  - `runNamedPreconditions(paths, names = [])`
936
964
 
@@ -960,6 +988,7 @@ Exports
960
988
  - `DEEP_UI_CHECK_CODEX_HANDOFF`
961
989
  - `AUTOMATED_CHECK_REPAIR_CODEX_HANDOFF`
962
990
  - `BLUEPRINT_CODEX_HANDOFF`
991
+ - `PR_MERGE_PREP_CODEX_HANDOFF`
963
992
  - `JSKIT_CLI_SHELL_COMMAND`
964
993
  - `JSKIT_CLI_SHELL_RULE`
965
994
  - `SESSION_STATE_RELATIVE_PATH`
@@ -1013,6 +1042,7 @@ Exports
1013
1042
  - `assertIssueUrlExists(paths)`
1014
1043
  - `assertAutomatedChecksPassed(paths)`
1015
1044
  - `assertIssueDetailsExists(paths)`
1045
+ - `assertMainCheckoutSyncSatisfied(paths)`
1016
1046
  - `assertPlanTextExists(paths)`
1017
1047
  - `assertPrUrlExists(paths)`
1018
1048
  - `assertReadyJskitApp(paths)`