agentxchain 2.120.0 → 2.122.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/package.json +1 -1
- package/src/lib/export.js +6 -0
- package/src/lib/repo-observer.js +3 -0
package/package.json
CHANGED
package/src/lib/export.js
CHANGED
|
@@ -40,6 +40,9 @@ export const RUN_EXPORT_INCLUDED_ROOTS = [
|
|
|
40
40
|
'.agentxchain/events.jsonl',
|
|
41
41
|
'.agentxchain/schedule-state.json',
|
|
42
42
|
'.agentxchain/schedule-daemon.json',
|
|
43
|
+
'.agentxchain/continuous-session.json',
|
|
44
|
+
'.agentxchain/human-escalations.jsonl',
|
|
45
|
+
'.agentxchain/sla-reminders.json',
|
|
43
46
|
'.agentxchain/dispatch',
|
|
44
47
|
'.agentxchain/staging',
|
|
45
48
|
'.agentxchain/transactions/accept',
|
|
@@ -65,6 +68,9 @@ export const RUN_RESTORE_ROOTS = [
|
|
|
65
68
|
'.agentxchain/events.jsonl',
|
|
66
69
|
'.agentxchain/schedule-state.json',
|
|
67
70
|
'.agentxchain/schedule-daemon.json',
|
|
71
|
+
'.agentxchain/continuous-session.json',
|
|
72
|
+
'.agentxchain/human-escalations.jsonl',
|
|
73
|
+
'.agentxchain/sla-reminders.json',
|
|
68
74
|
'.agentxchain/dispatch',
|
|
69
75
|
'.agentxchain/staging',
|
|
70
76
|
'.agentxchain/transactions/accept',
|
package/src/lib/repo-observer.js
CHANGED
|
@@ -45,6 +45,9 @@ const ORCHESTRATOR_STATE_FILES = [
|
|
|
45
45
|
'.agentxchain/notification-audit.jsonl',
|
|
46
46
|
'.agentxchain/schedule-state.json',
|
|
47
47
|
'.agentxchain/schedule-daemon.json',
|
|
48
|
+
'.agentxchain/continuous-session.json',
|
|
49
|
+
'.agentxchain/human-escalations.jsonl',
|
|
50
|
+
'.agentxchain/sla-reminders.json',
|
|
48
51
|
'TALK.md',
|
|
49
52
|
];
|
|
50
53
|
|