@integrity-labs/agt-cli 0.27.142 → 0.27.144
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-IDDSO7Q5.js → chunk-7GKJZBTB.js} +2 -2
- package/dist/{chunk-OI33LV54.js → chunk-HPUIWWKD.js} +11 -5
- package/dist/chunk-HPUIWWKD.js.map +1 -0
- package/dist/{chunk-WCXA7EEP.js → chunk-WOOYOAPG.js} +27 -1
- package/dist/chunk-WOOYOAPG.js.map +1 -0
- package/dist/{claude-pair-runtime-ZLYTTNUY.js → claude-pair-runtime-GIUCD7IG.js} +2 -2
- package/dist/lib/manager-worker.js +22 -10
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/slack-channel.js +40 -6
- package/dist/{persistent-session-SOCMTNFC.js → persistent-session-35PWSTLO.js} +3 -3
- package/dist/{responsiveness-probe-USWGCI4C.js → responsiveness-probe-MA4M2QM4.js} +3 -3
- package/package.json +1 -1
- package/dist/chunk-OI33LV54.js.map +0 -1
- package/dist/chunk-WCXA7EEP.js.map +0 -1
- /package/dist/{chunk-IDDSO7Q5.js.map → chunk-7GKJZBTB.js.map} +0 -0
- /package/dist/{claude-pair-runtime-ZLYTTNUY.js.map → claude-pair-runtime-GIUCD7IG.js.map} +0 -0
- /package/dist/{persistent-session-SOCMTNFC.js.map → persistent-session-35PWSTLO.js.map} +0 -0
- /package/dist/{responsiveness-probe-USWGCI4C.js.map → responsiveness-probe-MA4M2QM4.js.map} +0 -0
|
@@ -409,6 +409,26 @@ function getFramework(id) {
|
|
|
409
409
|
return adapter;
|
|
410
410
|
}
|
|
411
411
|
|
|
412
|
+
// ../../packages/core/dist/provisioning/avatar-env.js
|
|
413
|
+
var MAX_AVATAR_ENV_URL_BYTES = 8192;
|
|
414
|
+
function utf8ByteLength(value) {
|
|
415
|
+
return new TextEncoder().encode(value).length;
|
|
416
|
+
}
|
|
417
|
+
function resolveAvatarEnvUrl(raw) {
|
|
418
|
+
const trimmed = typeof raw === "string" ? raw.trim() : "";
|
|
419
|
+
if (trimmed === "") {
|
|
420
|
+
return { url: null, skipReason: "empty" };
|
|
421
|
+
}
|
|
422
|
+
if (/^data:/i.test(trimmed)) {
|
|
423
|
+
return { url: null, skipReason: "data-uri", bytes: utf8ByteLength(trimmed) };
|
|
424
|
+
}
|
|
425
|
+
const bytes = utf8ByteLength(trimmed);
|
|
426
|
+
if (bytes > MAX_AVATAR_ENV_URL_BYTES) {
|
|
427
|
+
return { url: null, skipReason: "too-large", bytes };
|
|
428
|
+
}
|
|
429
|
+
return { url: trimmed };
|
|
430
|
+
}
|
|
431
|
+
|
|
412
432
|
// ../../packages/core/dist/types/kanban.js
|
|
413
433
|
function formatActorId(kind, id) {
|
|
414
434
|
return `${kind}:${id}`;
|
|
@@ -1765,6 +1785,10 @@ var ajv = new Ajv2020({ allErrors: true, strict: false });
|
|
|
1765
1785
|
addFormats(ajv);
|
|
1766
1786
|
var compiledMetaSchema = ajv.compile(context_meta_schema_default);
|
|
1767
1787
|
|
|
1788
|
+
// ../../packages/core/dist/integrations/augmented-live/codec.js
|
|
1789
|
+
var DEFAULT_CHUNK_BUDGET_BYTES = 180 * 1024;
|
|
1790
|
+
var textEncoder = new TextEncoder();
|
|
1791
|
+
|
|
1768
1792
|
// ../../packages/core/dist/integrations/oauth-providers.js
|
|
1769
1793
|
var OAUTH_PROVIDERS = {
|
|
1770
1794
|
"google-workspace": {
|
|
@@ -4707,6 +4731,8 @@ export {
|
|
|
4707
4731
|
CHANNEL_REGISTRY,
|
|
4708
4732
|
getChannel,
|
|
4709
4733
|
getAllChannelIds,
|
|
4734
|
+
MAX_AVATAR_ENV_URL_BYTES,
|
|
4735
|
+
resolveAvatarEnvUrl,
|
|
4710
4736
|
OAUTH_PROVIDERS,
|
|
4711
4737
|
formatActorId,
|
|
4712
4738
|
isSelfCompletion,
|
|
@@ -4744,4 +4770,4 @@ export {
|
|
|
4744
4770
|
attributeTranscriptUsageByRun,
|
|
4745
4771
|
KANBAN_CHECK_COMMAND
|
|
4746
4772
|
};
|
|
4747
|
-
//# sourceMappingURL=chunk-
|
|
4773
|
+
//# sourceMappingURL=chunk-WOOYOAPG.js.map
|