@integrity-labs/agt-cli 0.26.2 → 0.27.0
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 +58 -16
- package/dist/bin/agt.js.map +1 -1
- package/dist/{chunk-U3HCB23E.js → chunk-BKLEFKUZ.js} +10 -8
- package/dist/chunk-BKLEFKUZ.js.map +1 -0
- package/dist/{chunk-QSDDP7JN.js → chunk-LJZK5RL3.js} +2 -2
- package/dist/{chunk-4CESBZPM.js → chunk-YWXPSVI5.js} +2 -2
- package/dist/{claude-pair-runtime-2NNAUBP3.js → claude-pair-runtime-3UQKYKMO.js} +2 -2
- package/dist/lib/manager-worker.js +7 -7
- package/dist/mcp/direct-chat-channel.js +76 -0
- package/dist/mcp/slack-channel.js +86 -4
- package/dist/mcp/telegram-channel.js +82 -0
- package/dist/{persistent-session-K4X76LLB.js → persistent-session-SE3E72ET.js} +3 -3
- package/dist/{responsiveness-probe-QBV43SJ7.js → responsiveness-probe-MTMEIXEL.js} +3 -3
- package/package.json +1 -1
- package/dist/chunk-U3HCB23E.js.map +0 -1
- /package/dist/{chunk-QSDDP7JN.js.map → chunk-LJZK5RL3.js.map} +0 -0
- /package/dist/{chunk-4CESBZPM.js.map → chunk-YWXPSVI5.js.map} +0 -0
- /package/dist/{claude-pair-runtime-2NNAUBP3.js.map → claude-pair-runtime-3UQKYKMO.js.map} +0 -0
- /package/dist/{persistent-session-K4X76LLB.js.map → persistent-session-SE3E72ET.js.map} +0 -0
- /package/dist/{responsiveness-probe-QBV43SJ7.js.map → responsiveness-probe-MTMEIXEL.js.map} +0 -0
|
@@ -1081,6 +1081,13 @@ var MSTEAMS_SCOPE_PRESETS = {
|
|
|
1081
1081
|
full: MSTEAMS_SCOPE_REGISTRY.map((s) => s.scope)
|
|
1082
1082
|
};
|
|
1083
1083
|
|
|
1084
|
+
// ../../packages/core/dist/alerts/snooze.js
|
|
1085
|
+
var FIXED_SECONDS = {
|
|
1086
|
+
"15m": 15 * 60,
|
|
1087
|
+
"1h": 60 * 60,
|
|
1088
|
+
"4h": 4 * 60 * 60
|
|
1089
|
+
};
|
|
1090
|
+
|
|
1084
1091
|
// ../../packages/core/dist/parser/frontmatter.js
|
|
1085
1092
|
import { parse as parseYaml } from "yaml";
|
|
1086
1093
|
function extractFrontmatter(content) {
|
|
@@ -2094,13 +2101,6 @@ function validateToolsFrontmatter(data) {
|
|
|
2094
2101
|
};
|
|
2095
2102
|
}
|
|
2096
2103
|
|
|
2097
|
-
// ../../packages/core/dist/alerts/snooze.js
|
|
2098
|
-
var FIXED_SECONDS = {
|
|
2099
|
-
"15m": 15 * 60,
|
|
2100
|
-
"1h": 60 * 60,
|
|
2101
|
-
"4h": 4 * 60 * 60
|
|
2102
|
-
};
|
|
2103
|
-
|
|
2104
2104
|
// ../../packages/core/dist/generation/charter-generator.js
|
|
2105
2105
|
import { stringify as stringifyYaml } from "yaml";
|
|
2106
2106
|
function generateCharterMd(input) {
|
|
@@ -2845,6 +2845,7 @@ var ROLE_PERMISSIONS = {
|
|
|
2845
2845
|
"agent.view",
|
|
2846
2846
|
"agent.revoke",
|
|
2847
2847
|
"agent.pause",
|
|
2848
|
+
"agent.impersonate",
|
|
2848
2849
|
"template.manage",
|
|
2849
2850
|
"audit_log.view",
|
|
2850
2851
|
"host.create",
|
|
@@ -2864,6 +2865,7 @@ var ROLE_PERMISSIONS = {
|
|
|
2864
2865
|
"agent.view",
|
|
2865
2866
|
"agent.revoke",
|
|
2866
2867
|
"agent.pause",
|
|
2868
|
+
"agent.impersonate",
|
|
2867
2869
|
"template.manage",
|
|
2868
2870
|
"audit_log.view",
|
|
2869
2871
|
"host.create",
|
|
@@ -3894,4 +3896,4 @@ export {
|
|
|
3894
3896
|
attributeTranscriptUsageByRun,
|
|
3895
3897
|
KANBAN_CHECK_COMMAND
|
|
3896
3898
|
};
|
|
3897
|
-
//# sourceMappingURL=chunk-
|
|
3899
|
+
//# sourceMappingURL=chunk-BKLEFKUZ.js.map
|