@jskit-ai/agent-docs 0.1.40 → 0.1.42
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 +1 -1
- package/reference/autogen/tooling/jskit-cli.md +12 -1
- package/DISTR_AGENT.md +0 -15
package/package.json
CHANGED
|
@@ -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)`
|
package/DISTR_AGENT.md
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
# Distributed Agent Guide
|
|
2
|
-
|
|
3
|
-
JSKIT issue work is driven by the executable session workflow.
|
|
4
|
-
|
|
5
|
-
Use:
|
|
6
|
-
|
|
7
|
-
- `jskit session` to list sessions.
|
|
8
|
-
- `jskit session create` to start a session.
|
|
9
|
-
- `jskit session <session_id>` to inspect state.
|
|
10
|
-
- `jskit session <session_id> step` to run the next step or render the next prompt.
|
|
11
|
-
- `jskit session <session_id> step --json` for machine-readable output.
|
|
12
|
-
|
|
13
|
-
Do not use the old prose workflow model. Session state, receipts, prompt rendering, issue creation, review loops, doctor checks, PR creation, merge, cleanup, and final receipts belong to `jskit session`.
|
|
14
|
-
|
|
15
|
-
Use package docs, generated references, patterns, and guides only as technical references.
|