@gethmy/agent 1.23.0 → 1.23.2
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/cli.js +13 -0
- package/dist/index.js +13 -0
- package/package.json +2 -2
package/dist/cli.js
CHANGED
|
@@ -581,6 +581,18 @@ function isDaemonAuthoredComment(comment, identity) {
|
|
|
581
581
|
return false;
|
|
582
582
|
return true;
|
|
583
583
|
}
|
|
584
|
+
// ../harmony-shared/dist/agentStaleness.js
|
|
585
|
+
var AGENT_HEARTBEAT_LIVENESS_MS, AGENT_MILESTONE_LIVENESS_MS, AGENT_SWEEP_DAEMON_MS, AGENT_SWEEP_INTERACTIVE_MS, AGENT_SWEEP_PAUSED_MS, SWEPT_SESSION_WRITE_GRACE_MS, ACTIVE_STATUSES;
|
|
586
|
+
var init_agentStaleness = __esm(() => {
|
|
587
|
+
AGENT_HEARTBEAT_LIVENESS_MS = 5 * 60 * 1000;
|
|
588
|
+
AGENT_MILESTONE_LIVENESS_MS = 30 * 60 * 1000;
|
|
589
|
+
AGENT_SWEEP_DAEMON_MS = 30 * 60 * 1000;
|
|
590
|
+
AGENT_SWEEP_INTERACTIVE_MS = 2 * 60 * 60 * 1000;
|
|
591
|
+
AGENT_SWEEP_PAUSED_MS = 4 * 60 * 60 * 1000;
|
|
592
|
+
SWEPT_SESSION_WRITE_GRACE_MS = 60 * 60 * 1000;
|
|
593
|
+
ACTIVE_STATUSES = new Set(["working", "blocked", "waiting"]);
|
|
594
|
+
});
|
|
595
|
+
|
|
584
596
|
// ../harmony-shared/dist/branchRef.js
|
|
585
597
|
function extractBranchRef(description) {
|
|
586
598
|
if (!description)
|
|
@@ -1416,6 +1428,7 @@ var init_types = () => {};
|
|
|
1416
1428
|
|
|
1417
1429
|
// ../harmony-shared/dist/index.js
|
|
1418
1430
|
var init_dist = __esm(() => {
|
|
1431
|
+
init_agentStaleness();
|
|
1419
1432
|
init_branchRef();
|
|
1420
1433
|
init_cardLinks();
|
|
1421
1434
|
init_classification();
|
package/dist/index.js
CHANGED
|
@@ -580,6 +580,18 @@ function isDaemonAuthoredComment(comment, identity) {
|
|
|
580
580
|
return false;
|
|
581
581
|
return true;
|
|
582
582
|
}
|
|
583
|
+
// ../harmony-shared/dist/agentStaleness.js
|
|
584
|
+
var AGENT_HEARTBEAT_LIVENESS_MS, AGENT_MILESTONE_LIVENESS_MS, AGENT_SWEEP_DAEMON_MS, AGENT_SWEEP_INTERACTIVE_MS, AGENT_SWEEP_PAUSED_MS, SWEPT_SESSION_WRITE_GRACE_MS, ACTIVE_STATUSES;
|
|
585
|
+
var init_agentStaleness = __esm(() => {
|
|
586
|
+
AGENT_HEARTBEAT_LIVENESS_MS = 5 * 60 * 1000;
|
|
587
|
+
AGENT_MILESTONE_LIVENESS_MS = 30 * 60 * 1000;
|
|
588
|
+
AGENT_SWEEP_DAEMON_MS = 30 * 60 * 1000;
|
|
589
|
+
AGENT_SWEEP_INTERACTIVE_MS = 2 * 60 * 60 * 1000;
|
|
590
|
+
AGENT_SWEEP_PAUSED_MS = 4 * 60 * 60 * 1000;
|
|
591
|
+
SWEPT_SESSION_WRITE_GRACE_MS = 60 * 60 * 1000;
|
|
592
|
+
ACTIVE_STATUSES = new Set(["working", "blocked", "waiting"]);
|
|
593
|
+
});
|
|
594
|
+
|
|
583
595
|
// ../harmony-shared/dist/branchRef.js
|
|
584
596
|
function extractBranchRef(description) {
|
|
585
597
|
if (!description)
|
|
@@ -1415,6 +1427,7 @@ var init_types = () => {};
|
|
|
1415
1427
|
|
|
1416
1428
|
// ../harmony-shared/dist/index.js
|
|
1417
1429
|
var init_dist = __esm(() => {
|
|
1430
|
+
init_agentStaleness();
|
|
1418
1431
|
init_branchRef();
|
|
1419
1432
|
init_cardLinks();
|
|
1420
1433
|
init_classification();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gethmy/agent",
|
|
3
|
-
"version": "1.23.
|
|
3
|
+
"version": "1.23.2",
|
|
4
4
|
"description": "Push-based agent daemon for Harmony — watches board assignments and spawns Claude CLI workers",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"dependencies": {
|
|
47
47
|
"@anthropic-ai/claude-agent-sdk": "^0.3.178",
|
|
48
48
|
"@supabase/supabase-js": "2.95.3",
|
|
49
|
-
"@gethmy/mcp": "2.
|
|
49
|
+
"@gethmy/mcp": "2.21.0"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"@harmony/shared": "workspace:*",
|