@tonbo/cli 0.0.3 → 0.0.4
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.
|
@@ -184,4 +184,5 @@ export declare const piSessionContract: {
|
|
|
184
184
|
readonly durable_completion_timeout_seconds: 30;
|
|
185
185
|
readonly session_directory: "/sessions";
|
|
186
186
|
readonly path_template: "/sessions/{session_id}.jsonl";
|
|
187
|
+
readonly preflight_command: readonly ["/usr/local/bin/artifacts", "runtime", "session-preflight"];
|
|
187
188
|
};
|
|
@@ -217,5 +217,10 @@ export const piSessionContract = {
|
|
|
217
217
|
"format_version": 3,
|
|
218
218
|
"durable_completion_timeout_seconds": 30,
|
|
219
219
|
"session_directory": "/sessions",
|
|
220
|
-
"path_template": "/sessions/{session_id}.jsonl"
|
|
220
|
+
"path_template": "/sessions/{session_id}.jsonl",
|
|
221
|
+
"preflight_command": [
|
|
222
|
+
"/usr/local/bin/artifacts",
|
|
223
|
+
"runtime",
|
|
224
|
+
"session-preflight"
|
|
225
|
+
]
|
|
221
226
|
};
|