@integrity-labs/agt-cli 0.28.321 → 0.28.323
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 +4 -4
- package/dist/{chunk-NAS4DZNG.js → chunk-JTQ6RYGM.js} +17 -12
- package/dist/chunk-JTQ6RYGM.js.map +1 -0
- package/dist/{chunk-52RHLSXN.js → chunk-MLXFGOLB.js} +8536 -8536
- package/dist/chunk-MLXFGOLB.js.map +1 -0
- package/dist/{claude-pair-runtime-DO6OWWGD.js → claude-pair-runtime-JSOSBAH3.js} +2 -2
- package/dist/lib/manager-worker.js +252 -171
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/origami.js +5 -0
- package/dist/mcp/slack-channel.js +116 -13
- package/dist/{persistent-session-ZQSAZIVM.js → persistent-session-5FKI4NCL.js} +2 -2
- package/dist/{responsiveness-probe-NARLJJGH.js → responsiveness-probe-R42UJ5ZR.js} +2 -2
- package/package.json +1 -1
- package/dist/chunk-52RHLSXN.js.map +0 -1
- package/dist/chunk-NAS4DZNG.js.map +0 -1
- /package/dist/{claude-pair-runtime-DO6OWWGD.js.map → claude-pair-runtime-JSOSBAH3.js.map} +0 -0
- /package/dist/{persistent-session-ZQSAZIVM.js.map → persistent-session-5FKI4NCL.js.map} +0 -0
- /package/dist/{responsiveness-probe-NARLJJGH.js.map → responsiveness-probe-R42UJ5ZR.js.map} +0 -0
package/dist/bin/agt.js
CHANGED
|
@@ -38,7 +38,7 @@ import {
|
|
|
38
38
|
success,
|
|
39
39
|
table,
|
|
40
40
|
warn
|
|
41
|
-
} from "../chunk-
|
|
41
|
+
} from "../chunk-MLXFGOLB.js";
|
|
42
42
|
import {
|
|
43
43
|
AnchorSessionClient,
|
|
44
44
|
CHANNEL_REGISTRY,
|
|
@@ -68,7 +68,7 @@ import {
|
|
|
68
68
|
renderTemplate,
|
|
69
69
|
resolveChannels,
|
|
70
70
|
serializeManifestForSlackCli
|
|
71
|
-
} from "../chunk-
|
|
71
|
+
} from "../chunk-JTQ6RYGM.js";
|
|
72
72
|
import "../chunk-XWVM4KPK.js";
|
|
73
73
|
|
|
74
74
|
// src/bin/agt.ts
|
|
@@ -4827,7 +4827,7 @@ import { execFileSync, execSync } from "child_process";
|
|
|
4827
4827
|
import { existsSync as existsSync10, realpathSync as realpathSync2 } from "fs";
|
|
4828
4828
|
import chalk18 from "chalk";
|
|
4829
4829
|
import ora16 from "ora";
|
|
4830
|
-
var cliVersion = true ? "0.28.
|
|
4830
|
+
var cliVersion = true ? "0.28.323" : "dev";
|
|
4831
4831
|
async function fetchLatestVersion() {
|
|
4832
4832
|
const host2 = getHost();
|
|
4833
4833
|
if (!host2) return null;
|
|
@@ -5931,7 +5931,7 @@ function handleError(err) {
|
|
|
5931
5931
|
}
|
|
5932
5932
|
|
|
5933
5933
|
// src/bin/agt.ts
|
|
5934
|
-
var cliVersion2 = true ? "0.28.
|
|
5934
|
+
var cliVersion2 = true ? "0.28.323" : "dev";
|
|
5935
5935
|
var program = new Command();
|
|
5936
5936
|
program.name("agt").description("Augmented CLI \u2014 agent provisioning and management").version(cliVersion2).option("--json", "Emit machine-readable JSON output (suppress spinners and colors)").option("--skip-update-check", "Skip the automatic update check on startup");
|
|
5937
5937
|
program.hook("preAction", async (thisCommand, actionCommand) => {
|
|
@@ -1418,6 +1418,11 @@ var DEFAULT_SCOPES = [
|
|
|
1418
1418
|
"reactions:read",
|
|
1419
1419
|
"reactions:write",
|
|
1420
1420
|
"users:read",
|
|
1421
|
+
// ENG-7791: needed so users.info returns the sender's email, the join key that
|
|
1422
|
+
// links an inbound Slack sender to their organization_people record (inbound
|
|
1423
|
+
// identity reconcile). Existing installs without it degrade gracefully - the
|
|
1424
|
+
// reconcile no-ops until the bot is re-authorised with the wider scope set.
|
|
1425
|
+
"users:read.email",
|
|
1421
1426
|
"users.profile:write"
|
|
1422
1427
|
];
|
|
1423
1428
|
function getDefaultSlackScopes() {
|
|
@@ -9897,19 +9902,8 @@ function getProjectDir(codeName) {
|
|
|
9897
9902
|
}
|
|
9898
9903
|
|
|
9899
9904
|
export {
|
|
9900
|
-
isUnsetTimezone,
|
|
9901
|
-
resolveAgentTimezone,
|
|
9902
|
-
wrapScheduledTaskPrompt,
|
|
9903
|
-
buildScheduledTaskContextBlocks,
|
|
9904
9905
|
DEFAULT_FRAMEWORK,
|
|
9905
9906
|
isDeprecatedFramework,
|
|
9906
|
-
registerFramework,
|
|
9907
|
-
getFramework,
|
|
9908
|
-
MAX_AVATAR_ENV_URL_BYTES,
|
|
9909
|
-
resolveAvatarEnvUrl,
|
|
9910
|
-
INTEGRATION_REGISTRY,
|
|
9911
|
-
getIntegration,
|
|
9912
|
-
OAUTH_PROVIDERS,
|
|
9913
9907
|
formatActorId,
|
|
9914
9908
|
isSelfCompletion,
|
|
9915
9909
|
classifyActor,
|
|
@@ -9934,19 +9928,30 @@ export {
|
|
|
9934
9928
|
renderTemplate,
|
|
9935
9929
|
DEPLOYMENT_TEMPLATES,
|
|
9936
9930
|
getTemplate,
|
|
9931
|
+
registerFramework,
|
|
9932
|
+
getFramework,
|
|
9933
|
+
MAX_AVATAR_ENV_URL_BYTES,
|
|
9934
|
+
resolveAvatarEnvUrl,
|
|
9937
9935
|
StreamEncoder,
|
|
9936
|
+
OAUTH_PROVIDERS,
|
|
9938
9937
|
worseConnectivityOutcome,
|
|
9939
9938
|
resolveConnectivityProbe,
|
|
9940
9939
|
probeMcpHttp,
|
|
9941
9940
|
probeComposioAccount,
|
|
9942
9941
|
probeComposioMcpToolCall,
|
|
9943
9942
|
probeHttpProvider,
|
|
9943
|
+
INTEGRATION_REGISTRY,
|
|
9944
|
+
getIntegration,
|
|
9944
9945
|
AnchorSessionClient,
|
|
9945
9946
|
isOnboardingArea,
|
|
9946
9947
|
describeOnboardingChannel,
|
|
9947
9948
|
coerceOnboardingState,
|
|
9949
|
+
isUnsetTimezone,
|
|
9950
|
+
resolveAgentTimezone,
|
|
9948
9951
|
laneTagFragment,
|
|
9949
9952
|
detectDrift,
|
|
9953
|
+
wrapScheduledTaskPrompt,
|
|
9954
|
+
buildScheduledTaskContextBlocks,
|
|
9950
9955
|
SUPPRESS_SENTINEL,
|
|
9951
9956
|
classifyOutput,
|
|
9952
9957
|
isVacuousDeliverReason,
|
|
@@ -10027,4 +10032,4 @@ export {
|
|
|
10027
10032
|
stopAllSessionsAndWait,
|
|
10028
10033
|
getProjectDir
|
|
10029
10034
|
};
|
|
10030
|
-
//# sourceMappingURL=chunk-
|
|
10035
|
+
//# sourceMappingURL=chunk-JTQ6RYGM.js.map
|