@autohq/cli 0.1.202 → 0.1.203
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/dist/agent-bridge.js +5 -1
- package/dist/index.js +9 -2
- package/package.json +1 -1
package/dist/agent-bridge.js
CHANGED
|
@@ -22418,6 +22418,7 @@ var SESSION_STATUSES = [
|
|
|
22418
22418
|
var SESSION_DISPLAY_TITLE_MAX_LENGTH = 64;
|
|
22419
22419
|
var SessionStatusSchema = external_exports.enum(SESSION_STATUSES);
|
|
22420
22420
|
var RunDisplayTitleSchema = external_exports.string().trim().max(SESSION_DISPLAY_TITLE_MAX_LENGTH);
|
|
22421
|
+
var AmbientStatusSchema = external_exports.string().trim().min(1);
|
|
22421
22422
|
var SESSION_CHECK_STATUSES = [
|
|
22422
22423
|
"queued",
|
|
22423
22424
|
"in_progress",
|
|
@@ -22452,6 +22453,8 @@ var SessionRecordSchema = external_exports.object({
|
|
|
22452
22453
|
correlationKey: external_exports.string().nullable(),
|
|
22453
22454
|
workflowId: external_exports.string().min(1),
|
|
22454
22455
|
displayTitle: RunDisplayTitleSchema,
|
|
22456
|
+
ambientStatus: AmbientStatusSchema.nullable(),
|
|
22457
|
+
ambientStatusUpdatedAt: external_exports.string().datetime().nullable(),
|
|
22455
22458
|
starterActor: AuthActorSchema.nullable(),
|
|
22456
22459
|
snapshot: AgentResourceSchema,
|
|
22457
22460
|
environmentSnapshot: EnvironmentResourceSchema,
|
|
@@ -22606,6 +22609,7 @@ var RunSummarySchema = external_exports.object({
|
|
|
22606
22609
|
id: SessionIdSchema2,
|
|
22607
22610
|
agentName: external_exports.string(),
|
|
22608
22611
|
displayTitle: external_exports.string(),
|
|
22612
|
+
ambientStatus: AmbientStatusSchema.nullable(),
|
|
22609
22613
|
status: SessionStatusSchema,
|
|
22610
22614
|
error: JsonValueSchema2.nullable(),
|
|
22611
22615
|
workflowId: external_exports.string(),
|
|
@@ -26656,7 +26660,7 @@ Object.assign(lookup, {
|
|
|
26656
26660
|
// package.json
|
|
26657
26661
|
var package_default = {
|
|
26658
26662
|
name: "@autohq/cli",
|
|
26659
|
-
version: "0.1.
|
|
26663
|
+
version: "0.1.203",
|
|
26660
26664
|
license: "SEE LICENSE IN README.md",
|
|
26661
26665
|
publishConfig: {
|
|
26662
26666
|
access: "public"
|
package/dist/index.js
CHANGED
|
@@ -18280,7 +18280,7 @@ function isSessionTerminalStatus(status) {
|
|
|
18280
18280
|
(terminalStatus) => terminalStatus === status
|
|
18281
18281
|
);
|
|
18282
18282
|
}
|
|
18283
|
-
var SESSION_STATUSES, SESSION_TERMINAL_STATUSES, SESSION_DISPLAY_TITLE_MAX_LENGTH, SessionStatusSchema, RunDisplayTitleSchema, SESSION_CHECK_STATUSES, SESSION_CHECK_CONCLUSIONS, SESSION_CHECK_TIMEOUT_PHASES, SessionCheckStatusSchema, SessionCheckConclusionSchema, SessionCheckTimeoutPhaseSchema, ManualSessionRequestSchema, SessionArchiveRequestSchema, SessionsArchiveRequestSchema, SessionRecordSchema, SessionsArchiveResponseSchema;
|
|
18283
|
+
var SESSION_STATUSES, SESSION_TERMINAL_STATUSES, SESSION_DISPLAY_TITLE_MAX_LENGTH, SessionStatusSchema, RunDisplayTitleSchema, AmbientStatusSchema, SESSION_CHECK_STATUSES, SESSION_CHECK_CONCLUSIONS, SESSION_CHECK_TIMEOUT_PHASES, SessionCheckStatusSchema, SessionCheckConclusionSchema, SessionCheckTimeoutPhaseSchema, ManualSessionRequestSchema, SessionArchiveRequestSchema, SessionsArchiveRequestSchema, SessionRecordSchema, SessionsArchiveResponseSchema;
|
|
18284
18284
|
var init_sessions = __esm({
|
|
18285
18285
|
"../../packages/schemas/src/sessions.ts"() {
|
|
18286
18286
|
"use strict";
|
|
@@ -18302,6 +18302,7 @@ var init_sessions = __esm({
|
|
|
18302
18302
|
SESSION_DISPLAY_TITLE_MAX_LENGTH = 64;
|
|
18303
18303
|
SessionStatusSchema = external_exports.enum(SESSION_STATUSES);
|
|
18304
18304
|
RunDisplayTitleSchema = external_exports.string().trim().max(SESSION_DISPLAY_TITLE_MAX_LENGTH);
|
|
18305
|
+
AmbientStatusSchema = external_exports.string().trim().min(1);
|
|
18305
18306
|
SESSION_CHECK_STATUSES = [
|
|
18306
18307
|
"queued",
|
|
18307
18308
|
"in_progress",
|
|
@@ -18336,6 +18337,8 @@ var init_sessions = __esm({
|
|
|
18336
18337
|
correlationKey: external_exports.string().nullable(),
|
|
18337
18338
|
workflowId: external_exports.string().min(1),
|
|
18338
18339
|
displayTitle: RunDisplayTitleSchema,
|
|
18340
|
+
ambientStatus: AmbientStatusSchema.nullable(),
|
|
18341
|
+
ambientStatusUpdatedAt: external_exports.string().datetime().nullable(),
|
|
18339
18342
|
starterActor: AuthActorSchema.nullable(),
|
|
18340
18343
|
snapshot: AgentResourceSchema,
|
|
18341
18344
|
environmentSnapshot: EnvironmentResourceSchema,
|
|
@@ -18502,6 +18505,7 @@ var init_session_introspection = __esm({
|
|
|
18502
18505
|
id: SessionIdSchema,
|
|
18503
18506
|
agentName: external_exports.string(),
|
|
18504
18507
|
displayTitle: external_exports.string(),
|
|
18508
|
+
ambientStatus: AmbientStatusSchema.nullable(),
|
|
18505
18509
|
status: SessionStatusSchema,
|
|
18506
18510
|
error: JsonValueSchema.nullable(),
|
|
18507
18511
|
workflowId: external_exports.string(),
|
|
@@ -21669,7 +21673,7 @@ var init_package = __esm({
|
|
|
21669
21673
|
"package.json"() {
|
|
21670
21674
|
package_default = {
|
|
21671
21675
|
name: "@autohq/cli",
|
|
21672
|
-
version: "0.1.
|
|
21676
|
+
version: "0.1.203",
|
|
21673
21677
|
license: "SEE LICENSE IN README.md",
|
|
21674
21678
|
publishConfig: {
|
|
21675
21679
|
access: "public"
|
|
@@ -36211,6 +36215,9 @@ function formatRunShowText(result, writeLine, style) {
|
|
|
36211
36215
|
if (summary.session.displayTitle) {
|
|
36212
36216
|
writeLine(`${style.label("title:")} ${summary.session.displayTitle}`);
|
|
36213
36217
|
}
|
|
36218
|
+
if (summary.session.ambientStatus) {
|
|
36219
|
+
writeLine(`${style.label("progress:")} ${summary.session.ambientStatus}`);
|
|
36220
|
+
}
|
|
36214
36221
|
writeLine(
|
|
36215
36222
|
style.dim(
|
|
36216
36223
|
`created=${summary.session.createdAt} started=${summary.session.startedAt ?? "-"} finished=${summary.session.finishedAt ?? "-"}`
|