@integrity-labs/agt-cli 0.28.616 → 0.28.618
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/bin/agt.js +5 -5
- package/dist/{chunk-BGZOJTLR.js → chunk-CKCXOIN3.js} +22 -4
- package/dist/{chunk-BGZOJTLR.js.map → chunk-CKCXOIN3.js.map} +1 -1
- package/dist/{chunk-TYVQNCBU.js → chunk-P6KFZVKA.js} +36 -1
- package/dist/chunk-P6KFZVKA.js.map +1 -0
- package/dist/{chunk-6SJJM4FT.js → chunk-RXC3MTSN.js} +5 -2
- package/dist/chunk-RXC3MTSN.js.map +1 -0
- package/dist/{claude-pair-runtime-QCL2TB6N.js → claude-pair-runtime-3356FFTC.js} +2 -2
- package/dist/lib/manager-worker.js +59 -13
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/direct-chat-channel.js +35 -0
- package/dist/mcp/index.js +2 -2
- package/dist/mcp/origami.js +35 -0
- package/dist/mcp/slack-channel.js +35 -0
- package/dist/mcp/telegram-channel.js +35 -0
- package/dist/{persistent-session-GM3EH2ZU.js → persistent-session-AGPLISL3.js} +3 -3
- package/dist/{responsiveness-probe-VSSJC3MN.js → responsiveness-probe-ITYPPSHM.js} +3 -3
- package/dist/{session-auth-dead-KOKVXPPQ.js → session-auth-dead-Y6ABNWNM.js} +2 -2
- package/package.json +1 -1
- package/dist/chunk-6SJJM4FT.js.map +0 -1
- package/dist/chunk-TYVQNCBU.js.map +0 -1
- /package/dist/{claude-pair-runtime-QCL2TB6N.js.map → claude-pair-runtime-3356FFTC.js.map} +0 -0
- /package/dist/{persistent-session-GM3EH2ZU.js.map → persistent-session-AGPLISL3.js.map} +0 -0
- /package/dist/{responsiveness-probe-VSSJC3MN.js.map → responsiveness-probe-ITYPPSHM.js.map} +0 -0
- /package/dist/{session-auth-dead-KOKVXPPQ.js.map → session-auth-dead-Y6ABNWNM.js.map} +0 -0
|
@@ -35000,6 +35000,41 @@ var FLAG_REGISTRY = [
|
|
|
35000
35000
|
// it MOVES data, so mutations require explicit confirmation (ADR-0022 §4).
|
|
35001
35001
|
sensitive: true
|
|
35002
35002
|
},
|
|
35003
|
+
{
|
|
35004
|
+
key: "per-agent-host-credentials",
|
|
35005
|
+
description: "Per-agent host credentials on DEDICATED hosts (ENG-8992, extending ADR-0042 pt3b). When ON, the manager mints a per-agent org-scoped `tlk_` key at spawn and injects it as that container's AGT_API_KEY, instead of forwarding the one HOST-WIDE key into every agent. Today every container on a dedicated host holds the same credential, so an agent can exchange a claim-less token and read a SIBLING agent's decrypted integration credentials via POST /host/agent-integrations. The request-time guard that stops this (verifyHostAgentAccess reading the token's agent_id claim, ENG-7449) is ALREADY live in production - it no-ops only because no container ever carries a scoped key, so this flag gives the existing gate something to check rather than adding a new one. POOL hosts are NOT governed by this flag: per-agent scope is mandatory there (ENG-7489) and stays unconditional. Read by the MANAGER at spawn (hostFlagStore), so a central flip applies to subsequent spawns - already-running agents keep their current credential until they respawn, which is what makes the rollout staged rather than a fleet-wide cutover. Ships dark (default off). AGT_PER_AGENT_HOST_CREDENTIALS_ENABLED is the per-host escape hatch and kill switch; precedence is env override > flag value > this default.",
|
|
35006
|
+
flagType: "boolean",
|
|
35007
|
+
// Declared safe value is `false` = keep forwarding the shared host key. A
|
|
35008
|
+
// flag-read error must not change which credential a container is spawned
|
|
35009
|
+
// with; the fail-safe direction here is "no behaviour change", and a mint
|
|
35010
|
+
// FAILURE (once armed) separately fails the spawn CLOSED rather than
|
|
35011
|
+
// falling back to the shared key.
|
|
35012
|
+
defaultValue: false,
|
|
35013
|
+
envVar: "AGT_PER_AGENT_HOST_CREDENTIALS_ENABLED",
|
|
35014
|
+
// Disabling this RESTORES the shared host-wide key to every container, and
|
|
35015
|
+
// with it the cross-agent credential read ENG-8992 closes. A credential-scope
|
|
35016
|
+
// reduction should not be one click away without confirmation — same posture
|
|
35017
|
+
// as `github-broker-credentials`, the other credential-delivery flag.
|
|
35018
|
+
sensitive: true,
|
|
35019
|
+
// The reader is host-side (`hostFlagStore().getBoolean(...)` in the manager),
|
|
35020
|
+
// so a host on an older agt-cli has no consumer code: it keeps forwarding the
|
|
35021
|
+
// shared key no matter what the flag says. Without `since`, the flip-reach
|
|
35022
|
+
// modal would report every recently-seen host as honoring the flip — the
|
|
35023
|
+
// dangerous direction, because it reads as "armed" when it is not.
|
|
35024
|
+
//
|
|
35025
|
+
// PLACEHOLDER, deliberately above every published version (npm latest was
|
|
35026
|
+
// 0.28.612 when this landed). The reader ships in whatever the auto-publish
|
|
35027
|
+
// patch-bump produces AFTER this merges, which is not knowable here. Per the
|
|
35028
|
+
// same reasoning recorded on the `agt-bin` flag: `since` is ADVISORY, read
|
|
35029
|
+
// only by `computeFlagReach`; it changes what an operator is TOLD, it does
|
|
35030
|
+
// not gate a flip. So an over-high placeholder is safe (reach under-reports,
|
|
35031
|
+
// nobody flips), and a GUESSED number is not.
|
|
35032
|
+
//
|
|
35033
|
+
// BEFORE FLIPPING THIS ANYWHERE: replace with the exact first published
|
|
35034
|
+
// agt-cli version whose `spawnSession` carries the `-e AGT_API_KEY=` push.
|
|
35035
|
+
// The rollout runbook gates on it.
|
|
35036
|
+
since: "0.29.0"
|
|
35037
|
+
},
|
|
35003
35038
|
{
|
|
35004
35039
|
key: "agent-hours-billing-enabled",
|
|
35005
35040
|
description: "Agent-hours (utilisation) billing (ENG-7910). Per-org gate; ships dark. When on for an org, its closed billing periods are settled into org_agent_hours_settlements from the plan/override agent-hours terms, and the customer billing surface shows used-vs-included hours + projected overage. Off = no settlement written, no charge, surface hidden. Launch prices are seeded in plan_billing_terms; flip on per-org for a controlled rollout.",
|
package/dist/mcp/index.js
CHANGED
|
@@ -22476,7 +22476,7 @@ server.tool(
|
|
|
22476
22476
|
}
|
|
22477
22477
|
);
|
|
22478
22478
|
var kanbanMoveStatuses = AGT_KANBAN_WAITING_ENABLED ? ["backlog", "todo", "in_progress", "waiting", "done", "failed"] : ["backlog", "todo", "in_progress", "done", "failed"];
|
|
22479
|
-
var kanbanMoveDescription = AGT_KANBAN_WAITING_ENABLED ? `Move a kanban item to a different status column. Use status="failed" for a task attempted but not completable. Use status="waiting" when you have COMPLETED your part and cannot proceed until one specific external action happens (a person approves/answers/decides, or a dependency like a PR merge or deploy completes). status="waiting" REQUIRES waiting_kind - classify the wait as "pr-review", "pr-merged", "human", "external", or "other" (the catch-all when none fit). For a PR wait ("pr-review"/"pr-merged") set waiting_repo ("owner/repo") and waiting_pr (the number) INSTEAD of waiting_on - the card then links straight to the PR and can auto-resume when it lands. For "human"/"external"/"other" set waiting_on to a one-line ask ("Answer my 5 scoping questions") AND put the full context the person needs to decide - the actual questions, options, links - in waiting_details, so they can answer from the card without opening a ticket. For "human" ALSO set waiting_on_person to that person's Slack user id, so the card lands in their "Awaiting you" queue and they are notified instead of your ask sitting unseen. Do NOT use waiting to offload hard work, and do NOT confuse it with a failure. (matches the hosted kanban_move enum).` : 'Move a kanban item to a different status column. Use status="failed" to mark a task that was attempted but could not complete (matches the hosted kanban_move enum).';
|
|
22479
|
+
var kanbanMoveDescription = AGT_KANBAN_WAITING_ENABLED ? `Move a kanban item to a different status column. Use status="failed" for a task attempted but not completable. Use status="waiting" when you have COMPLETED your part and cannot proceed until one specific external action happens (a person approves/answers/decides, or a dependency like a PR merge or deploy completes). status="waiting" REQUIRES waiting_kind - classify the wait as "pr-review", "pr-merged", "human", "external", or "other" (the catch-all when none fit). For a PR wait ("pr-review"/"pr-merged") set waiting_repo ("owner/repo") and waiting_pr (the number) INSTEAD of waiting_on - the card then links straight to the PR and can auto-resume when it lands. For "human"/"external"/"other" set waiting_on to a one-line ask ("Answer my 5 scoping questions") AND put the full context the person needs to decide - the actual questions, options, links - in waiting_details, so they can answer from the card without opening a ticket. For "human" ALSO set waiting_on_person to that person's person_id (uuid, from directory_lookup \u2014 preferred) or their Slack user id, so the card lands in their "Awaiting you" queue and they are notified instead of your ask sitting unseen. Do NOT use waiting to offload hard work, and do NOT confuse it with a failure. (matches the hosted kanban_move enum).` : 'Move a kanban item to a different status column. Use status="failed" to mark a task that was attempted but could not complete (matches the hosted kanban_move enum).';
|
|
22480
22480
|
var kanbanMoveStatusDescribe = AGT_KANBAN_WAITING_ENABLED ? 'Target status. "waiting" parks the card until one external action happens; it REQUIRES waiting_kind - use "pr-review"/"pr-merged" with waiting_repo + waiting_pr, or "human"/"external"/"other" with a concrete waiting_on. "failed" closes the row as a failed attempt; there is no "cancelled" status, close no-longer-needed work via kanban_done with an explanatory result.' : 'Target status. "failed" closes the row as a failed attempt; there is no "cancelled" status, close no-longer-needed work via kanban_done with an explanatory result.';
|
|
22481
22481
|
server.tool(
|
|
22482
22482
|
"kanban_move",
|
|
@@ -22504,7 +22504,7 @@ server.tool(
|
|
|
22504
22504
|
'Optional, best with waiting_kind="human": 2-5 short answer options to offer the person as one-click buttons (e.g. ["Ship it", "Hold", "Needs changes"]). Keep them short. They can still add a free-text comment alongside a choice. Omit for an open-ended human wait (they just get a comment box).'
|
|
22505
22505
|
),
|
|
22506
22506
|
waiting_on_person: external_exports.string().optional().describe(
|
|
22507
|
-
`
|
|
22507
|
+
`Who has to act before you can continue - the ONE person. Two accepted forms: a person_id (uuid) as emitted by directory_lookup, which is PREFERRED because it is the id the directory actually gives you and it resolves for people with no linked Slack account; or a Slack user id (e.g. "U0123ABCD" - the same id you would pass to deliver_to). This puts the card in that person's "Awaiting you" queue and notifies them, so your ask does not sit unseen. It does NOT reassign the card - you still own driving it to done and you resume as soon as they answer. Valid on "human", "approval", "pr-review" and "pr-merged" waits (ENG-8291: a PR waiting on a review or a merge tap IS waiting on a person, and naming them is the whole point). Note "approval" is absent from the waiting_kind enum above deliberately and that is NOT an inconsistency: the approval broker sets that kind server-side, so you never pass it - but a card the server already parked that way still accepts this field, and rejecting the pair the server itself produces was the ENG-8291 bug. NOT valid on "external" or "other", which are parked on a system or unclassified - there is nobody to notify. Set it whenever you know who has to act; omit only if genuinely nobody specific does.`
|
|
22508
22508
|
)
|
|
22509
22509
|
} : {}
|
|
22510
22510
|
},
|
package/dist/mcp/origami.js
CHANGED
|
@@ -40864,6 +40864,41 @@ var FLAG_REGISTRY = [
|
|
|
40864
40864
|
// it MOVES data, so mutations require explicit confirmation (ADR-0022 §4).
|
|
40865
40865
|
sensitive: true
|
|
40866
40866
|
},
|
|
40867
|
+
{
|
|
40868
|
+
key: "per-agent-host-credentials",
|
|
40869
|
+
description: "Per-agent host credentials on DEDICATED hosts (ENG-8992, extending ADR-0042 pt3b). When ON, the manager mints a per-agent org-scoped `tlk_` key at spawn and injects it as that container's AGT_API_KEY, instead of forwarding the one HOST-WIDE key into every agent. Today every container on a dedicated host holds the same credential, so an agent can exchange a claim-less token and read a SIBLING agent's decrypted integration credentials via POST /host/agent-integrations. The request-time guard that stops this (verifyHostAgentAccess reading the token's agent_id claim, ENG-7449) is ALREADY live in production - it no-ops only because no container ever carries a scoped key, so this flag gives the existing gate something to check rather than adding a new one. POOL hosts are NOT governed by this flag: per-agent scope is mandatory there (ENG-7489) and stays unconditional. Read by the MANAGER at spawn (hostFlagStore), so a central flip applies to subsequent spawns - already-running agents keep their current credential until they respawn, which is what makes the rollout staged rather than a fleet-wide cutover. Ships dark (default off). AGT_PER_AGENT_HOST_CREDENTIALS_ENABLED is the per-host escape hatch and kill switch; precedence is env override > flag value > this default.",
|
|
40870
|
+
flagType: "boolean",
|
|
40871
|
+
// Declared safe value is `false` = keep forwarding the shared host key. A
|
|
40872
|
+
// flag-read error must not change which credential a container is spawned
|
|
40873
|
+
// with; the fail-safe direction here is "no behaviour change", and a mint
|
|
40874
|
+
// FAILURE (once armed) separately fails the spawn CLOSED rather than
|
|
40875
|
+
// falling back to the shared key.
|
|
40876
|
+
defaultValue: false,
|
|
40877
|
+
envVar: "AGT_PER_AGENT_HOST_CREDENTIALS_ENABLED",
|
|
40878
|
+
// Disabling this RESTORES the shared host-wide key to every container, and
|
|
40879
|
+
// with it the cross-agent credential read ENG-8992 closes. A credential-scope
|
|
40880
|
+
// reduction should not be one click away without confirmation — same posture
|
|
40881
|
+
// as `github-broker-credentials`, the other credential-delivery flag.
|
|
40882
|
+
sensitive: true,
|
|
40883
|
+
// The reader is host-side (`hostFlagStore().getBoolean(...)` in the manager),
|
|
40884
|
+
// so a host on an older agt-cli has no consumer code: it keeps forwarding the
|
|
40885
|
+
// shared key no matter what the flag says. Without `since`, the flip-reach
|
|
40886
|
+
// modal would report every recently-seen host as honoring the flip — the
|
|
40887
|
+
// dangerous direction, because it reads as "armed" when it is not.
|
|
40888
|
+
//
|
|
40889
|
+
// PLACEHOLDER, deliberately above every published version (npm latest was
|
|
40890
|
+
// 0.28.612 when this landed). The reader ships in whatever the auto-publish
|
|
40891
|
+
// patch-bump produces AFTER this merges, which is not knowable here. Per the
|
|
40892
|
+
// same reasoning recorded on the `agt-bin` flag: `since` is ADVISORY, read
|
|
40893
|
+
// only by `computeFlagReach`; it changes what an operator is TOLD, it does
|
|
40894
|
+
// not gate a flip. So an over-high placeholder is safe (reach under-reports,
|
|
40895
|
+
// nobody flips), and a GUESSED number is not.
|
|
40896
|
+
//
|
|
40897
|
+
// BEFORE FLIPPING THIS ANYWHERE: replace with the exact first published
|
|
40898
|
+
// agt-cli version whose `spawnSession` carries the `-e AGT_API_KEY=` push.
|
|
40899
|
+
// The rollout runbook gates on it.
|
|
40900
|
+
since: "0.29.0"
|
|
40901
|
+
},
|
|
40867
40902
|
{
|
|
40868
40903
|
key: "agent-hours-billing-enabled",
|
|
40869
40904
|
description: "Agent-hours (utilisation) billing (ENG-7910). Per-org gate; ships dark. When on for an org, its closed billing periods are settled into org_agent_hours_settlements from the plan/override agent-hours terms, and the customer billing surface shows used-vs-included hours + projected overage. Off = no settlement written, no charge, surface hidden. Launch prices are seeded in plan_billing_terms; flip on per-org for a controlled rollout.",
|
|
@@ -35332,6 +35332,41 @@ var FLAG_REGISTRY = [
|
|
|
35332
35332
|
// it MOVES data, so mutations require explicit confirmation (ADR-0022 §4).
|
|
35333
35333
|
sensitive: true
|
|
35334
35334
|
},
|
|
35335
|
+
{
|
|
35336
|
+
key: "per-agent-host-credentials",
|
|
35337
|
+
description: "Per-agent host credentials on DEDICATED hosts (ENG-8992, extending ADR-0042 pt3b). When ON, the manager mints a per-agent org-scoped `tlk_` key at spawn and injects it as that container's AGT_API_KEY, instead of forwarding the one HOST-WIDE key into every agent. Today every container on a dedicated host holds the same credential, so an agent can exchange a claim-less token and read a SIBLING agent's decrypted integration credentials via POST /host/agent-integrations. The request-time guard that stops this (verifyHostAgentAccess reading the token's agent_id claim, ENG-7449) is ALREADY live in production - it no-ops only because no container ever carries a scoped key, so this flag gives the existing gate something to check rather than adding a new one. POOL hosts are NOT governed by this flag: per-agent scope is mandatory there (ENG-7489) and stays unconditional. Read by the MANAGER at spawn (hostFlagStore), so a central flip applies to subsequent spawns - already-running agents keep their current credential until they respawn, which is what makes the rollout staged rather than a fleet-wide cutover. Ships dark (default off). AGT_PER_AGENT_HOST_CREDENTIALS_ENABLED is the per-host escape hatch and kill switch; precedence is env override > flag value > this default.",
|
|
35338
|
+
flagType: "boolean",
|
|
35339
|
+
// Declared safe value is `false` = keep forwarding the shared host key. A
|
|
35340
|
+
// flag-read error must not change which credential a container is spawned
|
|
35341
|
+
// with; the fail-safe direction here is "no behaviour change", and a mint
|
|
35342
|
+
// FAILURE (once armed) separately fails the spawn CLOSED rather than
|
|
35343
|
+
// falling back to the shared key.
|
|
35344
|
+
defaultValue: false,
|
|
35345
|
+
envVar: "AGT_PER_AGENT_HOST_CREDENTIALS_ENABLED",
|
|
35346
|
+
// Disabling this RESTORES the shared host-wide key to every container, and
|
|
35347
|
+
// with it the cross-agent credential read ENG-8992 closes. A credential-scope
|
|
35348
|
+
// reduction should not be one click away without confirmation — same posture
|
|
35349
|
+
// as `github-broker-credentials`, the other credential-delivery flag.
|
|
35350
|
+
sensitive: true,
|
|
35351
|
+
// The reader is host-side (`hostFlagStore().getBoolean(...)` in the manager),
|
|
35352
|
+
// so a host on an older agt-cli has no consumer code: it keeps forwarding the
|
|
35353
|
+
// shared key no matter what the flag says. Without `since`, the flip-reach
|
|
35354
|
+
// modal would report every recently-seen host as honoring the flip — the
|
|
35355
|
+
// dangerous direction, because it reads as "armed" when it is not.
|
|
35356
|
+
//
|
|
35357
|
+
// PLACEHOLDER, deliberately above every published version (npm latest was
|
|
35358
|
+
// 0.28.612 when this landed). The reader ships in whatever the auto-publish
|
|
35359
|
+
// patch-bump produces AFTER this merges, which is not knowable here. Per the
|
|
35360
|
+
// same reasoning recorded on the `agt-bin` flag: `since` is ADVISORY, read
|
|
35361
|
+
// only by `computeFlagReach`; it changes what an operator is TOLD, it does
|
|
35362
|
+
// not gate a flip. So an over-high placeholder is safe (reach under-reports,
|
|
35363
|
+
// nobody flips), and a GUESSED number is not.
|
|
35364
|
+
//
|
|
35365
|
+
// BEFORE FLIPPING THIS ANYWHERE: replace with the exact first published
|
|
35366
|
+
// agt-cli version whose `spawnSession` carries the `-e AGT_API_KEY=` push.
|
|
35367
|
+
// The rollout runbook gates on it.
|
|
35368
|
+
since: "0.29.0"
|
|
35369
|
+
},
|
|
35335
35370
|
{
|
|
35336
35371
|
key: "agent-hours-billing-enabled",
|
|
35337
35372
|
description: "Agent-hours (utilisation) billing (ENG-7910). Per-org gate; ships dark. When on for an org, its closed billing periods are settled into org_agent_hours_settlements from the plan/override agent-hours terms, and the customer billing surface shows used-vs-included hours + projected overage. Off = no settlement written, no charge, surface hidden. Launch prices are seeded in plan_billing_terms; flip on per-org for a controlled rollout.",
|
|
@@ -35491,6 +35491,41 @@ var FLAG_REGISTRY = [
|
|
|
35491
35491
|
// it MOVES data, so mutations require explicit confirmation (ADR-0022 §4).
|
|
35492
35492
|
sensitive: true
|
|
35493
35493
|
},
|
|
35494
|
+
{
|
|
35495
|
+
key: "per-agent-host-credentials",
|
|
35496
|
+
description: "Per-agent host credentials on DEDICATED hosts (ENG-8992, extending ADR-0042 pt3b). When ON, the manager mints a per-agent org-scoped `tlk_` key at spawn and injects it as that container's AGT_API_KEY, instead of forwarding the one HOST-WIDE key into every agent. Today every container on a dedicated host holds the same credential, so an agent can exchange a claim-less token and read a SIBLING agent's decrypted integration credentials via POST /host/agent-integrations. The request-time guard that stops this (verifyHostAgentAccess reading the token's agent_id claim, ENG-7449) is ALREADY live in production - it no-ops only because no container ever carries a scoped key, so this flag gives the existing gate something to check rather than adding a new one. POOL hosts are NOT governed by this flag: per-agent scope is mandatory there (ENG-7489) and stays unconditional. Read by the MANAGER at spawn (hostFlagStore), so a central flip applies to subsequent spawns - already-running agents keep their current credential until they respawn, which is what makes the rollout staged rather than a fleet-wide cutover. Ships dark (default off). AGT_PER_AGENT_HOST_CREDENTIALS_ENABLED is the per-host escape hatch and kill switch; precedence is env override > flag value > this default.",
|
|
35497
|
+
flagType: "boolean",
|
|
35498
|
+
// Declared safe value is `false` = keep forwarding the shared host key. A
|
|
35499
|
+
// flag-read error must not change which credential a container is spawned
|
|
35500
|
+
// with; the fail-safe direction here is "no behaviour change", and a mint
|
|
35501
|
+
// FAILURE (once armed) separately fails the spawn CLOSED rather than
|
|
35502
|
+
// falling back to the shared key.
|
|
35503
|
+
defaultValue: false,
|
|
35504
|
+
envVar: "AGT_PER_AGENT_HOST_CREDENTIALS_ENABLED",
|
|
35505
|
+
// Disabling this RESTORES the shared host-wide key to every container, and
|
|
35506
|
+
// with it the cross-agent credential read ENG-8992 closes. A credential-scope
|
|
35507
|
+
// reduction should not be one click away without confirmation — same posture
|
|
35508
|
+
// as `github-broker-credentials`, the other credential-delivery flag.
|
|
35509
|
+
sensitive: true,
|
|
35510
|
+
// The reader is host-side (`hostFlagStore().getBoolean(...)` in the manager),
|
|
35511
|
+
// so a host on an older agt-cli has no consumer code: it keeps forwarding the
|
|
35512
|
+
// shared key no matter what the flag says. Without `since`, the flip-reach
|
|
35513
|
+
// modal would report every recently-seen host as honoring the flip — the
|
|
35514
|
+
// dangerous direction, because it reads as "armed" when it is not.
|
|
35515
|
+
//
|
|
35516
|
+
// PLACEHOLDER, deliberately above every published version (npm latest was
|
|
35517
|
+
// 0.28.612 when this landed). The reader ships in whatever the auto-publish
|
|
35518
|
+
// patch-bump produces AFTER this merges, which is not knowable here. Per the
|
|
35519
|
+
// same reasoning recorded on the `agt-bin` flag: `since` is ADVISORY, read
|
|
35520
|
+
// only by `computeFlagReach`; it changes what an operator is TOLD, it does
|
|
35521
|
+
// not gate a flip. So an over-high placeholder is safe (reach under-reports,
|
|
35522
|
+
// nobody flips), and a GUESSED number is not.
|
|
35523
|
+
//
|
|
35524
|
+
// BEFORE FLIPPING THIS ANYWHERE: replace with the exact first published
|
|
35525
|
+
// agt-cli version whose `spawnSession` carries the `-e AGT_API_KEY=` push.
|
|
35526
|
+
// The rollout runbook gates on it.
|
|
35527
|
+
since: "0.29.0"
|
|
35528
|
+
},
|
|
35494
35529
|
{
|
|
35495
35530
|
key: "agent-hours-billing-enabled",
|
|
35496
35531
|
description: "Agent-hours (utilisation) billing (ENG-7910). Per-org gate; ships dark. When on for an org, its closed billing periods are settled into org_agent_hours_settlements from the plan/override agent-hours terms, and the customer billing surface shows used-vs-included hours + projected overage. Off = no settlement written, no charge, surface hidden. Launch prices are seeded in plan_billing_terms; flip on per-org for a controlled rollout.",
|
|
@@ -43,8 +43,8 @@ import {
|
|
|
43
43
|
writeDirectChatSessionState,
|
|
44
44
|
writeEgressAllowlist,
|
|
45
45
|
writePersistentClaudeWrapper
|
|
46
|
-
} from "./chunk-
|
|
47
|
-
import "./chunk-
|
|
46
|
+
} from "./chunk-RXC3MTSN.js";
|
|
47
|
+
import "./chunk-P6KFZVKA.js";
|
|
48
48
|
import "./chunk-XWVM4KPK.js";
|
|
49
49
|
export {
|
|
50
50
|
EGRESS_BASELINE_DOMAINS,
|
|
@@ -92,4 +92,4 @@ export {
|
|
|
92
92
|
writeEgressAllowlist,
|
|
93
93
|
writePersistentClaudeWrapper
|
|
94
94
|
};
|
|
95
|
-
//# sourceMappingURL=persistent-session-
|
|
95
|
+
//# sourceMappingURL=persistent-session-AGPLISL3.js.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
2
|
paneLogPath
|
|
3
|
-
} from "./chunk-
|
|
4
|
-
import "./chunk-
|
|
3
|
+
} from "./chunk-RXC3MTSN.js";
|
|
4
|
+
import "./chunk-P6KFZVKA.js";
|
|
5
5
|
import "./chunk-XWVM4KPK.js";
|
|
6
6
|
|
|
7
7
|
// src/lib/responsiveness-probe.ts
|
|
@@ -710,4 +710,4 @@ export {
|
|
|
710
710
|
readAndResetSlackReplyBindingClassifications,
|
|
711
711
|
readAndResetSlackReplyTargetClassifications
|
|
712
712
|
};
|
|
713
|
-
//# sourceMappingURL=responsiveness-probe-
|
|
713
|
+
//# sourceMappingURL=responsiveness-probe-ITYPPSHM.js.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
sessionTranscriptDir
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-P6KFZVKA.js";
|
|
4
4
|
|
|
5
5
|
// src/lib/session-auth-dead.ts
|
|
6
6
|
import { closeSync, openSync, readSync, readdirSync, statSync } from "fs";
|
|
@@ -203,4 +203,4 @@ export {
|
|
|
203
203
|
decideSessionAuthState,
|
|
204
204
|
probeSessionAuth
|
|
205
205
|
};
|
|
206
|
-
//# sourceMappingURL=session-auth-dead-
|
|
206
|
+
//# sourceMappingURL=session-auth-dead-Y6ABNWNM.js.map
|