@integrity-labs/agt-cli 0.28.579 → 0.28.581

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.
@@ -33459,6 +33459,8 @@ var INTEGRATION_REGISTRY = [
33459
33459
  // credential. NOT a customer integration; do not promote to `published`.
33460
33460
  id: "augmented-admin",
33461
33461
  name: "Augmented Admin Debug",
33462
+ // ENG-8804: Staff-only cross-org debug surface: never customer-requestable.
33463
+ platform_internal: true,
33462
33464
  category: "infrastructure",
33463
33465
  description: "Integrity Labs staff-only: cross-org agent/host/integration/alert diagnostics for troubleshooting managed agents.",
33464
33466
  supported_auth_types: ["none"],
@@ -33479,6 +33481,8 @@ var INTEGRATION_REGISTRY = [
33479
33481
  // attached automatically to system_support agents at provisioning.
33480
33482
  id: "augmented-support",
33481
33483
  name: "Augmented Support",
33484
+ // ENG-8804: Attached automatically to system_support agents at provisioning.
33485
+ platform_internal: true,
33482
33486
  category: "infrastructure",
33483
33487
  description: "Per-org self-troubleshoot concierge: reads your org's agents, hosts, integrations, alerts, flags, and audit log, files support/feature requests, and proposes new agents for human approval - all scoped to your own organization.",
33484
33488
  supported_auth_types: ["none"],
@@ -33515,6 +33519,8 @@ var INTEGRATION_REGISTRY = [
33515
33519
  // surface that names them.
33516
33520
  id: "augmented-help-kb",
33517
33521
  name: "Augmented Help KB",
33522
+ // ENG-8804: Granted centrally (ENG-8542 auto-grant), never connected by a human.
33523
+ platform_internal: true,
33518
33524
  category: "knowledge",
33519
33525
  description: "The Augmented Team help knowledge base: search and read the shared, published product documentation (how-tos, common fixes, FAQs). Identical for every organization and org-neutral by design - it grants no view of your org's own state, and cannot file tickets or propose changes. Distinct from your organization's own knowledge store.",
33520
33526
  supported_auth_types: ["none"],
@@ -33825,6 +33831,7 @@ var INTEGRATION_REGISTRY = [
33825
33831
  }
33826
33832
  ];
33827
33833
  var integrationMap = new Map(INTEGRATION_REGISTRY.map((i) => [i.id, i]));
33834
+ var PLATFORM_INTERNAL_INTEGRATION_IDS = INTEGRATION_REGISTRY.filter((d) => d.platform_internal === true).map((d) => d.id);
33828
33835
  var INSTALLABLE_NATIVE_INTEGRATIONS = INTEGRATION_REGISTRY.filter((d) => d.installable != null).map((d) => ({
33829
33836
  id: d.id,
33830
33837
  name: d.name,
@@ -39797,6 +39797,8 @@ var INTEGRATION_REGISTRY = [
39797
39797
  // credential. NOT a customer integration; do not promote to `published`.
39798
39798
  id: "augmented-admin",
39799
39799
  name: "Augmented Admin Debug",
39800
+ // ENG-8804: Staff-only cross-org debug surface: never customer-requestable.
39801
+ platform_internal: true,
39800
39802
  category: "infrastructure",
39801
39803
  description: "Integrity Labs staff-only: cross-org agent/host/integration/alert diagnostics for troubleshooting managed agents.",
39802
39804
  supported_auth_types: ["none"],
@@ -39817,6 +39819,8 @@ var INTEGRATION_REGISTRY = [
39817
39819
  // attached automatically to system_support agents at provisioning.
39818
39820
  id: "augmented-support",
39819
39821
  name: "Augmented Support",
39822
+ // ENG-8804: Attached automatically to system_support agents at provisioning.
39823
+ platform_internal: true,
39820
39824
  category: "infrastructure",
39821
39825
  description: "Per-org self-troubleshoot concierge: reads your org's agents, hosts, integrations, alerts, flags, and audit log, files support/feature requests, and proposes new agents for human approval - all scoped to your own organization.",
39822
39826
  supported_auth_types: ["none"],
@@ -39853,6 +39857,8 @@ var INTEGRATION_REGISTRY = [
39853
39857
  // surface that names them.
39854
39858
  id: "augmented-help-kb",
39855
39859
  name: "Augmented Help KB",
39860
+ // ENG-8804: Granted centrally (ENG-8542 auto-grant), never connected by a human.
39861
+ platform_internal: true,
39856
39862
  category: "knowledge",
39857
39863
  description: "The Augmented Team help knowledge base: search and read the shared, published product documentation (how-tos, common fixes, FAQs). Identical for every organization and org-neutral by design - it grants no view of your org's own state, and cannot file tickets or propose changes. Distinct from your organization's own knowledge store.",
39858
39864
  supported_auth_types: ["none"],
@@ -40163,6 +40169,7 @@ var INTEGRATION_REGISTRY = [
40163
40169
  }
40164
40170
  ];
40165
40171
  var integrationMap = new Map(INTEGRATION_REGISTRY.map((i) => [i.id, i]));
40172
+ var PLATFORM_INTERNAL_INTEGRATION_IDS = INTEGRATION_REGISTRY.filter((d) => d.platform_internal === true).map((d) => d.id);
40166
40173
  var INSTALLABLE_NATIVE_INTEGRATIONS = INTEGRATION_REGISTRY.filter((d) => d.installable != null).map((d) => ({
40167
40174
  id: d.id,
40168
40175
  name: d.name,
@@ -33848,6 +33848,8 @@ var INTEGRATION_REGISTRY = [
33848
33848
  // credential. NOT a customer integration; do not promote to `published`.
33849
33849
  id: "augmented-admin",
33850
33850
  name: "Augmented Admin Debug",
33851
+ // ENG-8804: Staff-only cross-org debug surface: never customer-requestable.
33852
+ platform_internal: true,
33851
33853
  category: "infrastructure",
33852
33854
  description: "Integrity Labs staff-only: cross-org agent/host/integration/alert diagnostics for troubleshooting managed agents.",
33853
33855
  supported_auth_types: ["none"],
@@ -33868,6 +33870,8 @@ var INTEGRATION_REGISTRY = [
33868
33870
  // attached automatically to system_support agents at provisioning.
33869
33871
  id: "augmented-support",
33870
33872
  name: "Augmented Support",
33873
+ // ENG-8804: Attached automatically to system_support agents at provisioning.
33874
+ platform_internal: true,
33871
33875
  category: "infrastructure",
33872
33876
  description: "Per-org self-troubleshoot concierge: reads your org's agents, hosts, integrations, alerts, flags, and audit log, files support/feature requests, and proposes new agents for human approval - all scoped to your own organization.",
33873
33877
  supported_auth_types: ["none"],
@@ -33904,6 +33908,8 @@ var INTEGRATION_REGISTRY = [
33904
33908
  // surface that names them.
33905
33909
  id: "augmented-help-kb",
33906
33910
  name: "Augmented Help KB",
33911
+ // ENG-8804: Granted centrally (ENG-8542 auto-grant), never connected by a human.
33912
+ platform_internal: true,
33907
33913
  category: "knowledge",
33908
33914
  description: "The Augmented Team help knowledge base: search and read the shared, published product documentation (how-tos, common fixes, FAQs). Identical for every organization and org-neutral by design - it grants no view of your org's own state, and cannot file tickets or propose changes. Distinct from your organization's own knowledge store.",
33909
33915
  supported_auth_types: ["none"],
@@ -34214,6 +34220,7 @@ var INTEGRATION_REGISTRY = [
34214
34220
  }
34215
34221
  ];
34216
34222
  var integrationMap = new Map(INTEGRATION_REGISTRY.map((i) => [i.id, i]));
34223
+ var PLATFORM_INTERNAL_INTEGRATION_IDS = INTEGRATION_REGISTRY.filter((d) => d.platform_internal === true).map((d) => d.id);
34217
34224
  var INSTALLABLE_NATIVE_INTEGRATIONS = INTEGRATION_REGISTRY.filter((d) => d.installable != null).map((d) => ({
34218
34225
  id: d.id,
34219
34226
  name: d.name,
@@ -34007,6 +34007,8 @@ var INTEGRATION_REGISTRY = [
34007
34007
  // credential. NOT a customer integration; do not promote to `published`.
34008
34008
  id: "augmented-admin",
34009
34009
  name: "Augmented Admin Debug",
34010
+ // ENG-8804: Staff-only cross-org debug surface: never customer-requestable.
34011
+ platform_internal: true,
34010
34012
  category: "infrastructure",
34011
34013
  description: "Integrity Labs staff-only: cross-org agent/host/integration/alert diagnostics for troubleshooting managed agents.",
34012
34014
  supported_auth_types: ["none"],
@@ -34027,6 +34029,8 @@ var INTEGRATION_REGISTRY = [
34027
34029
  // attached automatically to system_support agents at provisioning.
34028
34030
  id: "augmented-support",
34029
34031
  name: "Augmented Support",
34032
+ // ENG-8804: Attached automatically to system_support agents at provisioning.
34033
+ platform_internal: true,
34030
34034
  category: "infrastructure",
34031
34035
  description: "Per-org self-troubleshoot concierge: reads your org's agents, hosts, integrations, alerts, flags, and audit log, files support/feature requests, and proposes new agents for human approval - all scoped to your own organization.",
34032
34036
  supported_auth_types: ["none"],
@@ -34063,6 +34067,8 @@ var INTEGRATION_REGISTRY = [
34063
34067
  // surface that names them.
34064
34068
  id: "augmented-help-kb",
34065
34069
  name: "Augmented Help KB",
34070
+ // ENG-8804: Granted centrally (ENG-8542 auto-grant), never connected by a human.
34071
+ platform_internal: true,
34066
34072
  category: "knowledge",
34067
34073
  description: "The Augmented Team help knowledge base: search and read the shared, published product documentation (how-tos, common fixes, FAQs). Identical for every organization and org-neutral by design - it grants no view of your org's own state, and cannot file tickets or propose changes. Distinct from your organization's own knowledge store.",
34068
34074
  supported_auth_types: ["none"],
@@ -34373,6 +34379,7 @@ var INTEGRATION_REGISTRY = [
34373
34379
  }
34374
34380
  ];
34375
34381
  var integrationMap = new Map(INTEGRATION_REGISTRY.map((i) => [i.id, i]));
34382
+ var PLATFORM_INTERNAL_INTEGRATION_IDS = INTEGRATION_REGISTRY.filter((d) => d.platform_internal === true).map((d) => d.id);
34376
34383
  var INSTALLABLE_NATIVE_INTEGRATIONS = INTEGRATION_REGISTRY.filter((d) => d.installable != null).map((d) => ({
34377
34384
  id: d.id,
34378
34385
  name: d.name,
@@ -43,7 +43,7 @@ import {
43
43
  writeDirectChatSessionState,
44
44
  writeEgressAllowlist,
45
45
  writePersistentClaudeWrapper
46
- } from "./chunk-RC5YRTZU.js";
46
+ } from "./chunk-RDBPQZVG.js";
47
47
  import "./chunk-XWVM4KPK.js";
48
48
  export {
49
49
  EGRESS_BASELINE_DOMAINS,
@@ -91,4 +91,4 @@ export {
91
91
  writeEgressAllowlist,
92
92
  writePersistentClaudeWrapper
93
93
  };
94
- //# sourceMappingURL=persistent-session-TLF2BQRN.js.map
94
+ //# sourceMappingURL=persistent-session-MHBLUAOV.js.map
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  paneLogPath
3
- } from "./chunk-RC5YRTZU.js";
3
+ } from "./chunk-RDBPQZVG.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-XEE6AST5.js.map
692
+ //# sourceMappingURL=responsiveness-probe-XGMKVWSH.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@integrity-labs/agt-cli",
3
- "version": "0.28.579",
3
+ "version": "0.28.581",
4
4
  "description": "Augmented Team CLI — agent provisioning and management",
5
5
  "type": "module",
6
6
  "engines": {