@jonit-dev/night-watch-cli 1.7.35 → 1.7.37

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.
Binary file
Binary file
Binary file
Binary file
@@ -0,0 +1,82 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
+ <title>Night Watch Web UI</title>
7
+ <link rel="preconnect" href="https://fonts.googleapis.com">
8
+ <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
9
+ <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap" rel="stylesheet">
10
+ <style>
11
+ :root {
12
+ --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
13
+ --font-mono: 'JetBrains Mono', monospace;
14
+ }
15
+ body {
16
+ font-family: var(--font-sans);
17
+ background-color: #030712; /* gray-950+ */
18
+ }
19
+ .font-mono {
20
+ font-family: var(--font-mono);
21
+ }
22
+
23
+ /* Custom scrollbar */
24
+ .scrollbar-hide::-webkit-scrollbar {
25
+ display: none;
26
+ }
27
+ .scrollbar-hide {
28
+ -ms-overflow-style: none;
29
+ scrollbar-width: none;
30
+ }
31
+ .terminal-scroll::-webkit-scrollbar {
32
+ width: 6px;
33
+ }
34
+ .terminal-scroll::-webkit-scrollbar-track {
35
+ background: transparent;
36
+ }
37
+ .terminal-scroll::-webkit-scrollbar-thumb {
38
+ background: #374151;
39
+ border-radius: 99px;
40
+ }
41
+ .terminal-scroll::-webkit-scrollbar-thumb:hover {
42
+ background: #4b5563;
43
+ }
44
+
45
+ /* Global Scrollbar */
46
+ ::-webkit-scrollbar {
47
+ width: 8px;
48
+ height: 8px;
49
+ }
50
+ ::-webkit-scrollbar-track {
51
+ background: transparent;
52
+ }
53
+ ::-webkit-scrollbar-thumb {
54
+ background: #1f2937;
55
+ border-radius: 4px;
56
+ border: 2px solid #030712; /* Matches body bg for padding effect */
57
+ }
58
+ ::-webkit-scrollbar-thumb:hover {
59
+ background: #374151;
60
+ }
61
+
62
+ /* Subtle gradient animation for active elements */
63
+ @keyframes gradient-x {
64
+ 0%, 100% {
65
+ background-position: 0% 50%;
66
+ }
67
+ 50% {
68
+ background-position: 100% 50%;
69
+ }
70
+ }
71
+ .animate-gradient-x {
72
+ background-size: 200% 200%;
73
+ animation: gradient-x 3s ease infinite;
74
+ }
75
+ </style>
76
+ <script type="module" crossorigin src="/assets/index-tuNH9gmb.js"></script>
77
+ <link rel="stylesheet" crossorigin href="/assets/index-FwIKfHPL.css">
78
+ </head>
79
+ <body class="bg-[#030712] text-slate-300 font-sans antialiased overflow-hidden selection:bg-indigo-500/30 selection:text-indigo-200">
80
+ <div id="root"></div>
81
+ </body>
82
+ </html>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jonit-dev/night-watch-cli",
3
- "version": "1.7.35",
3
+ "version": "1.7.37",
4
4
  "description": "Autonomous PRD execution using AI Provider CLIs + cron",
5
5
  "type": "module",
6
6
  "bin": {