@jskit-ai/jskit-cli 0.2.87 → 0.2.88

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/jskit-cli",
3
- "version": "0.2.87",
3
+ "version": "0.2.88",
4
4
  "description": "Bundle and package orchestration CLI for JSKIT apps.",
5
5
  "type": "module",
6
6
  "files": [
@@ -20,9 +20,9 @@
20
20
  "test": "node --test"
21
21
  },
22
22
  "dependencies": {
23
- "@jskit-ai/jskit-catalog": "0.1.86",
24
- "@jskit-ai/kernel": "0.1.78",
25
- "@jskit-ai/shell-web": "0.1.77",
23
+ "@jskit-ai/jskit-catalog": "0.1.87",
24
+ "@jskit-ai/kernel": "0.1.79",
25
+ "@jskit-ai/shell-web": "0.1.78",
26
26
  "@vue/compiler-sfc": "^3.5.29",
27
27
  "ts-morph": "^28.0.0"
28
28
  },
@@ -147,6 +147,10 @@ const JSKIT_STEP_RESULT_CONTRACT = Object.freeze({
147
147
  required: true,
148
148
  stepField: "step"
149
149
  });
150
+ const MANUAL_JSKIT_STEP_RESULT_CONTRACT = Object.freeze({
151
+ ...JSKIT_STEP_RESULT_CONTRACT,
152
+ completionBehavior: "manual_advance"
153
+ });
150
154
  const DESLOP_RESULT_CONTRACT = Object.freeze({
151
155
  autoResolvePriorities: Object.freeze(["high", "medium"]),
152
156
  completionBehavior: "deslop_loop",
@@ -231,7 +235,7 @@ function stepAutomationFor({
231
235
  const PLAN_EXECUTION_CODEX_HANDOFF = codexHandoff([], {
232
236
  autoInject: true,
233
237
  promptActionLabel: "Get Codex to execute plan",
234
- responseContract: JSKIT_STEP_RESULT_CONTRACT
238
+ responseContract: MANUAL_JSKIT_STEP_RESULT_CONTRACT
235
239
  });
236
240
  const ISSUE_DETAILS_CODEX_HANDOFF = codexHandoff([
237
241
  ISSUE_CATEGORY_OUTPUT,
@@ -407,7 +411,7 @@ const STEP_DEFINITIONS = Object.freeze([
407
411
  defineStep({
408
412
  buttonLabel: "Get Codex to execute plan",
409
413
  codex: PLAN_EXECUTION_CODEX_HANDOFF,
410
- description: "JSKIT sends the active cycle plan to Codex; Codex implements it; Studio advances when Codex finishes.",
414
+ description: "JSKIT sends the active cycle plan to Codex; Codex implements it; the user advances after reviewing completion.",
411
415
  id: "plan_executed",
412
416
  kind: "codex_prompt",
413
417
  label: "Plan executed",
@@ -731,7 +731,7 @@ function buildCurrentStepAction(stepId, artifacts = {}) {
731
731
  })();
732
732
  const dynamicDescription = (() => {
733
733
  if (step.id === "plan_executed" && planExecutionPrompted && !planExecutionSubmitted) {
734
- return "Codex has the execution prompt. Studio advances when Codex finishes.";
734
+ return "Codex has the execution prompt. Review the result, then use Go to next step when ready.";
735
735
  }
736
736
  if (step.id === "deep_ui_check_run" && deepUiCheckPrompted) {
737
737
  return "Codex has the Deep UI check prompt. Studio advances when Codex finishes.";