@integrity-labs/agt-cli 0.28.580 → 0.28.582
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 +84 -29
- package/dist/bin/agt.js.map +1 -1
- package/dist/{chunk-RC5YRTZU.js → chunk-RDBPQZVG.js} +8 -1
- package/dist/chunk-RDBPQZVG.js.map +1 -0
- package/dist/{chunk-YU2B3L6G.js → chunk-XYWEC7PX.js} +3 -3
- package/dist/chunk-XYWEC7PX.js.map +1 -0
- package/dist/{claude-pair-runtime-44HJ5UBR.js → claude-pair-runtime-MKWK27KO.js} +2 -2
- package/dist/lib/manager-worker.js +10 -10
- package/dist/mcp/direct-chat-channel.js +7 -0
- package/dist/mcp/origami.js +7 -0
- package/dist/mcp/slack-channel.js +7 -0
- package/dist/mcp/telegram-channel.js +7 -0
- package/dist/{persistent-session-TLF2BQRN.js → persistent-session-MHBLUAOV.js} +2 -2
- package/dist/{responsiveness-probe-XEE6AST5.js → responsiveness-probe-XGMKVWSH.js} +2 -2
- package/package.json +1 -1
- package/dist/chunk-RC5YRTZU.js.map +0 -1
- package/dist/chunk-YU2B3L6G.js.map +0 -1
- /package/dist/{claude-pair-runtime-44HJ5UBR.js.map → claude-pair-runtime-MKWK27KO.js.map} +0 -0
- /package/dist/{persistent-session-TLF2BQRN.js.map → persistent-session-MHBLUAOV.js.map} +0 -0
- /package/dist/{responsiveness-probe-XEE6AST5.js.map → responsiveness-probe-XGMKVWSH.js.map} +0 -0
|
@@ -7555,6 +7555,8 @@ var INTEGRATION_REGISTRY = [
|
|
|
7555
7555
|
// credential. NOT a customer integration; do not promote to `published`.
|
|
7556
7556
|
id: "augmented-admin",
|
|
7557
7557
|
name: "Augmented Admin Debug",
|
|
7558
|
+
// ENG-8804: Staff-only cross-org debug surface: never customer-requestable.
|
|
7559
|
+
platform_internal: true,
|
|
7558
7560
|
category: "infrastructure",
|
|
7559
7561
|
description: "Integrity Labs staff-only: cross-org agent/host/integration/alert diagnostics for troubleshooting managed agents.",
|
|
7560
7562
|
supported_auth_types: ["none"],
|
|
@@ -7575,6 +7577,8 @@ var INTEGRATION_REGISTRY = [
|
|
|
7575
7577
|
// attached automatically to system_support agents at provisioning.
|
|
7576
7578
|
id: "augmented-support",
|
|
7577
7579
|
name: "Augmented Support",
|
|
7580
|
+
// ENG-8804: Attached automatically to system_support agents at provisioning.
|
|
7581
|
+
platform_internal: true,
|
|
7578
7582
|
category: "infrastructure",
|
|
7579
7583
|
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.",
|
|
7580
7584
|
supported_auth_types: ["none"],
|
|
@@ -7611,6 +7615,8 @@ var INTEGRATION_REGISTRY = [
|
|
|
7611
7615
|
// surface that names them.
|
|
7612
7616
|
id: "augmented-help-kb",
|
|
7613
7617
|
name: "Augmented Help KB",
|
|
7618
|
+
// ENG-8804: Granted centrally (ENG-8542 auto-grant), never connected by a human.
|
|
7619
|
+
platform_internal: true,
|
|
7614
7620
|
category: "knowledge",
|
|
7615
7621
|
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.",
|
|
7616
7622
|
supported_auth_types: ["none"],
|
|
@@ -7924,6 +7930,7 @@ var integrationMap = new Map(INTEGRATION_REGISTRY.map((i) => [i.id, i]));
|
|
|
7924
7930
|
function getIntegration(id) {
|
|
7925
7931
|
return integrationMap.get(id);
|
|
7926
7932
|
}
|
|
7933
|
+
var PLATFORM_INTERNAL_INTEGRATION_IDS = INTEGRATION_REGISTRY.filter((d) => d.platform_internal === true).map((d) => d.id);
|
|
7927
7934
|
var INSTALLABLE_NATIVE_INTEGRATIONS = INTEGRATION_REGISTRY.filter((d) => d.installable != null).map((d) => ({
|
|
7928
7935
|
id: d.id,
|
|
7929
7936
|
name: d.name,
|
|
@@ -16013,4 +16020,4 @@ export {
|
|
|
16013
16020
|
stopAllSessionsAndWait,
|
|
16014
16021
|
getProjectDir
|
|
16015
16022
|
};
|
|
16016
|
-
//# sourceMappingURL=chunk-
|
|
16023
|
+
//# sourceMappingURL=chunk-RDBPQZVG.js.map
|