@montytools/cli 0.5.0 → 0.5.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/bin/monty.mjs +716 -257
- package/lib/schemaCodegen.mjs +44 -5
- package/package.json +1 -1
- package/skills/monty-build/SKILL.md +50 -28
- package/skills/monty-design/SKILL.md +123 -0
- package/skills/monty-operate/SKILL.md +26 -10
- package/template/AGENTS.md +67 -26
- package/template/package.json +1 -1
- package/template/src/index.css +35 -31
package/template/src/index.css
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
3
3
|
@import "shadcn/tailwind.css";
|
|
4
4
|
@import "@fontsource-variable/roboto";
|
|
5
5
|
|
|
6
|
+
/* Shared platform chrome (@montytools/sdk/ui) ships Tailwind classes in its
|
|
7
|
+
dist — scan it so they compile. */
|
|
8
|
+
@source "../node_modules/@montytools/sdk/dist/ui.js";
|
|
9
|
+
|
|
6
10
|
|
|
7
11
|
@custom-variant dark (&:is(.dark *));
|
|
8
12
|
|
|
@@ -85,37 +89,37 @@
|
|
|
85
89
|
}
|
|
86
90
|
|
|
87
91
|
.dark {
|
|
88
|
-
--background:
|
|
89
|
-
--foreground:
|
|
90
|
-
--card:
|
|
91
|
-
--card-foreground:
|
|
92
|
-
--popover:
|
|
93
|
-
--popover-foreground:
|
|
94
|
-
--primary:
|
|
95
|
-
--primary-foreground:
|
|
96
|
-
--secondary:
|
|
97
|
-
--secondary-foreground:
|
|
98
|
-
--muted:
|
|
99
|
-
--muted-foreground:
|
|
100
|
-
--accent:
|
|
101
|
-
--accent-foreground:
|
|
102
|
-
--destructive: oklch(0.
|
|
103
|
-
--border:
|
|
104
|
-
--input:
|
|
105
|
-
--ring:
|
|
106
|
-
--chart-1:
|
|
107
|
-
--chart-2:
|
|
108
|
-
--chart-3:
|
|
109
|
-
--chart-4:
|
|
110
|
-
--chart-5:
|
|
111
|
-
--sidebar:
|
|
112
|
-
--sidebar-foreground:
|
|
113
|
-
--sidebar-primary:
|
|
114
|
-
--sidebar-primary-foreground:
|
|
115
|
-
--sidebar-accent:
|
|
116
|
-
--sidebar-accent-foreground:
|
|
117
|
-
--sidebar-border:
|
|
118
|
-
--sidebar-ring:
|
|
92
|
+
--background: #101112;
|
|
93
|
+
--foreground: #F1F2F3;
|
|
94
|
+
--card: #17181A;
|
|
95
|
+
--card-foreground: #F1F2F3;
|
|
96
|
+
--popover: #17181A;
|
|
97
|
+
--popover-foreground: #F1F2F3;
|
|
98
|
+
--primary: #266DF0;
|
|
99
|
+
--primary-foreground: #FFFFFF;
|
|
100
|
+
--secondary: rgb(255 255 255 / 0.05);
|
|
101
|
+
--secondary-foreground: #F1F2F3;
|
|
102
|
+
--muted: rgb(255 255 255 / 0.05);
|
|
103
|
+
--muted-foreground: rgb(255 255 255 / 0.6);
|
|
104
|
+
--accent: rgb(255 255 255 / 0.05);
|
|
105
|
+
--accent-foreground: #F1F2F3;
|
|
106
|
+
--destructive: oklch(0.68 0.19 25);
|
|
107
|
+
--border: #1B1C1F;
|
|
108
|
+
--input: #212224;
|
|
109
|
+
--ring: #266DF0;
|
|
110
|
+
--chart-1: #266DF0;
|
|
111
|
+
--chart-2: #4E8CFC;
|
|
112
|
+
--chart-3: #9B69FF;
|
|
113
|
+
--chart-4: #6EA5F7;
|
|
114
|
+
--chart-5: #2D3A55;
|
|
115
|
+
--sidebar: #101112;
|
|
116
|
+
--sidebar-foreground: #F1F2F3;
|
|
117
|
+
--sidebar-primary: #266DF0;
|
|
118
|
+
--sidebar-primary-foreground: #FFFFFF;
|
|
119
|
+
--sidebar-accent: rgb(255 255 255 / 0.05);
|
|
120
|
+
--sidebar-accent-foreground: #F1F2F3;
|
|
121
|
+
--sidebar-border: #1B1C1F;
|
|
122
|
+
--sidebar-ring: #266DF0;
|
|
119
123
|
}
|
|
120
124
|
|
|
121
125
|
@layer base {
|