@integrity-labs/agt-cli 0.24.8 → 0.24.10
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/bin/agt.js.map +1 -1
- package/dist/{chunk-53TCAGCM.js → chunk-7DRLULIO.js} +38 -26
- package/dist/{chunk-53TCAGCM.js.map → chunk-7DRLULIO.js.map} +1 -1
- package/dist/{chunk-TS7W4YNI.js → chunk-HR5T2RQF.js} +8 -2
- package/dist/{chunk-TS7W4YNI.js.map → chunk-HR5T2RQF.js.map} +1 -1
- package/dist/{chunk-3A2PMQM4.js → chunk-IEVHEZV4.js} +11 -7
- package/dist/chunk-IEVHEZV4.js.map +1 -0
- package/dist/{chunk-XW27YIEU.js → chunk-Z25YM6B4.js} +2 -2
- package/dist/{claude-pair-runtime-4F53C7RB.js → claude-pair-runtime-SENCKRI4.js} +2 -2
- package/dist/{claude-scheduler-XHJS2MZV.js → claude-scheduler-EM24LTGV.js} +2 -2
- package/dist/lib/manager-worker.js +255 -20
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/slack-channel.js +94 -4
- package/dist/mcp/telegram-channel.js +88 -0
- package/dist/{persistent-session-XJYOPFIP.js → persistent-session-3SNFKR2Q.js} +5 -3
- package/dist/{responsiveness-probe-EWZNGMTX.js → responsiveness-probe-UBNJFMAU.js} +3 -3
- package/package.json +1 -1
- package/dist/chunk-3A2PMQM4.js.map +0 -1
- /package/dist/{chunk-XW27YIEU.js.map → chunk-Z25YM6B4.js.map} +0 -0
- /package/dist/{claude-pair-runtime-4F53C7RB.js.map → claude-pair-runtime-SENCKRI4.js.map} +0 -0
- /package/dist/{claude-scheduler-XHJS2MZV.js.map → claude-scheduler-EM24LTGV.js.map} +0 -0
- /package/dist/{persistent-session-XJYOPFIP.js.map → persistent-session-3SNFKR2Q.js.map} +0 -0
- /package/dist/{responsiveness-probe-EWZNGMTX.js.map → responsiveness-probe-UBNJFMAU.js.map} +0 -0
|
@@ -362,6 +362,42 @@ function getFramework(id) {
|
|
|
362
362
|
return adapter;
|
|
363
363
|
}
|
|
364
364
|
|
|
365
|
+
// ../../packages/core/dist/types/kanban.js
|
|
366
|
+
function formatActorId(kind, id) {
|
|
367
|
+
return `${kind}:${id}`;
|
|
368
|
+
}
|
|
369
|
+
function isSelfCompletion(event) {
|
|
370
|
+
return event.last_actor_id === formatActorId("agent", event.agent_id);
|
|
371
|
+
}
|
|
372
|
+
function classifyActor(lastActorId, selfAgentId) {
|
|
373
|
+
if (!lastActorId)
|
|
374
|
+
return "unknown";
|
|
375
|
+
if (lastActorId === formatActorId("agent", selfAgentId))
|
|
376
|
+
return "self";
|
|
377
|
+
if (lastActorId.startsWith("user:"))
|
|
378
|
+
return "user";
|
|
379
|
+
if (lastActorId.startsWith("agent:"))
|
|
380
|
+
return "other";
|
|
381
|
+
return "unknown";
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
// ../../packages/core/dist/types/models.js
|
|
385
|
+
var DEFAULT_MODELS = {
|
|
386
|
+
primary: "openrouter/anthropic/claude-opus-4-6",
|
|
387
|
+
secondary: "openrouter/google/gemini-3.1-flash-lite-preview",
|
|
388
|
+
tertiary: "openrouter/openai/gpt-5.4-nano"
|
|
389
|
+
};
|
|
390
|
+
|
|
391
|
+
// ../../packages/core/dist/types/plugin.js
|
|
392
|
+
var HITL_TIER_ORDER = [
|
|
393
|
+
"read",
|
|
394
|
+
"write",
|
|
395
|
+
"write_high_risk",
|
|
396
|
+
"write_destructive",
|
|
397
|
+
"admin"
|
|
398
|
+
];
|
|
399
|
+
var HITL_TIER_RANK = Object.freeze(Object.fromEntries(HITL_TIER_ORDER.map((tier, i) => [tier, i])));
|
|
400
|
+
|
|
365
401
|
// ../../packages/core/dist/channels/registry.js
|
|
366
402
|
var CHANNEL_REGISTRY = [
|
|
367
403
|
{ id: "slack", name: "Slack", securityTier: "standard", e2eEncrypted: false, auditTrail: true, publicExposureRisk: "Low" },
|
|
@@ -1011,31 +1047,6 @@ var KANBAN_LOOP_COMMAND = "/loop 5m kanban_list \u2014 follow Kanban Work Policy
|
|
|
1011
1047
|
// ../../packages/core/dist/loops/kanban-check.js
|
|
1012
1048
|
var KANBAN_CHECK_COMMAND = "kanban_list \u2014 pick up any actionable items if you are free.";
|
|
1013
1049
|
|
|
1014
|
-
// ../../packages/core/dist/types/models.js
|
|
1015
|
-
var DEFAULT_MODELS = {
|
|
1016
|
-
primary: "openrouter/anthropic/claude-opus-4-6",
|
|
1017
|
-
secondary: "openrouter/google/gemini-3.1-flash-lite-preview",
|
|
1018
|
-
tertiary: "openrouter/openai/gpt-5.4-nano"
|
|
1019
|
-
};
|
|
1020
|
-
|
|
1021
|
-
// ../../packages/core/dist/types/kanban.js
|
|
1022
|
-
function formatActorId(kind, id) {
|
|
1023
|
-
return `${kind}:${id}`;
|
|
1024
|
-
}
|
|
1025
|
-
function isSelfCompletion(event) {
|
|
1026
|
-
return event.last_actor_id === formatActorId("agent", event.agent_id);
|
|
1027
|
-
}
|
|
1028
|
-
|
|
1029
|
-
// ../../packages/core/dist/types/plugin.js
|
|
1030
|
-
var HITL_TIER_ORDER = [
|
|
1031
|
-
"read",
|
|
1032
|
-
"write",
|
|
1033
|
-
"write_high_risk",
|
|
1034
|
-
"write_destructive",
|
|
1035
|
-
"admin"
|
|
1036
|
-
];
|
|
1037
|
-
var HITL_TIER_RANK = Object.freeze(Object.fromEntries(HITL_TIER_ORDER.map((tier, i) => [tier, i])));
|
|
1038
|
-
|
|
1039
1050
|
// ../../packages/core/dist/schemas/validators.js
|
|
1040
1051
|
import Ajv2020 from "ajv/dist/2020.js";
|
|
1041
1052
|
import addFormats from "ajv-formats";
|
|
@@ -3358,6 +3369,7 @@ export {
|
|
|
3358
3369
|
getAllChannelIds,
|
|
3359
3370
|
formatActorId,
|
|
3360
3371
|
isSelfCompletion,
|
|
3372
|
+
classifyActor,
|
|
3361
3373
|
resolveChannels,
|
|
3362
3374
|
SLACK_SCOPE_CATEGORY_LABELS,
|
|
3363
3375
|
getDefaultSlackScopes,
|
|
@@ -3386,4 +3398,4 @@ export {
|
|
|
3386
3398
|
KANBAN_LOOP_COMMAND,
|
|
3387
3399
|
KANBAN_CHECK_COMMAND
|
|
3388
3400
|
};
|
|
3389
|
-
//# sourceMappingURL=chunk-
|
|
3401
|
+
//# sourceMappingURL=chunk-7DRLULIO.js.map
|