@virtengine/openfleet 0.25.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.
Files changed (120) hide show
  1. package/.env.example +914 -0
  2. package/LICENSE +190 -0
  3. package/README.md +500 -0
  4. package/agent-endpoint.mjs +918 -0
  5. package/agent-hook-bridge.mjs +230 -0
  6. package/agent-hooks.mjs +1188 -0
  7. package/agent-pool.mjs +2403 -0
  8. package/agent-prompts.mjs +689 -0
  9. package/agent-sdk.mjs +141 -0
  10. package/anomaly-detector.mjs +1195 -0
  11. package/autofix.mjs +1294 -0
  12. package/claude-shell.mjs +708 -0
  13. package/cli.mjs +906 -0
  14. package/codex-config.mjs +1274 -0
  15. package/codex-model-profiles.mjs +135 -0
  16. package/codex-shell.mjs +762 -0
  17. package/config-doctor.mjs +613 -0
  18. package/config.mjs +1720 -0
  19. package/conflict-resolver.mjs +248 -0
  20. package/container-runner.mjs +450 -0
  21. package/copilot-shell.mjs +827 -0
  22. package/daemon-restart-policy.mjs +56 -0
  23. package/diff-stats.mjs +282 -0
  24. package/error-detector.mjs +829 -0
  25. package/fetch-runtime.mjs +34 -0
  26. package/fleet-coordinator.mjs +838 -0
  27. package/get-telegram-chat-id.mjs +71 -0
  28. package/git-safety.mjs +170 -0
  29. package/github-reconciler.mjs +403 -0
  30. package/hook-profiles.mjs +651 -0
  31. package/kanban-adapter.mjs +4491 -0
  32. package/lib/logger.mjs +645 -0
  33. package/maintenance.mjs +828 -0
  34. package/merge-strategy.mjs +1171 -0
  35. package/monitor.mjs +12207 -0
  36. package/openfleet.config.example.json +115 -0
  37. package/openfleet.schema.json +465 -0
  38. package/package.json +203 -0
  39. package/postinstall.mjs +187 -0
  40. package/pr-cleanup-daemon.mjs +978 -0
  41. package/preflight.mjs +408 -0
  42. package/prepublish-check.mjs +90 -0
  43. package/presence.mjs +328 -0
  44. package/primary-agent.mjs +282 -0
  45. package/publish.mjs +151 -0
  46. package/repo-root.mjs +29 -0
  47. package/restart-controller.mjs +100 -0
  48. package/review-agent.mjs +557 -0
  49. package/rotate-agent-logs.sh +133 -0
  50. package/sdk-conflict-resolver.mjs +973 -0
  51. package/session-tracker.mjs +880 -0
  52. package/setup.mjs +3937 -0
  53. package/shared-knowledge.mjs +410 -0
  54. package/shared-state-manager.mjs +841 -0
  55. package/shared-workspace-cli.mjs +199 -0
  56. package/shared-workspace-registry.mjs +537 -0
  57. package/shared-workspaces.json +18 -0
  58. package/startup-service.mjs +1070 -0
  59. package/sync-engine.mjs +1063 -0
  60. package/task-archiver.mjs +801 -0
  61. package/task-assessment.mjs +550 -0
  62. package/task-claims.mjs +924 -0
  63. package/task-complexity.mjs +581 -0
  64. package/task-executor.mjs +5111 -0
  65. package/task-store.mjs +753 -0
  66. package/telegram-bot.mjs +9281 -0
  67. package/telegram-sentinel.mjs +2010 -0
  68. package/ui/app.js +867 -0
  69. package/ui/app.legacy.js +1464 -0
  70. package/ui/app.monolith.js +2488 -0
  71. package/ui/components/charts.js +226 -0
  72. package/ui/components/chat-view.js +567 -0
  73. package/ui/components/command-palette.js +587 -0
  74. package/ui/components/diff-viewer.js +190 -0
  75. package/ui/components/forms.js +327 -0
  76. package/ui/components/kanban-board.js +451 -0
  77. package/ui/components/session-list.js +305 -0
  78. package/ui/components/shared.js +473 -0
  79. package/ui/index.html +70 -0
  80. package/ui/modules/api.js +297 -0
  81. package/ui/modules/icons.js +461 -0
  82. package/ui/modules/router.js +81 -0
  83. package/ui/modules/settings-schema.js +261 -0
  84. package/ui/modules/state.js +679 -0
  85. package/ui/modules/telegram.js +331 -0
  86. package/ui/modules/utils.js +270 -0
  87. package/ui/styles/animations.css +140 -0
  88. package/ui/styles/base.css +98 -0
  89. package/ui/styles/components.css +1915 -0
  90. package/ui/styles/kanban.css +286 -0
  91. package/ui/styles/layout.css +809 -0
  92. package/ui/styles/sessions.css +827 -0
  93. package/ui/styles/variables.css +188 -0
  94. package/ui/styles.css +141 -0
  95. package/ui/styles.monolith.css +1046 -0
  96. package/ui/tabs/agents.js +1417 -0
  97. package/ui/tabs/chat.js +74 -0
  98. package/ui/tabs/control.js +887 -0
  99. package/ui/tabs/dashboard.js +515 -0
  100. package/ui/tabs/infra.js +537 -0
  101. package/ui/tabs/logs.js +783 -0
  102. package/ui/tabs/settings.js +1487 -0
  103. package/ui/tabs/tasks.js +1385 -0
  104. package/ui-server.mjs +4073 -0
  105. package/update-check.mjs +465 -0
  106. package/utils.mjs +172 -0
  107. package/ve-kanban.mjs +654 -0
  108. package/ve-kanban.ps1 +1365 -0
  109. package/ve-kanban.sh +18 -0
  110. package/ve-orchestrator.mjs +340 -0
  111. package/ve-orchestrator.ps1 +6546 -0
  112. package/ve-orchestrator.sh +18 -0
  113. package/vibe-kanban-wrapper.mjs +41 -0
  114. package/vk-error-resolver.mjs +470 -0
  115. package/vk-log-stream.mjs +914 -0
  116. package/whatsapp-channel.mjs +520 -0
  117. package/workspace-monitor.mjs +581 -0
  118. package/workspace-reaper.mjs +405 -0
  119. package/workspace-registry.mjs +238 -0
  120. package/worktree-manager.mjs +1266 -0
@@ -0,0 +1,140 @@
1
+ /* ─── Keyframe Animations — Mission Control ─── */
2
+
3
+ @keyframes fadeIn {
4
+ from { opacity: 0; }
5
+ to { opacity: 1; }
6
+ }
7
+
8
+ @keyframes slideUp {
9
+ from { transform: translateY(100%); opacity: 0; }
10
+ to { transform: translateY(0); opacity: 1; }
11
+ }
12
+
13
+ @keyframes slideDown {
14
+ from { opacity: 0; transform: translateY(-20px) scale(0.98); }
15
+ to { opacity: 1; transform: translateY(0) scale(1); }
16
+ }
17
+
18
+ @keyframes slideLeft {
19
+ from { opacity: 0; transform: translateX(20px); }
20
+ to { opacity: 1; transform: translateX(0); }
21
+ }
22
+
23
+ @keyframes slideRight {
24
+ from { opacity: 0; transform: translateX(-20px); }
25
+ to { opacity: 1; transform: translateX(0); }
26
+ }
27
+
28
+ @keyframes scaleIn {
29
+ from { opacity: 0; transform: scale(0.92); }
30
+ to { opacity: 1; transform: scale(1); }
31
+ }
32
+
33
+ @keyframes bounceIn {
34
+ 0% { opacity: 0; transform: scale(0.5); }
35
+ 60% { opacity: 1; transform: scale(1.03); }
36
+ 100% { transform: scale(1); }
37
+ }
38
+
39
+ @keyframes fadeSlideUp {
40
+ from { opacity: 0; transform: translateY(12px); }
41
+ to { opacity: 1; transform: translateY(0); }
42
+ }
43
+
44
+ @keyframes skeleton-pulse {
45
+ 0%, 100% { opacity: 0.3; }
46
+ 50% { opacity: 0.6; }
47
+ }
48
+
49
+ @keyframes spin {
50
+ to { transform: rotate(360deg); }
51
+ }
52
+
53
+ @keyframes pulse-dot {
54
+ 0%, 100% { opacity: 1; }
55
+ 50% { opacity: 0.4; }
56
+ }
57
+
58
+ @keyframes counter-up {
59
+ from { opacity: 0; transform: translateY(8px); }
60
+ to { opacity: 1; transform: translateY(0); }
61
+ }
62
+
63
+ /* ─── Premium Additions ─── */
64
+
65
+ @keyframes shimmer {
66
+ 0% { background-position: -200% 0; }
67
+ 100% { background-position: 200% 0; }
68
+ }
69
+
70
+ @keyframes glowPulse {
71
+ 0%, 100% { box-shadow: 0 0 8px var(--accent-glow, rgba(99,102,241,.2)); }
72
+ 50% { box-shadow: 0 0 20px var(--accent-glow, rgba(99,102,241,.4)), 0 0 40px var(--accent-glow, rgba(99,102,241,.1)); }
73
+ }
74
+
75
+ @keyframes breathe {
76
+ 0%, 100% { transform: scale(1); opacity: 0.7; }
77
+ 50% { transform: scale(1.05); opacity: 1; }
78
+ }
79
+
80
+ @keyframes springUp {
81
+ 0% { transform: translateY(100%); opacity: 0; }
82
+ 60% { transform: translateY(-3%); opacity: 1; }
83
+ 80% { transform: translateY(1%); }
84
+ 100% { transform: translateY(0); }
85
+ }
86
+
87
+ @keyframes float {
88
+ 0%, 100% { transform: translateY(0); }
89
+ 50% { transform: translateY(-4px); }
90
+ }
91
+
92
+ @keyframes ripple {
93
+ 0% { transform: scale(0); opacity: 0.5; }
94
+ 100% { transform: scale(2.5); opacity: 0; }
95
+ }
96
+
97
+ @keyframes shake {
98
+ 0%, 100% { transform: translateX(0); }
99
+ 20% { transform: translateX(-6px); }
100
+ 40% { transform: translateX(6px); }
101
+ 60% { transform: translateX(-4px); }
102
+ 80% { transform: translateX(4px); }
103
+ }
104
+
105
+ @keyframes staggerReveal {
106
+ from { opacity: 0; transform: translateY(10px) scale(0.97); }
107
+ to { opacity: 1; transform: translateY(0) scale(1); }
108
+ }
109
+
110
+ @keyframes progressGlow {
111
+ 0% { transform: translateX(-100%); filter: brightness(1); }
112
+ 50% { filter: brightness(1.3); }
113
+ 100% { transform: translateX(200%); filter: brightness(1); }
114
+ }
115
+
116
+ @keyframes cursorBlink {
117
+ 0%, 100% { opacity: 1; }
118
+ 50% { opacity: 0; }
119
+ }
120
+
121
+ @keyframes ringSpin {
122
+ 0% { transform: rotate(0deg); }
123
+ 100% { transform: rotate(360deg); }
124
+ }
125
+
126
+ @keyframes tapBounce {
127
+ 0% { transform: scale(1); }
128
+ 50% { transform: scale(0.95); }
129
+ 100% { transform: scale(1); }
130
+ }
131
+
132
+ @keyframes ambientRotate {
133
+ 0% { transform: rotate(0deg); }
134
+ 100% { transform: rotate(360deg); }
135
+ }
136
+
137
+ @keyframes countUp {
138
+ from { opacity: 0; transform: translateY(100%); }
139
+ to { opacity: 1; transform: translateY(0); }
140
+ }
@@ -0,0 +1,98 @@
1
+ /* ─── Base Reset & Body Styles ─── */
2
+ @import "./variables.css";
3
+
4
+ *,
5
+ *::before,
6
+ *::after {
7
+ box-sizing: border-box;
8
+ margin: 0;
9
+ padding: 0;
10
+ }
11
+
12
+ html,
13
+ body {
14
+ height: 100%;
15
+ }
16
+
17
+ body {
18
+ font-family: var(--font-ui);
19
+ font-size: 15px;
20
+ line-height: 1.5;
21
+ color: var(--text-primary);
22
+ background: var(--bg-primary);
23
+ background-image: var(--gradient-mesh);
24
+ background-attachment: fixed;
25
+ -webkit-font-smoothing: antialiased;
26
+ -moz-osx-font-smoothing: grayscale;
27
+ -webkit-tap-highlight-color: transparent;
28
+ overscroll-behavior: none;
29
+ height: var(--viewport-stable-height);
30
+ overflow-x: hidden;
31
+ position: relative;
32
+ }
33
+
34
+ #app {
35
+ min-height: 100%;
36
+ display: flex;
37
+ flex-direction: column;
38
+ position: relative;
39
+ z-index: 1;
40
+ }
41
+
42
+ body::before,
43
+ body::after {
44
+ content: "";
45
+ position: fixed;
46
+ pointer-events: none;
47
+ z-index: 0;
48
+ inset: auto;
49
+ opacity: 0.7;
50
+ }
51
+
52
+ body::before {
53
+ top: -20%;
54
+ left: -10%;
55
+ right: -10%;
56
+ height: 55%;
57
+ background: var(--gradient-hero);
58
+ filter: blur(10px);
59
+ }
60
+
61
+ body::after {
62
+ bottom: -25%;
63
+ left: -20%;
64
+ right: -20%;
65
+ height: 60%;
66
+ background: var(--gradient-radial-glow);
67
+ filter: blur(20px);
68
+ }
69
+
70
+ /* Selection styling */
71
+ ::selection {
72
+ background: var(--accent-subtle);
73
+ color: var(--text-bright);
74
+ }
75
+
76
+ code,
77
+ pre {
78
+ font-family: var(--font-mono);
79
+ }
80
+
81
+ /* ─── Scrollbar Styles ─── */
82
+ .main-content::-webkit-scrollbar {
83
+ width: 4px;
84
+ }
85
+
86
+ .main-content::-webkit-scrollbar-thumb {
87
+ background: var(--border-strong);
88
+ border-radius: var(--radius-full);
89
+ }
90
+
91
+ .log-box::-webkit-scrollbar {
92
+ width: 4px;
93
+ }
94
+
95
+ .log-box::-webkit-scrollbar-thumb {
96
+ background: rgba(240, 246, 252, 0.2);
97
+ border-radius: var(--radius-full);
98
+ }