@integrity-labs/agt-cli 0.28.568 → 0.28.570

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.
@@ -35211,6 +35211,21 @@ var FLAG_REGISTRY = [
35211
35211
  defaultValue: false,
35212
35212
  public: true
35213
35213
  },
35214
+ {
35215
+ key: "direct-chat-per-user",
35216
+ description: "Scope a STANDARD agent's Direct Chat to the user who had the conversation (ENG-8712). Today two teammates who open the same agent land in the same thread and read each other's messages: the /recent and per-session reads carry no user predicate unless the agent is the per-org system_support concierge. When on, both reads return only sessions the requester authored in PLUS sessions no user has authored in \u2014 the second arm is load-bearing, since every server-originated row (kanban and scheduled-task nudges, integration failures, HITL approvals, degradation alerts) is written as role=user with no user_id and would otherwise vanish from every console (ENG-8431). Does NOT make the thread private in the live direction: assistant replies still fan out on the per-TEAM realtime topic direct-chat-agent:{agentId}, so a teammate holding the drawer open still receives them. Narrowing that topic is follow-up work.",
35217
+ flagType: "boolean",
35218
+ // Declared safe value is `false` — today's team-wide thread. Server-side only
35219
+ // (the two reads in routes/agents.ts); the browser needs no knowledge of it,
35220
+ // so NOT public. No envVar either: this is an org/team-scoped rollout gate
35221
+ // with no host-side consumer, and a declared envVar pinned in sst.config.ts
35222
+ // would make every admin-UI override unreachable (ENG-8303).
35223
+ //
35224
+ // A rollout device, not an undo. Flipping it back off restores the wider read,
35225
+ // but any message written while it was on was still written — and the legacy
35226
+ // backfill in migration 20260812000006 is not reversed by the flag.
35227
+ defaultValue: false
35228
+ },
35214
35229
  {
35215
35230
  key: "onboarding-auto-deploy",
35216
35231
  description: `Auto-deploy the first agent during onboarding (ENG-7378): the agent edit page's Deploy & Test tab fires the existing deploy (draft -> active) automatically once the agent's host is fully deployed (active + manager heartbeating, not provisioning) AND Claude-authenticated (claude_auth_status=valid), replacing the manual "Deploy Agent" click in the recruit funnel. Only draft, non-system_support agents; a failed or timed-out attempt falls back to the manual button (no auto-retry loop).`,
@@ -35371,21 +35386,37 @@ var FLAG_REGISTRY = [
35371
35386
  // by a hand-written process.env gate — so check-new-env-gates.sh stays quiet
35372
35387
  // and the escape hatch still exists for a per-host canary.
35373
35388
  envVar: "AGT_TOOL_CALL_AUDIT_ENABLED",
35374
- // PLACEHOLDER, deliberately unreachable see the identical treatment on
35375
- // `github-broker-credentials` below for the full reasoning. `since` is
35376
- // advisory: it is read only by computeFlagReach behind GET /admin/reach, so
35377
- // it changes what an operator is TOLD and does not itself stop a flip.
35389
+ // The real published version, replacing the deliberately-unreachable
35390
+ // placeholder this flag shipped with. `since` is advisory: it is read only
35391
+ // by computeFlagReach behind GET /flags/admin/reach?key=…, so it changes what an
35392
+ // operator is TOLD and does not itself stop a flip. Omitting it is NOT the
35393
+ // safe default — it resolves to `honors`, reporting every host as honouring
35394
+ // the flip, including hosts whose agt-cli has no reader at all.
35378
35395
  //
35379
- // The host-side reader ships in whichever agt-cli patch the auto-publish
35380
- // cuts after this merges, and that number cannot be known while writing
35381
- // this line. Omitting `since` is NOT the safe default here: it resolves to
35382
- // `honors`, reporting every host as honouring the flip — including hosts
35383
- // whose agt-cli has no reader at all. An unreachable value reports `stale`
35384
- // instead: conservative, and visibly wrong rather than invisibly wrong.
35396
+ // WHAT THIS VERSION HAS TO MEAN. Not "the first build with a reader" — the
35397
+ // first build where flipping the flag does what the flag is documented to
35398
+ // do. Those diverged twice already, in the same direction:
35385
35399
  //
35386
- // BEFORE THIS FLAG IS FLIPPED ANYWHERE: replace this with the first
35387
- // published agt-cli version containing `maybeScanToolCalls`.
35388
- since: "0.29.0"
35400
+ // 0.28.566 (ENG-8575) the first build with a reader. Pinned here and
35401
+ // correct on the day. It has the unbounded scan window and the coverage
35402
+ // rows that overstate (both ENG-8740), and no `logging_mode` enforcement
35403
+ // at all (ENG-8726) — so a hash-only agent on it emits plaintext
35404
+ // `argv0` / `url_host` / `mcp_tool`, which is precisely the governance
35405
+ // breach this epic exists to prevent.
35406
+ // 0.28.569 (ENG-8740) — bounded window, honest coverage intervals. Still
35407
+ // no hash-only enforcement. The pin was NOT moved at that merge and went
35408
+ // stale for a day; reach reported those hosts `honors`.
35409
+ // 0.28.570 (ENG-8726) — hash-only honoured at runtime. Current pin.
35410
+ //
35411
+ // MOVE THIS PIN whenever a change alters what arming the flag DOES on a
35412
+ // host, and verify it against the published tarball rather than inferring it
35413
+ // from the merge — `npm pack @integrity-labs/agt-cli@<v>` and grep
35414
+ // package/dist/lib/manager-worker.js (the manager is the actual reader; the
35415
+ // dist/mcp/* occurrences are bundling artifacts). For 0.28.570 the markers
35416
+ // are `readAgentLoggingMode` and `loggingModeWithholdsTargets`. Auto-publish
35417
+ // patch-bumps from whatever is on main, so if another CLI-touching PR lands
35418
+ // first the real cut is higher than this and the pin under-reports.
35419
+ since: "0.28.570"
35389
35420
  },
35390
35421
  {
35391
35422
  key: "conversation-eval-backend",
@@ -35981,7 +36012,7 @@ var FLAG_REGISTRY = [
35981
36012
  // has no basis for. That is the intended pre-bisect state.
35982
36013
  //
35983
36014
  // BUT `since` IS ADVISORY, NOT A GUARD. It is read in exactly one place -
35984
- // `computeFlagReach` behind GET /admin/reach, which renders the flip-reach
36015
+ // `computeFlagReach` behind GET /flags/admin/reach?key=…, which renders the flip-reach
35985
36016
  // modal. `evaluate.ts` never reads it and neither does the override write
35986
36017
  // path. The placeholder therefore changes what an operator is TOLD; it does
35987
36018
  // not stop a flip on an under-`since` host. What actually holds the line
@@ -41102,6 +41102,21 @@ var FLAG_REGISTRY = [
41102
41102
  defaultValue: false,
41103
41103
  public: true
41104
41104
  },
41105
+ {
41106
+ key: "direct-chat-per-user",
41107
+ description: "Scope a STANDARD agent's Direct Chat to the user who had the conversation (ENG-8712). Today two teammates who open the same agent land in the same thread and read each other's messages: the /recent and per-session reads carry no user predicate unless the agent is the per-org system_support concierge. When on, both reads return only sessions the requester authored in PLUS sessions no user has authored in \u2014 the second arm is load-bearing, since every server-originated row (kanban and scheduled-task nudges, integration failures, HITL approvals, degradation alerts) is written as role=user with no user_id and would otherwise vanish from every console (ENG-8431). Does NOT make the thread private in the live direction: assistant replies still fan out on the per-TEAM realtime topic direct-chat-agent:{agentId}, so a teammate holding the drawer open still receives them. Narrowing that topic is follow-up work.",
41108
+ flagType: "boolean",
41109
+ // Declared safe value is `false` — today's team-wide thread. Server-side only
41110
+ // (the two reads in routes/agents.ts); the browser needs no knowledge of it,
41111
+ // so NOT public. No envVar either: this is an org/team-scoped rollout gate
41112
+ // with no host-side consumer, and a declared envVar pinned in sst.config.ts
41113
+ // would make every admin-UI override unreachable (ENG-8303).
41114
+ //
41115
+ // A rollout device, not an undo. Flipping it back off restores the wider read,
41116
+ // but any message written while it was on was still written — and the legacy
41117
+ // backfill in migration 20260812000006 is not reversed by the flag.
41118
+ defaultValue: false
41119
+ },
41105
41120
  {
41106
41121
  key: "onboarding-auto-deploy",
41107
41122
  description: `Auto-deploy the first agent during onboarding (ENG-7378): the agent edit page's Deploy & Test tab fires the existing deploy (draft -> active) automatically once the agent's host is fully deployed (active + manager heartbeating, not provisioning) AND Claude-authenticated (claude_auth_status=valid), replacing the manual "Deploy Agent" click in the recruit funnel. Only draft, non-system_support agents; a failed or timed-out attempt falls back to the manual button (no auto-retry loop).`,
@@ -41262,21 +41277,37 @@ var FLAG_REGISTRY = [
41262
41277
  // by a hand-written process.env gate — so check-new-env-gates.sh stays quiet
41263
41278
  // and the escape hatch still exists for a per-host canary.
41264
41279
  envVar: "AGT_TOOL_CALL_AUDIT_ENABLED",
41265
- // PLACEHOLDER, deliberately unreachable see the identical treatment on
41266
- // `github-broker-credentials` below for the full reasoning. `since` is
41267
- // advisory: it is read only by computeFlagReach behind GET /admin/reach, so
41268
- // it changes what an operator is TOLD and does not itself stop a flip.
41280
+ // The real published version, replacing the deliberately-unreachable
41281
+ // placeholder this flag shipped with. `since` is advisory: it is read only
41282
+ // by computeFlagReach behind GET /flags/admin/reach?key=…, so it changes what an
41283
+ // operator is TOLD and does not itself stop a flip. Omitting it is NOT the
41284
+ // safe default — it resolves to `honors`, reporting every host as honouring
41285
+ // the flip, including hosts whose agt-cli has no reader at all.
41269
41286
  //
41270
- // The host-side reader ships in whichever agt-cli patch the auto-publish
41271
- // cuts after this merges, and that number cannot be known while writing
41272
- // this line. Omitting `since` is NOT the safe default here: it resolves to
41273
- // `honors`, reporting every host as honouring the flip — including hosts
41274
- // whose agt-cli has no reader at all. An unreachable value reports `stale`
41275
- // instead: conservative, and visibly wrong rather than invisibly wrong.
41287
+ // WHAT THIS VERSION HAS TO MEAN. Not "the first build with a reader" — the
41288
+ // first build where flipping the flag does what the flag is documented to
41289
+ // do. Those diverged twice already, in the same direction:
41276
41290
  //
41277
- // BEFORE THIS FLAG IS FLIPPED ANYWHERE: replace this with the first
41278
- // published agt-cli version containing `maybeScanToolCalls`.
41279
- since: "0.29.0"
41291
+ // 0.28.566 (ENG-8575) the first build with a reader. Pinned here and
41292
+ // correct on the day. It has the unbounded scan window and the coverage
41293
+ // rows that overstate (both ENG-8740), and no `logging_mode` enforcement
41294
+ // at all (ENG-8726) — so a hash-only agent on it emits plaintext
41295
+ // `argv0` / `url_host` / `mcp_tool`, which is precisely the governance
41296
+ // breach this epic exists to prevent.
41297
+ // 0.28.569 (ENG-8740) — bounded window, honest coverage intervals. Still
41298
+ // no hash-only enforcement. The pin was NOT moved at that merge and went
41299
+ // stale for a day; reach reported those hosts `honors`.
41300
+ // 0.28.570 (ENG-8726) — hash-only honoured at runtime. Current pin.
41301
+ //
41302
+ // MOVE THIS PIN whenever a change alters what arming the flag DOES on a
41303
+ // host, and verify it against the published tarball rather than inferring it
41304
+ // from the merge — `npm pack @integrity-labs/agt-cli@<v>` and grep
41305
+ // package/dist/lib/manager-worker.js (the manager is the actual reader; the
41306
+ // dist/mcp/* occurrences are bundling artifacts). For 0.28.570 the markers
41307
+ // are `readAgentLoggingMode` and `loggingModeWithholdsTargets`. Auto-publish
41308
+ // patch-bumps from whatever is on main, so if another CLI-touching PR lands
41309
+ // first the real cut is higher than this and the pin under-reports.
41310
+ since: "0.28.570"
41280
41311
  },
41281
41312
  {
41282
41313
  key: "conversation-eval-backend",
@@ -41872,7 +41903,7 @@ var FLAG_REGISTRY = [
41872
41903
  // has no basis for. That is the intended pre-bisect state.
41873
41904
  //
41874
41905
  // BUT `since` IS ADVISORY, NOT A GUARD. It is read in exactly one place -
41875
- // `computeFlagReach` behind GET /admin/reach, which renders the flip-reach
41906
+ // `computeFlagReach` behind GET /flags/admin/reach?key=…, which renders the flip-reach
41876
41907
  // modal. `evaluate.ts` never reads it and neither does the override write
41877
41908
  // path. The placeholder therefore changes what an operator is TOLD; it does
41878
41909
  // not stop a flip on an under-`since` host. What actually holds the line
@@ -35547,6 +35547,21 @@ var FLAG_REGISTRY = [
35547
35547
  defaultValue: false,
35548
35548
  public: true
35549
35549
  },
35550
+ {
35551
+ key: "direct-chat-per-user",
35552
+ description: "Scope a STANDARD agent's Direct Chat to the user who had the conversation (ENG-8712). Today two teammates who open the same agent land in the same thread and read each other's messages: the /recent and per-session reads carry no user predicate unless the agent is the per-org system_support concierge. When on, both reads return only sessions the requester authored in PLUS sessions no user has authored in \u2014 the second arm is load-bearing, since every server-originated row (kanban and scheduled-task nudges, integration failures, HITL approvals, degradation alerts) is written as role=user with no user_id and would otherwise vanish from every console (ENG-8431). Does NOT make the thread private in the live direction: assistant replies still fan out on the per-TEAM realtime topic direct-chat-agent:{agentId}, so a teammate holding the drawer open still receives them. Narrowing that topic is follow-up work.",
35553
+ flagType: "boolean",
35554
+ // Declared safe value is `false` — today's team-wide thread. Server-side only
35555
+ // (the two reads in routes/agents.ts); the browser needs no knowledge of it,
35556
+ // so NOT public. No envVar either: this is an org/team-scoped rollout gate
35557
+ // with no host-side consumer, and a declared envVar pinned in sst.config.ts
35558
+ // would make every admin-UI override unreachable (ENG-8303).
35559
+ //
35560
+ // A rollout device, not an undo. Flipping it back off restores the wider read,
35561
+ // but any message written while it was on was still written — and the legacy
35562
+ // backfill in migration 20260812000006 is not reversed by the flag.
35563
+ defaultValue: false
35564
+ },
35550
35565
  {
35551
35566
  key: "onboarding-auto-deploy",
35552
35567
  description: `Auto-deploy the first agent during onboarding (ENG-7378): the agent edit page's Deploy & Test tab fires the existing deploy (draft -> active) automatically once the agent's host is fully deployed (active + manager heartbeating, not provisioning) AND Claude-authenticated (claude_auth_status=valid), replacing the manual "Deploy Agent" click in the recruit funnel. Only draft, non-system_support agents; a failed or timed-out attempt falls back to the manual button (no auto-retry loop).`,
@@ -35707,21 +35722,37 @@ var FLAG_REGISTRY = [
35707
35722
  // by a hand-written process.env gate — so check-new-env-gates.sh stays quiet
35708
35723
  // and the escape hatch still exists for a per-host canary.
35709
35724
  envVar: "AGT_TOOL_CALL_AUDIT_ENABLED",
35710
- // PLACEHOLDER, deliberately unreachable see the identical treatment on
35711
- // `github-broker-credentials` below for the full reasoning. `since` is
35712
- // advisory: it is read only by computeFlagReach behind GET /admin/reach, so
35713
- // it changes what an operator is TOLD and does not itself stop a flip.
35725
+ // The real published version, replacing the deliberately-unreachable
35726
+ // placeholder this flag shipped with. `since` is advisory: it is read only
35727
+ // by computeFlagReach behind GET /flags/admin/reach?key=…, so it changes what an
35728
+ // operator is TOLD and does not itself stop a flip. Omitting it is NOT the
35729
+ // safe default — it resolves to `honors`, reporting every host as honouring
35730
+ // the flip, including hosts whose agt-cli has no reader at all.
35714
35731
  //
35715
- // The host-side reader ships in whichever agt-cli patch the auto-publish
35716
- // cuts after this merges, and that number cannot be known while writing
35717
- // this line. Omitting `since` is NOT the safe default here: it resolves to
35718
- // `honors`, reporting every host as honouring the flip — including hosts
35719
- // whose agt-cli has no reader at all. An unreachable value reports `stale`
35720
- // instead: conservative, and visibly wrong rather than invisibly wrong.
35732
+ // WHAT THIS VERSION HAS TO MEAN. Not "the first build with a reader" — the
35733
+ // first build where flipping the flag does what the flag is documented to
35734
+ // do. Those diverged twice already, in the same direction:
35721
35735
  //
35722
- // BEFORE THIS FLAG IS FLIPPED ANYWHERE: replace this with the first
35723
- // published agt-cli version containing `maybeScanToolCalls`.
35724
- since: "0.29.0"
35736
+ // 0.28.566 (ENG-8575) the first build with a reader. Pinned here and
35737
+ // correct on the day. It has the unbounded scan window and the coverage
35738
+ // rows that overstate (both ENG-8740), and no `logging_mode` enforcement
35739
+ // at all (ENG-8726) — so a hash-only agent on it emits plaintext
35740
+ // `argv0` / `url_host` / `mcp_tool`, which is precisely the governance
35741
+ // breach this epic exists to prevent.
35742
+ // 0.28.569 (ENG-8740) — bounded window, honest coverage intervals. Still
35743
+ // no hash-only enforcement. The pin was NOT moved at that merge and went
35744
+ // stale for a day; reach reported those hosts `honors`.
35745
+ // 0.28.570 (ENG-8726) — hash-only honoured at runtime. Current pin.
35746
+ //
35747
+ // MOVE THIS PIN whenever a change alters what arming the flag DOES on a
35748
+ // host, and verify it against the published tarball rather than inferring it
35749
+ // from the merge — `npm pack @integrity-labs/agt-cli@<v>` and grep
35750
+ // package/dist/lib/manager-worker.js (the manager is the actual reader; the
35751
+ // dist/mcp/* occurrences are bundling artifacts). For 0.28.570 the markers
35752
+ // are `readAgentLoggingMode` and `loggingModeWithholdsTargets`. Auto-publish
35753
+ // patch-bumps from whatever is on main, so if another CLI-touching PR lands
35754
+ // first the real cut is higher than this and the pin under-reports.
35755
+ since: "0.28.570"
35725
35756
  },
35726
35757
  {
35727
35758
  key: "conversation-eval-backend",
@@ -36317,7 +36348,7 @@ var FLAG_REGISTRY = [
36317
36348
  // has no basis for. That is the intended pre-bisect state.
36318
36349
  //
36319
36350
  // BUT `since` IS ADVISORY, NOT A GUARD. It is read in exactly one place -
36320
- // `computeFlagReach` behind GET /admin/reach, which renders the flip-reach
36351
+ // `computeFlagReach` behind GET /flags/admin/reach?key=…, which renders the flip-reach
36321
36352
  // modal. `evaluate.ts` never reads it and neither does the override write
36322
36353
  // path. The placeholder therefore changes what an operator is TOLD; it does
36323
36354
  // not stop a flip on an under-`since` host. What actually holds the line
@@ -35706,6 +35706,21 @@ var FLAG_REGISTRY = [
35706
35706
  defaultValue: false,
35707
35707
  public: true
35708
35708
  },
35709
+ {
35710
+ key: "direct-chat-per-user",
35711
+ description: "Scope a STANDARD agent's Direct Chat to the user who had the conversation (ENG-8712). Today two teammates who open the same agent land in the same thread and read each other's messages: the /recent and per-session reads carry no user predicate unless the agent is the per-org system_support concierge. When on, both reads return only sessions the requester authored in PLUS sessions no user has authored in \u2014 the second arm is load-bearing, since every server-originated row (kanban and scheduled-task nudges, integration failures, HITL approvals, degradation alerts) is written as role=user with no user_id and would otherwise vanish from every console (ENG-8431). Does NOT make the thread private in the live direction: assistant replies still fan out on the per-TEAM realtime topic direct-chat-agent:{agentId}, so a teammate holding the drawer open still receives them. Narrowing that topic is follow-up work.",
35712
+ flagType: "boolean",
35713
+ // Declared safe value is `false` — today's team-wide thread. Server-side only
35714
+ // (the two reads in routes/agents.ts); the browser needs no knowledge of it,
35715
+ // so NOT public. No envVar either: this is an org/team-scoped rollout gate
35716
+ // with no host-side consumer, and a declared envVar pinned in sst.config.ts
35717
+ // would make every admin-UI override unreachable (ENG-8303).
35718
+ //
35719
+ // A rollout device, not an undo. Flipping it back off restores the wider read,
35720
+ // but any message written while it was on was still written — and the legacy
35721
+ // backfill in migration 20260812000006 is not reversed by the flag.
35722
+ defaultValue: false
35723
+ },
35709
35724
  {
35710
35725
  key: "onboarding-auto-deploy",
35711
35726
  description: `Auto-deploy the first agent during onboarding (ENG-7378): the agent edit page's Deploy & Test tab fires the existing deploy (draft -> active) automatically once the agent's host is fully deployed (active + manager heartbeating, not provisioning) AND Claude-authenticated (claude_auth_status=valid), replacing the manual "Deploy Agent" click in the recruit funnel. Only draft, non-system_support agents; a failed or timed-out attempt falls back to the manual button (no auto-retry loop).`,
@@ -35866,21 +35881,37 @@ var FLAG_REGISTRY = [
35866
35881
  // by a hand-written process.env gate — so check-new-env-gates.sh stays quiet
35867
35882
  // and the escape hatch still exists for a per-host canary.
35868
35883
  envVar: "AGT_TOOL_CALL_AUDIT_ENABLED",
35869
- // PLACEHOLDER, deliberately unreachable see the identical treatment on
35870
- // `github-broker-credentials` below for the full reasoning. `since` is
35871
- // advisory: it is read only by computeFlagReach behind GET /admin/reach, so
35872
- // it changes what an operator is TOLD and does not itself stop a flip.
35884
+ // The real published version, replacing the deliberately-unreachable
35885
+ // placeholder this flag shipped with. `since` is advisory: it is read only
35886
+ // by computeFlagReach behind GET /flags/admin/reach?key=…, so it changes what an
35887
+ // operator is TOLD and does not itself stop a flip. Omitting it is NOT the
35888
+ // safe default — it resolves to `honors`, reporting every host as honouring
35889
+ // the flip, including hosts whose agt-cli has no reader at all.
35873
35890
  //
35874
- // The host-side reader ships in whichever agt-cli patch the auto-publish
35875
- // cuts after this merges, and that number cannot be known while writing
35876
- // this line. Omitting `since` is NOT the safe default here: it resolves to
35877
- // `honors`, reporting every host as honouring the flip — including hosts
35878
- // whose agt-cli has no reader at all. An unreachable value reports `stale`
35879
- // instead: conservative, and visibly wrong rather than invisibly wrong.
35891
+ // WHAT THIS VERSION HAS TO MEAN. Not "the first build with a reader" — the
35892
+ // first build where flipping the flag does what the flag is documented to
35893
+ // do. Those diverged twice already, in the same direction:
35880
35894
  //
35881
- // BEFORE THIS FLAG IS FLIPPED ANYWHERE: replace this with the first
35882
- // published agt-cli version containing `maybeScanToolCalls`.
35883
- since: "0.29.0"
35895
+ // 0.28.566 (ENG-8575) the first build with a reader. Pinned here and
35896
+ // correct on the day. It has the unbounded scan window and the coverage
35897
+ // rows that overstate (both ENG-8740), and no `logging_mode` enforcement
35898
+ // at all (ENG-8726) — so a hash-only agent on it emits plaintext
35899
+ // `argv0` / `url_host` / `mcp_tool`, which is precisely the governance
35900
+ // breach this epic exists to prevent.
35901
+ // 0.28.569 (ENG-8740) — bounded window, honest coverage intervals. Still
35902
+ // no hash-only enforcement. The pin was NOT moved at that merge and went
35903
+ // stale for a day; reach reported those hosts `honors`.
35904
+ // 0.28.570 (ENG-8726) — hash-only honoured at runtime. Current pin.
35905
+ //
35906
+ // MOVE THIS PIN whenever a change alters what arming the flag DOES on a
35907
+ // host, and verify it against the published tarball rather than inferring it
35908
+ // from the merge — `npm pack @integrity-labs/agt-cli@<v>` and grep
35909
+ // package/dist/lib/manager-worker.js (the manager is the actual reader; the
35910
+ // dist/mcp/* occurrences are bundling artifacts). For 0.28.570 the markers
35911
+ // are `readAgentLoggingMode` and `loggingModeWithholdsTargets`. Auto-publish
35912
+ // patch-bumps from whatever is on main, so if another CLI-touching PR lands
35913
+ // first the real cut is higher than this and the pin under-reports.
35914
+ since: "0.28.570"
35884
35915
  },
35885
35916
  {
35886
35917
  key: "conversation-eval-backend",
@@ -36476,7 +36507,7 @@ var FLAG_REGISTRY = [
36476
36507
  // has no basis for. That is the intended pre-bisect state.
36477
36508
  //
36478
36509
  // BUT `since` IS ADVISORY, NOT A GUARD. It is read in exactly one place -
36479
- // `computeFlagReach` behind GET /admin/reach, which renders the flip-reach
36510
+ // `computeFlagReach` behind GET /flags/admin/reach?key=…, which renders the flip-reach
36480
36511
  // modal. `evaluate.ts` never reads it and neither does the override write
36481
36512
  // path. The placeholder therefore changes what an operator is TOLD; it does
36482
36513
  // not stop a flip on an under-`since` host. What actually holds the line
@@ -41,7 +41,7 @@ import {
41
41
  writeDirectChatSessionState,
42
42
  writeEgressAllowlist,
43
43
  writePersistentClaudeWrapper
44
- } from "./chunk-FSWAPB5J.js";
44
+ } from "./chunk-6XCGZUSS.js";
45
45
  import "./chunk-XWVM4KPK.js";
46
46
  export {
47
47
  EGRESS_BASELINE_DOMAINS,
@@ -87,4 +87,4 @@ export {
87
87
  writeEgressAllowlist,
88
88
  writePersistentClaudeWrapper
89
89
  };
90
- //# sourceMappingURL=persistent-session-DVTSZAPE.js.map
90
+ //# sourceMappingURL=persistent-session-HY6GUPBQ.js.map
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  paneLogPath
3
- } from "./chunk-FSWAPB5J.js";
3
+ } from "./chunk-6XCGZUSS.js";
4
4
  import "./chunk-XWVM4KPK.js";
5
5
 
6
6
  // src/lib/responsiveness-probe.ts
@@ -689,4 +689,4 @@ export {
689
689
  readAndResetSlackReplyBindingClassifications,
690
690
  readAndResetSlackReplyTargetClassifications
691
691
  };
692
- //# sourceMappingURL=responsiveness-probe-KEFPJXQ6.js.map
692
+ //# sourceMappingURL=responsiveness-probe-6EEZKJVV.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@integrity-labs/agt-cli",
3
- "version": "0.28.568",
3
+ "version": "0.28.570",
4
4
  "description": "Augmented Team CLI — agent provisioning and management",
5
5
  "type": "module",
6
6
  "engines": {