@claudexor/schema 3.6.0 → 3.8.0
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-capabilities.d.ts +32 -0
- package/dist/agent-capabilities.d.ts.map +1 -1
- package/dist/agent-capabilities.js +4 -0
- package/dist/agent-capabilities.js.map +1 -1
- package/dist/config.d.ts +10 -8
- package/dist/config.d.ts.map +1 -1
- package/dist/config.js +7 -6
- package/dist/config.js.map +1 -1
- package/dist/control-harness-list.d.ts +197 -1
- package/dist/control-harness-list.d.ts.map +1 -1
- package/dist/credential-profile-snapshot.d.ts +408 -16
- package/dist/credential-profile-snapshot.d.ts.map +1 -1
- package/dist/credential-profile.d.ts +69 -42
- package/dist/credential-profile.d.ts.map +1 -1
- package/dist/credential-profile.js +47 -30
- package/dist/credential-profile.js.map +1 -1
- package/dist/harness.d.ts +247 -54
- package/dist/harness.d.ts.map +1 -1
- package/dist/harness.js +2 -32
- package/dist/harness.js.map +1 -1
- package/dist/platform-auth.d.ts +196 -0
- package/dist/platform-auth.d.ts.map +1 -0
- package/dist/platform-auth.js +142 -0
- package/dist/platform-auth.js.map +1 -0
- package/dist/quota.d.ts +9 -9
- package/dist/quota.d.ts.map +1 -1
- package/dist/quota.js +3 -0
- package/dist/quota.js.map +1 -1
- package/dist/readiness.d.ts +178 -1
- package/dist/readiness.d.ts.map +1 -1
- package/dist/readiness.js +12 -0
- package/dist/readiness.js.map +1 -1
- package/dist/setup-login.d.ts +5 -5
- package/dist/setup.d.ts +102 -95
- package/dist/setup.d.ts.map +1 -1
- package/dist/setup.js +29 -5
- package/dist/setup.js.map +1 -1
- package/generated/AgentCapabilityCatalog.schema.json +26 -0
- package/generated/ControlCredentialProfileCreateRequest.schema.json +1 -1
- package/generated/ControlCredentialProfileCreateResponse.schema.json +4 -4
- package/generated/ControlCredentialProfileDeleteResponse.schema.json +27 -3
- package/generated/ControlCredentialProfileUpdateResponse.schema.json +4 -4
- package/generated/ControlCredentialProfilesQueryResponse.schema.json +130 -5
- package/generated/ControlCredentialProfilesResponse.schema.json +4 -4
- package/generated/ControlCredentialProfilesSnapshotResponse.schema.json +130 -5
- package/generated/ControlHarnessListResponse.schema.json +124 -0
- package/generated/ControlQuotaResponse.schema.json +2 -1
- package/generated/ControlSetupJob.schema.json +5 -1
- package/generated/ControlSetupJobCreateRequest.schema.json +1 -1
- package/generated/ControlSetupJobEvent.schema.json +5 -1
- package/generated/ControlSetupJobListResponse.schema.json +5 -1
- package/generated/ControlSetupJobSnapshot.schema.json +5 -1
- package/generated/CredentialProfile.schema.json +3 -3
- package/generated/CredentialProfileStatus.schema.json +1 -1
- package/generated/GlobalConfig.schema.json +4 -4
- package/generated/HarnessManifest.schema.json +98 -0
- package/generated/HarnessStatusDto.schema.json +124 -0
- package/package.json +2 -2
package/dist/readiness.d.ts
CHANGED
|
@@ -1,4 +1,13 @@
|
|
|
1
1
|
import { z } from "zod/v3";
|
|
2
|
+
/** Effective host login flow a thin client may request for one harness. */
|
|
3
|
+
export declare const SetupLoginCapability: z.ZodObject<{
|
|
4
|
+
mode: z.ZodEnum<["in_app", "external_terminal"]>;
|
|
5
|
+
}, "strict", z.ZodTypeAny, {
|
|
6
|
+
mode: "external_terminal" | "in_app";
|
|
7
|
+
}, {
|
|
8
|
+
mode: "external_terminal" | "in_app";
|
|
9
|
+
}>;
|
|
10
|
+
export type SetupLoginCapability = z.infer<typeof SetupLoginCapability>;
|
|
2
11
|
/**
|
|
3
12
|
* ONE display-ready readiness check (W4.7 sol #18): the daemon normalizes raw
|
|
4
13
|
* doctor probes, auth-source readiness, and the configured-model verdict into
|
|
@@ -38,22 +47,51 @@ export declare const HarnessStatusDto: z.ZodObject<{
|
|
|
38
47
|
adapter_version: z.ZodOptional<z.ZodString>;
|
|
39
48
|
provider_family: z.ZodDefault<z.ZodEnum<["openai", "anthropic", "google", "cursor", "opencode", "xai", "local", "unknown"]>>;
|
|
40
49
|
capability_profile: z.ZodDefault<z.ZodObject<{
|
|
41
|
-
auth: z.ZodDefault<z.ZodObject<{
|
|
50
|
+
auth: z.ZodDefault<z.ZodEffects<z.ZodObject<{
|
|
42
51
|
supported_sources: z.ZodDefault<z.ZodArray<z.ZodEnum<["native_session", "oauth_token_env", "api_key_env", "api_key_flag", "provider_auth_file", "none"]>, "many">>;
|
|
43
52
|
preferred_source: z.ZodDefault<z.ZodNullable<z.ZodEnum<["native_session", "oauth_token_env", "api_key_env", "api_key_flag", "provider_auth_file", "none"]>>>;
|
|
44
53
|
credential_transports: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
45
54
|
source: z.ZodEnum<["native_session", "oauth_token_env", "api_key_env", "api_key_flag", "provider_auth_file", "none"]>;
|
|
46
55
|
kind: z.ZodEnum<["config_file", "env_var", "oauth_token_env", "os_keychain", "http_header", "none"]>;
|
|
47
56
|
relocatable_by: z.ZodDefault<z.ZodArray<z.ZodEnum<["HOME", "CONFIG_DIR", "ENV", "none"]>, "many">>;
|
|
57
|
+
platforms: z.ZodEffects<z.ZodOptional<z.ZodArray<z.ZodEnum<["darwin", "linux", "win32"]>, "many">>, ("darwin" | "linux" | "win32")[] | undefined, ("darwin" | "linux" | "win32")[] | undefined>;
|
|
48
58
|
}, "strip", z.ZodTypeAny, {
|
|
49
59
|
source: "api_key_env" | "api_key_flag" | "native_session" | "none" | "oauth_token_env" | "provider_auth_file";
|
|
50
60
|
kind: "config_file" | "env_var" | "http_header" | "none" | "oauth_token_env" | "os_keychain";
|
|
51
61
|
relocatable_by: ("CONFIG_DIR" | "ENV" | "HOME" | "none")[];
|
|
62
|
+
platforms?: ("darwin" | "linux" | "win32")[] | undefined;
|
|
52
63
|
}, {
|
|
53
64
|
source: "api_key_env" | "api_key_flag" | "native_session" | "none" | "oauth_token_env" | "provider_auth_file";
|
|
54
65
|
kind: "config_file" | "env_var" | "http_header" | "none" | "oauth_token_env" | "os_keychain";
|
|
55
66
|
relocatable_by?: ("CONFIG_DIR" | "ENV" | "HOME" | "none")[] | undefined;
|
|
67
|
+
platforms?: ("darwin" | "linux" | "win32")[] | undefined;
|
|
68
|
+
}>, "many">>;
|
|
69
|
+
credential_profile_policies: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
70
|
+
source: z.ZodEnum<["native_session", "oauth_token_env", "api_key_env", "api_key_flag", "provider_auth_file", "none"]>;
|
|
71
|
+
platforms: z.ZodEffects<z.ZodArray<z.ZodEnum<["darwin", "linux", "win32"]>, "many">, ("darwin" | "linux" | "win32")[], ("darwin" | "linux" | "win32")[]>;
|
|
72
|
+
identity_scope: z.ZodEnum<["profile", "os_user"]>;
|
|
73
|
+
max_enabled_profiles: z.ZodNullable<z.ZodNumber>;
|
|
74
|
+
cleanup_owner: z.ZodEnum<["claudexor", "vendor"]>;
|
|
75
|
+
}, "strict", z.ZodTypeAny, {
|
|
76
|
+
source: "api_key_env" | "api_key_flag" | "native_session" | "none" | "oauth_token_env" | "provider_auth_file";
|
|
77
|
+
platforms: ("darwin" | "linux" | "win32")[];
|
|
78
|
+
identity_scope: "os_user" | "profile";
|
|
79
|
+
max_enabled_profiles: number | null;
|
|
80
|
+
cleanup_owner: "claudexor" | "vendor";
|
|
81
|
+
}, {
|
|
82
|
+
source: "api_key_env" | "api_key_flag" | "native_session" | "none" | "oauth_token_env" | "provider_auth_file";
|
|
83
|
+
platforms: ("darwin" | "linux" | "win32")[];
|
|
84
|
+
identity_scope: "os_user" | "profile";
|
|
85
|
+
max_enabled_profiles: number | null;
|
|
86
|
+
cleanup_owner: "claudexor" | "vendor";
|
|
56
87
|
}>, "many">>;
|
|
88
|
+
managed_login: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
89
|
+
stdin: z.ZodEnum<["none", "pipe", "terminal"]>;
|
|
90
|
+
}, "strict", z.ZodTypeAny, {
|
|
91
|
+
stdin: "none" | "pipe" | "terminal";
|
|
92
|
+
}, {
|
|
93
|
+
stdin: "none" | "pipe" | "terminal";
|
|
94
|
+
}>>>;
|
|
57
95
|
}, "strip", z.ZodTypeAny, {
|
|
58
96
|
supported_sources: ("api_key_env" | "api_key_flag" | "native_session" | "none" | "oauth_token_env" | "provider_auth_file")[];
|
|
59
97
|
preferred_source: "api_key_env" | "api_key_flag" | "native_session" | "none" | "oauth_token_env" | "provider_auth_file" | null;
|
|
@@ -61,7 +99,56 @@ export declare const HarnessStatusDto: z.ZodObject<{
|
|
|
61
99
|
source: "api_key_env" | "api_key_flag" | "native_session" | "none" | "oauth_token_env" | "provider_auth_file";
|
|
62
100
|
kind: "config_file" | "env_var" | "http_header" | "none" | "oauth_token_env" | "os_keychain";
|
|
63
101
|
relocatable_by: ("CONFIG_DIR" | "ENV" | "HOME" | "none")[];
|
|
102
|
+
platforms?: ("darwin" | "linux" | "win32")[] | undefined;
|
|
103
|
+
}[];
|
|
104
|
+
credential_profile_policies?: {
|
|
105
|
+
source: "api_key_env" | "api_key_flag" | "native_session" | "none" | "oauth_token_env" | "provider_auth_file";
|
|
106
|
+
platforms: ("darwin" | "linux" | "win32")[];
|
|
107
|
+
identity_scope: "os_user" | "profile";
|
|
108
|
+
max_enabled_profiles: number | null;
|
|
109
|
+
cleanup_owner: "claudexor" | "vendor";
|
|
110
|
+
}[] | undefined;
|
|
111
|
+
managed_login?: {
|
|
112
|
+
stdin: "none" | "pipe" | "terminal";
|
|
113
|
+
} | null | undefined;
|
|
114
|
+
}, {
|
|
115
|
+
supported_sources?: ("api_key_env" | "api_key_flag" | "native_session" | "none" | "oauth_token_env" | "provider_auth_file")[] | undefined;
|
|
116
|
+
preferred_source?: "api_key_env" | "api_key_flag" | "native_session" | "none" | "oauth_token_env" | "provider_auth_file" | null | undefined;
|
|
117
|
+
credential_transports?: {
|
|
118
|
+
source: "api_key_env" | "api_key_flag" | "native_session" | "none" | "oauth_token_env" | "provider_auth_file";
|
|
119
|
+
kind: "config_file" | "env_var" | "http_header" | "none" | "oauth_token_env" | "os_keychain";
|
|
120
|
+
relocatable_by?: ("CONFIG_DIR" | "ENV" | "HOME" | "none")[] | undefined;
|
|
121
|
+
platforms?: ("darwin" | "linux" | "win32")[] | undefined;
|
|
122
|
+
}[] | undefined;
|
|
123
|
+
credential_profile_policies?: {
|
|
124
|
+
source: "api_key_env" | "api_key_flag" | "native_session" | "none" | "oauth_token_env" | "provider_auth_file";
|
|
125
|
+
platforms: ("darwin" | "linux" | "win32")[];
|
|
126
|
+
identity_scope: "os_user" | "profile";
|
|
127
|
+
max_enabled_profiles: number | null;
|
|
128
|
+
cleanup_owner: "claudexor" | "vendor";
|
|
129
|
+
}[] | undefined;
|
|
130
|
+
managed_login?: {
|
|
131
|
+
stdin: "none" | "pipe" | "terminal";
|
|
132
|
+
} | null | undefined;
|
|
133
|
+
}>, {
|
|
134
|
+
supported_sources: ("api_key_env" | "api_key_flag" | "native_session" | "none" | "oauth_token_env" | "provider_auth_file")[];
|
|
135
|
+
preferred_source: "api_key_env" | "api_key_flag" | "native_session" | "none" | "oauth_token_env" | "provider_auth_file" | null;
|
|
136
|
+
credential_transports: {
|
|
137
|
+
source: "api_key_env" | "api_key_flag" | "native_session" | "none" | "oauth_token_env" | "provider_auth_file";
|
|
138
|
+
kind: "config_file" | "env_var" | "http_header" | "none" | "oauth_token_env" | "os_keychain";
|
|
139
|
+
relocatable_by: ("CONFIG_DIR" | "ENV" | "HOME" | "none")[];
|
|
140
|
+
platforms?: ("darwin" | "linux" | "win32")[] | undefined;
|
|
64
141
|
}[];
|
|
142
|
+
credential_profile_policies?: {
|
|
143
|
+
source: "api_key_env" | "api_key_flag" | "native_session" | "none" | "oauth_token_env" | "provider_auth_file";
|
|
144
|
+
platforms: ("darwin" | "linux" | "win32")[];
|
|
145
|
+
identity_scope: "os_user" | "profile";
|
|
146
|
+
max_enabled_profiles: number | null;
|
|
147
|
+
cleanup_owner: "claudexor" | "vendor";
|
|
148
|
+
}[] | undefined;
|
|
149
|
+
managed_login?: {
|
|
150
|
+
stdin: "none" | "pipe" | "terminal";
|
|
151
|
+
} | null | undefined;
|
|
65
152
|
}, {
|
|
66
153
|
supported_sources?: ("api_key_env" | "api_key_flag" | "native_session" | "none" | "oauth_token_env" | "provider_auth_file")[] | undefined;
|
|
67
154
|
preferred_source?: "api_key_env" | "api_key_flag" | "native_session" | "none" | "oauth_token_env" | "provider_auth_file" | null | undefined;
|
|
@@ -69,7 +156,18 @@ export declare const HarnessStatusDto: z.ZodObject<{
|
|
|
69
156
|
source: "api_key_env" | "api_key_flag" | "native_session" | "none" | "oauth_token_env" | "provider_auth_file";
|
|
70
157
|
kind: "config_file" | "env_var" | "http_header" | "none" | "oauth_token_env" | "os_keychain";
|
|
71
158
|
relocatable_by?: ("CONFIG_DIR" | "ENV" | "HOME" | "none")[] | undefined;
|
|
159
|
+
platforms?: ("darwin" | "linux" | "win32")[] | undefined;
|
|
160
|
+
}[] | undefined;
|
|
161
|
+
credential_profile_policies?: {
|
|
162
|
+
source: "api_key_env" | "api_key_flag" | "native_session" | "none" | "oauth_token_env" | "provider_auth_file";
|
|
163
|
+
platforms: ("darwin" | "linux" | "win32")[];
|
|
164
|
+
identity_scope: "os_user" | "profile";
|
|
165
|
+
max_enabled_profiles: number | null;
|
|
166
|
+
cleanup_owner: "claudexor" | "vendor";
|
|
72
167
|
}[] | undefined;
|
|
168
|
+
managed_login?: {
|
|
169
|
+
stdin: "none" | "pipe" | "terminal";
|
|
170
|
+
} | null | undefined;
|
|
73
171
|
}>>;
|
|
74
172
|
access_control: z.ZodDefault<z.ZodObject<{
|
|
75
173
|
readonly_mechanism: z.ZodDefault<z.ZodEnum<["fs_sandbox", "permission_deny", "tool_allowlist", "none"]>>;
|
|
@@ -114,7 +212,18 @@ export declare const HarnessStatusDto: z.ZodObject<{
|
|
|
114
212
|
source: "api_key_env" | "api_key_flag" | "native_session" | "none" | "oauth_token_env" | "provider_auth_file";
|
|
115
213
|
kind: "config_file" | "env_var" | "http_header" | "none" | "oauth_token_env" | "os_keychain";
|
|
116
214
|
relocatable_by: ("CONFIG_DIR" | "ENV" | "HOME" | "none")[];
|
|
215
|
+
platforms?: ("darwin" | "linux" | "win32")[] | undefined;
|
|
117
216
|
}[];
|
|
217
|
+
credential_profile_policies?: {
|
|
218
|
+
source: "api_key_env" | "api_key_flag" | "native_session" | "none" | "oauth_token_env" | "provider_auth_file";
|
|
219
|
+
platforms: ("darwin" | "linux" | "win32")[];
|
|
220
|
+
identity_scope: "os_user" | "profile";
|
|
221
|
+
max_enabled_profiles: number | null;
|
|
222
|
+
cleanup_owner: "claudexor" | "vendor";
|
|
223
|
+
}[] | undefined;
|
|
224
|
+
managed_login?: {
|
|
225
|
+
stdin: "none" | "pipe" | "terminal";
|
|
226
|
+
} | null | undefined;
|
|
118
227
|
};
|
|
119
228
|
access_control: {
|
|
120
229
|
readonly_mechanism: "fs_sandbox" | "none" | "permission_deny" | "tool_allowlist";
|
|
@@ -139,7 +248,18 @@ export declare const HarnessStatusDto: z.ZodObject<{
|
|
|
139
248
|
source: "api_key_env" | "api_key_flag" | "native_session" | "none" | "oauth_token_env" | "provider_auth_file";
|
|
140
249
|
kind: "config_file" | "env_var" | "http_header" | "none" | "oauth_token_env" | "os_keychain";
|
|
141
250
|
relocatable_by?: ("CONFIG_DIR" | "ENV" | "HOME" | "none")[] | undefined;
|
|
251
|
+
platforms?: ("darwin" | "linux" | "win32")[] | undefined;
|
|
142
252
|
}[] | undefined;
|
|
253
|
+
credential_profile_policies?: {
|
|
254
|
+
source: "api_key_env" | "api_key_flag" | "native_session" | "none" | "oauth_token_env" | "provider_auth_file";
|
|
255
|
+
platforms: ("darwin" | "linux" | "win32")[];
|
|
256
|
+
identity_scope: "os_user" | "profile";
|
|
257
|
+
max_enabled_profiles: number | null;
|
|
258
|
+
cleanup_owner: "claudexor" | "vendor";
|
|
259
|
+
}[] | undefined;
|
|
260
|
+
managed_login?: {
|
|
261
|
+
stdin: "none" | "pipe" | "terminal";
|
|
262
|
+
} | null | undefined;
|
|
143
263
|
} | undefined;
|
|
144
264
|
access_control?: {
|
|
145
265
|
readonly_mechanism?: "fs_sandbox" | "none" | "permission_deny" | "tool_allowlist" | undefined;
|
|
@@ -271,7 +391,18 @@ export declare const HarnessStatusDto: z.ZodObject<{
|
|
|
271
391
|
source: "api_key_env" | "api_key_flag" | "native_session" | "none" | "oauth_token_env" | "provider_auth_file";
|
|
272
392
|
kind: "config_file" | "env_var" | "http_header" | "none" | "oauth_token_env" | "os_keychain";
|
|
273
393
|
relocatable_by: ("CONFIG_DIR" | "ENV" | "HOME" | "none")[];
|
|
394
|
+
platforms?: ("darwin" | "linux" | "win32")[] | undefined;
|
|
274
395
|
}[];
|
|
396
|
+
credential_profile_policies?: {
|
|
397
|
+
source: "api_key_env" | "api_key_flag" | "native_session" | "none" | "oauth_token_env" | "provider_auth_file";
|
|
398
|
+
platforms: ("darwin" | "linux" | "win32")[];
|
|
399
|
+
identity_scope: "os_user" | "profile";
|
|
400
|
+
max_enabled_profiles: number | null;
|
|
401
|
+
cleanup_owner: "claudexor" | "vendor";
|
|
402
|
+
}[] | undefined;
|
|
403
|
+
managed_login?: {
|
|
404
|
+
stdin: "none" | "pipe" | "terminal";
|
|
405
|
+
} | null | undefined;
|
|
275
406
|
};
|
|
276
407
|
access_control: {
|
|
277
408
|
readonly_mechanism: "fs_sandbox" | "none" | "permission_deny" | "tool_allowlist";
|
|
@@ -335,7 +466,18 @@ export declare const HarnessStatusDto: z.ZodObject<{
|
|
|
335
466
|
source: "api_key_env" | "api_key_flag" | "native_session" | "none" | "oauth_token_env" | "provider_auth_file";
|
|
336
467
|
kind: "config_file" | "env_var" | "http_header" | "none" | "oauth_token_env" | "os_keychain";
|
|
337
468
|
relocatable_by?: ("CONFIG_DIR" | "ENV" | "HOME" | "none")[] | undefined;
|
|
469
|
+
platforms?: ("darwin" | "linux" | "win32")[] | undefined;
|
|
470
|
+
}[] | undefined;
|
|
471
|
+
credential_profile_policies?: {
|
|
472
|
+
source: "api_key_env" | "api_key_flag" | "native_session" | "none" | "oauth_token_env" | "provider_auth_file";
|
|
473
|
+
platforms: ("darwin" | "linux" | "win32")[];
|
|
474
|
+
identity_scope: "os_user" | "profile";
|
|
475
|
+
max_enabled_profiles: number | null;
|
|
476
|
+
cleanup_owner: "claudexor" | "vendor";
|
|
338
477
|
}[] | undefined;
|
|
478
|
+
managed_login?: {
|
|
479
|
+
stdin: "none" | "pipe" | "terminal";
|
|
480
|
+
} | null | undefined;
|
|
339
481
|
} | undefined;
|
|
340
482
|
access_control?: {
|
|
341
483
|
readonly_mechanism?: "fs_sandbox" | "none" | "permission_deny" | "tool_allowlist" | undefined;
|
|
@@ -487,6 +629,13 @@ export declare const HarnessStatusDto: z.ZodObject<{
|
|
|
487
629
|
remediation?: string | null | undefined;
|
|
488
630
|
requiresFullAccess?: boolean | undefined;
|
|
489
631
|
}>>>;
|
|
632
|
+
setupLogin: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
633
|
+
mode: z.ZodEnum<["in_app", "external_terminal"]>;
|
|
634
|
+
}, "strict", z.ZodTypeAny, {
|
|
635
|
+
mode: "external_terminal" | "in_app";
|
|
636
|
+
}, {
|
|
637
|
+
mode: "external_terminal" | "in_app";
|
|
638
|
+
}>>>;
|
|
490
639
|
}, "strip", z.ZodTypeAny, {
|
|
491
640
|
id: string;
|
|
492
641
|
status: "degraded" | "ok" | "unavailable";
|
|
@@ -505,7 +654,18 @@ export declare const HarnessStatusDto: z.ZodObject<{
|
|
|
505
654
|
source: "api_key_env" | "api_key_flag" | "native_session" | "none" | "oauth_token_env" | "provider_auth_file";
|
|
506
655
|
kind: "config_file" | "env_var" | "http_header" | "none" | "oauth_token_env" | "os_keychain";
|
|
507
656
|
relocatable_by: ("CONFIG_DIR" | "ENV" | "HOME" | "none")[];
|
|
657
|
+
platforms?: ("darwin" | "linux" | "win32")[] | undefined;
|
|
508
658
|
}[];
|
|
659
|
+
credential_profile_policies?: {
|
|
660
|
+
source: "api_key_env" | "api_key_flag" | "native_session" | "none" | "oauth_token_env" | "provider_auth_file";
|
|
661
|
+
platforms: ("darwin" | "linux" | "win32")[];
|
|
662
|
+
identity_scope: "os_user" | "profile";
|
|
663
|
+
max_enabled_profiles: number | null;
|
|
664
|
+
cleanup_owner: "claudexor" | "vendor";
|
|
665
|
+
}[] | undefined;
|
|
666
|
+
managed_login?: {
|
|
667
|
+
stdin: "none" | "pipe" | "terminal";
|
|
668
|
+
} | null | undefined;
|
|
509
669
|
};
|
|
510
670
|
access_control: {
|
|
511
671
|
readonly_mechanism: "fs_sandbox" | "none" | "permission_deny" | "tool_allowlist";
|
|
@@ -589,6 +749,9 @@ export declare const HarnessStatusDto: z.ZodObject<{
|
|
|
589
749
|
remediation: string | null;
|
|
590
750
|
requiresFullAccess: boolean;
|
|
591
751
|
} | null;
|
|
752
|
+
setupLogin?: {
|
|
753
|
+
mode: "external_terminal" | "in_app";
|
|
754
|
+
} | null | undefined;
|
|
592
755
|
}, {
|
|
593
756
|
id: string;
|
|
594
757
|
status: "degraded" | "ok" | "unavailable";
|
|
@@ -607,7 +770,18 @@ export declare const HarnessStatusDto: z.ZodObject<{
|
|
|
607
770
|
source: "api_key_env" | "api_key_flag" | "native_session" | "none" | "oauth_token_env" | "provider_auth_file";
|
|
608
771
|
kind: "config_file" | "env_var" | "http_header" | "none" | "oauth_token_env" | "os_keychain";
|
|
609
772
|
relocatable_by?: ("CONFIG_DIR" | "ENV" | "HOME" | "none")[] | undefined;
|
|
773
|
+
platforms?: ("darwin" | "linux" | "win32")[] | undefined;
|
|
610
774
|
}[] | undefined;
|
|
775
|
+
credential_profile_policies?: {
|
|
776
|
+
source: "api_key_env" | "api_key_flag" | "native_session" | "none" | "oauth_token_env" | "provider_auth_file";
|
|
777
|
+
platforms: ("darwin" | "linux" | "win32")[];
|
|
778
|
+
identity_scope: "os_user" | "profile";
|
|
779
|
+
max_enabled_profiles: number | null;
|
|
780
|
+
cleanup_owner: "claudexor" | "vendor";
|
|
781
|
+
}[] | undefined;
|
|
782
|
+
managed_login?: {
|
|
783
|
+
stdin: "none" | "pipe" | "terminal";
|
|
784
|
+
} | null | undefined;
|
|
611
785
|
} | undefined;
|
|
612
786
|
access_control?: {
|
|
613
787
|
readonly_mechanism?: "fs_sandbox" | "none" | "permission_deny" | "tool_allowlist" | undefined;
|
|
@@ -691,6 +865,9 @@ export declare const HarnessStatusDto: z.ZodObject<{
|
|
|
691
865
|
remediation?: string | null | undefined;
|
|
692
866
|
requiresFullAccess?: boolean | undefined;
|
|
693
867
|
} | null | undefined;
|
|
868
|
+
setupLogin?: {
|
|
869
|
+
mode: "external_terminal" | "in_app";
|
|
870
|
+
} | null | undefined;
|
|
694
871
|
}>;
|
|
695
872
|
export type HarnessStatusDto = z.infer<typeof HarnessStatusDto>;
|
|
696
873
|
//# sourceMappingURL=readiness.d.ts.map
|
package/dist/readiness.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"readiness.d.ts","sourceRoot":"","sources":["../src/readiness.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,QAAQ,CAAC;AAK3B;;;;;;;GAOG;AACH,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;EAgB2C,CAAC;AAC1E,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAElE,eAAO,MAAM,gBAAgB
|
|
1
|
+
{"version":3,"file":"readiness.d.ts","sourceRoot":"","sources":["../src/readiness.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,QAAQ,CAAC;AAK3B,2EAA2E;AAC3E,eAAO,MAAM,oBAAoB;;;;;;EAS8C,CAAC;AAChF,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAExE;;;;;;;GAOG;AACH,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;EAgB2C,CAAC;AAC1E,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAElE,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAWzB;;;yEAGqE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAmBrE;2EACuE;;;;;;;;;;;;;;;;;;;;IAKvE,+DAA+D;;IAM/D;;qDAEiD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA4BlD,CAAC;AACJ,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC"}
|
package/dist/readiness.js
CHANGED
|
@@ -2,6 +2,15 @@ import { z } from "zod/v3";
|
|
|
2
2
|
import { AdapterStatus, ConformanceCheck, HarnessManifest } from "./harness.js";
|
|
3
3
|
import { AuthSourceReadiness } from "./auth.js";
|
|
4
4
|
import { DelegationCapability } from "./delegation.js";
|
|
5
|
+
/** Effective host login flow a thin client may request for one harness. */
|
|
6
|
+
export const SetupLoginCapability = z
|
|
7
|
+
.object({
|
|
8
|
+
mode: z
|
|
9
|
+
.enum(["in_app", "external_terminal"])
|
|
10
|
+
.describe("in_app requests the daemon-hosted login flow; external_terminal requests the existing client PTY flow."),
|
|
11
|
+
})
|
|
12
|
+
.strict()
|
|
13
|
+
.describe("Effective setup-login flow for this harness on the current host.");
|
|
5
14
|
/**
|
|
6
15
|
* ONE display-ready readiness check (W4.7 sol #18): the daemon normalizes raw
|
|
7
16
|
* doctor probes, auth-source readiness, and the configured-model verdict into
|
|
@@ -86,6 +95,9 @@ export const HarnessStatusDto = z
|
|
|
86
95
|
delegation: DelegationCapability.nullable()
|
|
87
96
|
.default(null)
|
|
88
97
|
.describe("Engine-owned Delegate capability for this harness and installed runtime; null on legacy status rows."),
|
|
98
|
+
setupLogin: SetupLoginCapability.nullable()
|
|
99
|
+
.optional()
|
|
100
|
+
.describe("Effective setup-login flow for this harness on the current host; current producers emit null or an object, while omission identifies a legacy row."),
|
|
89
101
|
})
|
|
90
102
|
.describe("Doctor-backed status row for one harness: status, intents, checks, and configured-model validity.");
|
|
91
103
|
//# sourceMappingURL=readiness.js.map
|
package/dist/readiness.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"readiness.js","sourceRoot":"","sources":["../src/readiness.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"readiness.js","sourceRoot":"","sources":["../src/readiness.ts"],"names":[],"mappings":"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"}
|
package/dist/setup-login.d.ts
CHANGED
|
@@ -379,7 +379,7 @@ export declare const SetupLoginRunnerResult: z.ZodEffects<z.ZodObject<{
|
|
|
379
379
|
commandStarted: z.ZodBoolean;
|
|
380
380
|
exitCode: z.ZodNullable<z.ZodNumber>;
|
|
381
381
|
signal: z.ZodNullable<z.ZodString>;
|
|
382
|
-
errorCode: z.ZodOptional<z.ZodEnum<["permit_timeout", "spawn_failed", "device_auth_unsupported"]>>;
|
|
382
|
+
errorCode: z.ZodOptional<z.ZodEnum<["permit_timeout", "spawn_failed", "device_auth_unsupported", "terminal_transport_unavailable", "terminal_transport_unsupported", "terminal_transport_probe_failed", "terminal_transport_failed"]>>;
|
|
383
383
|
finishedAt: z.ZodString;
|
|
384
384
|
version: z.ZodLiteral<2>;
|
|
385
385
|
jobId: z.ZodString;
|
|
@@ -397,7 +397,7 @@ export declare const SetupLoginRunnerResult: z.ZodEffects<z.ZodObject<{
|
|
|
397
397
|
commandStarted: boolean;
|
|
398
398
|
exitCode: number | null;
|
|
399
399
|
signal: string | null;
|
|
400
|
-
errorCode?: "device_auth_unsupported" | "permit_timeout" | "spawn_failed" | undefined;
|
|
400
|
+
errorCode?: "device_auth_unsupported" | "permit_timeout" | "spawn_failed" | "terminal_transport_failed" | "terminal_transport_probe_failed" | "terminal_transport_unavailable" | "terminal_transport_unsupported" | undefined;
|
|
401
401
|
finishedAt: string;
|
|
402
402
|
version: 2;
|
|
403
403
|
jobId: string;
|
|
@@ -410,7 +410,7 @@ export declare const SetupLoginRunnerResult: z.ZodEffects<z.ZodObject<{
|
|
|
410
410
|
commandStarted: boolean;
|
|
411
411
|
exitCode: number | null;
|
|
412
412
|
signal: string | null;
|
|
413
|
-
errorCode?: "device_auth_unsupported" | "permit_timeout" | "spawn_failed" | undefined;
|
|
413
|
+
errorCode?: "device_auth_unsupported" | "permit_timeout" | "spawn_failed" | "terminal_transport_failed" | "terminal_transport_probe_failed" | "terminal_transport_unavailable" | "terminal_transport_unsupported" | undefined;
|
|
414
414
|
finishedAt: string;
|
|
415
415
|
version: 2;
|
|
416
416
|
jobId: string;
|
|
@@ -423,7 +423,7 @@ export declare const SetupLoginRunnerResult: z.ZodEffects<z.ZodObject<{
|
|
|
423
423
|
commandStarted: boolean;
|
|
424
424
|
exitCode: number | null;
|
|
425
425
|
signal: string | null;
|
|
426
|
-
errorCode?: "device_auth_unsupported" | "permit_timeout" | "spawn_failed" | undefined;
|
|
426
|
+
errorCode?: "device_auth_unsupported" | "permit_timeout" | "spawn_failed" | "terminal_transport_failed" | "terminal_transport_probe_failed" | "terminal_transport_unavailable" | "terminal_transport_unsupported" | undefined;
|
|
427
427
|
finishedAt: string;
|
|
428
428
|
version: 2;
|
|
429
429
|
jobId: string;
|
|
@@ -436,7 +436,7 @@ export declare const SetupLoginRunnerResult: z.ZodEffects<z.ZodObject<{
|
|
|
436
436
|
commandStarted: boolean;
|
|
437
437
|
exitCode: number | null;
|
|
438
438
|
signal: string | null;
|
|
439
|
-
errorCode?: "device_auth_unsupported" | "permit_timeout" | "spawn_failed" | undefined;
|
|
439
|
+
errorCode?: "device_auth_unsupported" | "permit_timeout" | "spawn_failed" | "terminal_transport_failed" | "terminal_transport_probe_failed" | "terminal_transport_unavailable" | "terminal_transport_unsupported" | undefined;
|
|
440
440
|
finishedAt: string;
|
|
441
441
|
version: 2;
|
|
442
442
|
jobId: string;
|