@agentconnect.md/cli 1.15.0-rc.1 → 1.15.0-rc.15
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/index.js +11 -5
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -8214,7 +8214,7 @@ discriminatedUnion("kind", [
|
|
|
8214
8214
|
]);
|
|
8215
8215
|
/**
|
|
8216
8216
|
* The editable agent definition the CP owns and the daemon needs to run it:
|
|
8217
|
-
* prompt + runtime selection.
|
|
8217
|
+
* prompt + runtime selection. The launch protocol carries this config and the
|
|
8218
8218
|
* daemon synthesizes the system prompt locally; `description` IS the prompt.
|
|
8219
8219
|
*/
|
|
8220
8220
|
const AgentSpec = object({
|
|
@@ -8836,6 +8836,7 @@ const SessionUsage = object({
|
|
|
8836
8836
|
/** One row in the session list (metadata + console metrics; NOT the transcript). */
|
|
8837
8837
|
const SessionListItem = object({
|
|
8838
8838
|
sessionId: string(),
|
|
8839
|
+
parentSessionId: string().optional(),
|
|
8839
8840
|
sessionKey: SessionKey,
|
|
8840
8841
|
agentId: string().uuid(),
|
|
8841
8842
|
title: string().optional(),
|
|
@@ -9274,6 +9275,7 @@ const Heartbeat = object({
|
|
|
9274
9275
|
/** Converged session lifecycle milestone — protocol §7.2. NOT the message stream. */
|
|
9275
9276
|
const EventSession = object({
|
|
9276
9277
|
sessionId: string(),
|
|
9278
|
+
parentSessionId: string().optional(),
|
|
9277
9279
|
agentId: string().uuid(),
|
|
9278
9280
|
launchId: string().uuid().optional(),
|
|
9279
9281
|
phase: _enum([
|
|
@@ -9343,6 +9345,13 @@ const EffortOption = object({
|
|
|
9343
9345
|
name: string().optional(),
|
|
9344
9346
|
description: string().optional()
|
|
9345
9347
|
});
|
|
9348
|
+
/** One runtime permission-mode choice. The display metadata is forwarded
|
|
9349
|
+
* verbatim from the runtime's ACP `category: "mode"` select option. */
|
|
9350
|
+
const PermissionModeOption = object({
|
|
9351
|
+
value: string(),
|
|
9352
|
+
name: string().optional(),
|
|
9353
|
+
description: string().optional()
|
|
9354
|
+
});
|
|
9346
9355
|
/**
|
|
9347
9356
|
* A runtime's discovered model × config capability matrix. One shape shared by
|
|
9348
9357
|
* the wire, the CP's `runtime_profile.modelCatalog` JSONB column, and the DTO —
|
|
@@ -9357,10 +9366,7 @@ const RuntimeModelCatalog = object({
|
|
|
9357
9366
|
fastMode: boolean().optional()
|
|
9358
9367
|
})).max(128),
|
|
9359
9368
|
defaultModel: string().optional(),
|
|
9360
|
-
permissionModes: array(
|
|
9361
|
-
value: string(),
|
|
9362
|
-
name: string().optional()
|
|
9363
|
-
})).optional(),
|
|
9369
|
+
permissionModes: array(PermissionModeOption).optional(),
|
|
9364
9370
|
defaultPermissionMode: string().optional(),
|
|
9365
9371
|
source: _enum(["native", "acp"]),
|
|
9366
9372
|
observedAt: string().datetime()
|