@integrity-labs/agt-cli 0.28.635 → 0.28.637
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-J6KQDGWM.js → chunk-3JBA6RYG.js} +140 -30
- package/dist/{chunk-J6KQDGWM.js.map → chunk-3JBA6RYG.js.map} +1 -1
- package/dist/{chunk-FKG7DIE2.js → chunk-JT2JQUK3.js} +24 -1
- package/dist/{chunk-FKG7DIE2.js.map → chunk-JT2JQUK3.js.map} +1 -1
- package/dist/{chunk-GNTCOXZG.js → chunk-W4GVD3KK.js} +2 -2
- package/dist/{claude-pair-runtime-DWNJWCSU.js → claude-pair-runtime-CE72HQE7.js} +2 -2
- package/dist/lib/manager-worker.js +69 -35
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/augmented-admin.js +1 -1
- package/dist/{persistent-session-ORYBOIBQ.js → persistent-session-SZLOBXBQ.js} +3 -3
- package/dist/{responsiveness-probe-WYCKY2BJ.js → responsiveness-probe-MDPLVVKC.js} +3 -3
- package/dist/{session-auth-dead-NASGEQCA.js → session-auth-dead-ZLENJLLO.js} +2 -2
- package/package.json +1 -1
- /package/dist/{chunk-GNTCOXZG.js.map → chunk-W4GVD3KK.js.map} +0 -0
- /package/dist/{claude-pair-runtime-DWNJWCSU.js.map → claude-pair-runtime-CE72HQE7.js.map} +0 -0
- /package/dist/{persistent-session-ORYBOIBQ.js.map → persistent-session-SZLOBXBQ.js.map} +0 -0
- /package/dist/{responsiveness-probe-WYCKY2BJ.js.map → responsiveness-probe-MDPLVVKC.js.map} +0 -0
- /package/dist/{session-auth-dead-NASGEQCA.js.map → session-auth-dead-ZLENJLLO.js.map} +0 -0
|
@@ -21612,7 +21612,7 @@ server.registerTool(
|
|
|
21612
21612
|
);
|
|
21613
21613
|
server.registerTool(
|
|
21614
21614
|
"debug_get_agent_integrations",
|
|
21615
|
-
{ description: 'Resolve ONE agent\'s EFFECTIVE integration set \u2014 the focused read for "does this agent have integration X, and where is it installed from?" (ENG-8271). Same resolution as `debug_get_agent`\'s `effective_integrations`, without the host/alerts payload.\n\nReturns { agent_id, code_name, team_id, organization_id, effective_integrations: { effective_count, by_scope, inherited_definition_ids, excluded_control_plane_only, shadowed_by_more_specific, duplicate_merge_keys, scopes_queried, scopes_skipped, integrations[] } } - the same `effective_integrations` object `debug_get_agent` returns, so one shape covers both tools. Each entry: { definition_id, display_name, connection_key, scope ("agent" | "team" | "org"), source_id, status, status_message, auth_type, last_connectivity_check_at, last_connectivity_status, consecutive_connectivity_failures, wired_verdict, last_session_tool_bind_at }. Never credentials.\n\nPrefer this over reading `agent_integrations`: TEAM/ORG-scope installs are invisible to a per-agent read, so absence there is not evidence. `effective_count` reconciles against the manager\'s `Integrations provisioned for \'<code_name>\' (N)` or the tool-bind probe\'s `due=N`; docs/runbooks/admin-debug-dogfood.md lists the benign divergences to rule out before treating a mismatch as a bug. `wired_verdict` is the host\'s last session-tool-bind result (bound | missing | unreachable | unknown), the closest available answer to "is it in the agent\'s .mcp.json right now?"
|
|
21615
|
+
{ description: 'Resolve ONE agent\'s EFFECTIVE integration set \u2014 the focused read for "does this agent have integration X, and where is it installed from?" (ENG-8271). Same resolution as `debug_get_agent`\'s `effective_integrations`, without the host/alerts payload.\n\nReturns { agent_id, code_name, team_id, organization_id, effective_integrations: { effective_count, by_scope, inherited_definition_ids, excluded_control_plane_only, shadowed_by_more_specific, duplicate_merge_keys, scopes_queried, scopes_skipped, integrations[] } } - the same `effective_integrations` object `debug_get_agent` returns, so one shape covers both tools. Each entry: { definition_id, display_name, connection_key, scope ("agent" | "team" | "org"), source_id, status, status_message, auth_type, last_connectivity_check_at, last_connectivity_status, consecutive_connectivity_failures, wired_verdict, last_session_tool_bind_at }. Never credentials.\n\nPrefer this over reading `agent_integrations`: TEAM/ORG-scope installs are invisible to a per-agent read, so absence there is not evidence. `effective_count` reconciles against the manager\'s `Integrations provisioned for \'<code_name>\' (N)` or the tool-bind probe\'s `due=N`; docs/runbooks/admin-debug-dogfood.md lists the benign divergences to rule out before treating a mismatch as a bug. `wired_verdict` is the host\'s last session-tool-bind result (bound | missing | unreachable | unknown | not_applicable), the closest available answer to "is it in the agent\'s .mcp.json right now?". ENG-9114: `not_applicable` means the integration has NO .mcp.json server at all - CLI-delivered (github/gh, aws-cli, gcloud) or a builtin served through the platform\'s own MCP server - so "bound" is not a question about it and it is NOT broken. `null` means never probed, which is still NOT "not wired"; once a probe has run against a row, expect one of the five values rather than null.\n\nFails closed (uniform not-found) for an unauthorized/unknown agent; a failed scope query returns an error rather than a smaller count. Audited as a cross-org access. Pass { agent_id }.', inputSchema: getAgentIntegrationsSchema },
|
|
21616
21616
|
async (args) => {
|
|
21617
21617
|
try {
|
|
21618
21618
|
const result = await client.getAgentIntegrations(args.agent_id);
|
|
@@ -43,8 +43,8 @@ import {
|
|
|
43
43
|
writeDirectChatSessionState,
|
|
44
44
|
writeEgressAllowlist,
|
|
45
45
|
writePersistentClaudeWrapper
|
|
46
|
-
} from "./chunk-
|
|
47
|
-
import "./chunk-
|
|
46
|
+
} from "./chunk-W4GVD3KK.js";
|
|
47
|
+
import "./chunk-JT2JQUK3.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-SZLOBXBQ.js.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
2
|
paneLogPath
|
|
3
|
-
} from "./chunk-
|
|
4
|
-
import "./chunk-
|
|
3
|
+
} from "./chunk-W4GVD3KK.js";
|
|
4
|
+
import "./chunk-JT2JQUK3.js";
|
|
5
5
|
import "./chunk-XWVM4KPK.js";
|
|
6
6
|
|
|
7
7
|
// src/lib/responsiveness-probe.ts
|
|
@@ -712,4 +712,4 @@ export {
|
|
|
712
712
|
readAndResetSlackReplyBindingClassifications,
|
|
713
713
|
readAndResetSlackReplyTargetClassifications
|
|
714
714
|
};
|
|
715
|
-
//# sourceMappingURL=responsiveness-probe-
|
|
715
|
+
//# sourceMappingURL=responsiveness-probe-MDPLVVKC.js.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
sessionTranscriptDir
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-JT2JQUK3.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-ZLENJLLO.js.map
|
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|