mastermind-md 0.1.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/.claude/skills/master/SKILL.md +10 -0
- package/.claude/skills/mastermind/SKILL.md +61 -0
- package/.claude/skills/mastermind/reference/demo.md +35 -0
- package/LICENSE +21 -0
- package/README.md +135 -0
- package/assets/agent/global.md +12 -0
- package/bin/mastermind.js +17 -0
- package/dist/cli/index.js +1284 -0
- package/dist/cli/index.js.map +1 -0
- package/dist/server/index.js +1752 -0
- package/dist/server/index.js.map +1 -0
- package/dist/ui/assets/FindBar-CSKdPrxm.js +1 -0
- package/dist/ui/assets/RenameDialog-C6yP_6D8.js +1 -0
- package/dist/ui/assets/SettingsPanel-C6-wwvJr.js +1 -0
- package/dist/ui/assets/SourceEditor-DN44HaIZ.js +37 -0
- package/dist/ui/assets/TranslatedView-G29rKesM.js +1 -0
- package/dist/ui/assets/index-Bhf9eUP2.css +1 -0
- package/dist/ui/assets/index-cMAuoyhV.js +99 -0
- package/dist/ui/assets/jsx-runtime-BrnrUjgG.js +1 -0
- package/dist/ui/assets/react-DoK4WR2u.js +1 -0
- package/dist/ui/index.html +16 -0
- package/package.json +91 -0
- package/themes/carbon/theme.json +11 -0
- package/themes/carbon/tokens.css +67 -0
- package/themes/cobalt/theme.json +11 -0
- package/themes/cobalt/tokens.css +67 -0
- package/themes/fonts/BricolageGrotesque-Variable.woff2 +0 -0
- package/themes/fonts/CrimsonPro-Variable.woff2 +0 -0
- package/themes/fonts/Fraunces-Variable.woff2 +0 -0
- package/themes/fonts/GeistSans-Variable.woff2 +0 -0
- package/themes/fonts/HankenGrotesk-Variable.woff2 +0 -0
- package/themes/fonts/Inter-Variable.woff2 +0 -0
- package/themes/fonts/JetBrainsMono-Variable.woff2 +0 -0
- package/themes/fonts/Lora-Variable.woff2 +0 -0
- package/themes/fonts/Manrope-Variable.woff2 +0 -0
- package/themes/fonts/Newsreader-Variable.woff2 +0 -0
- package/themes/fonts/Outfit-Variable.woff2 +0 -0
- package/themes/fonts/SpaceGrotesk-Variable.woff2 +0 -0
- package/themes/fonts/SplineSansMono-Variable.woff2 +0 -0
- package/themes/fonts/UbuntuSansMono-Variable.woff2 +0 -0
- package/themes/grid/fonts/GeistMono-Variable.woff2 +0 -0
- package/themes/grid/fonts/SchibstedGrotesk-Variable.woff2 +0 -0
- package/themes/grid/theme.json +11 -0
- package/themes/grid/tokens.css +67 -0
- package/themes/nacht/theme.json +11 -0
- package/themes/nacht/tokens.css +67 -0
- package/themes/rose/theme.json +11 -0
- package/themes/rose/tokens.css +67 -0
- package/themes/sepia/theme.json +11 -0
- package/themes/sepia/tokens.css +67 -0
- package/themes/slate/theme.json +11 -0
- package/themes/slate/tokens.css +67 -0
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "slate",
|
|
3
|
+
"name": "Slate",
|
|
4
|
+
"appearance": "dark",
|
|
5
|
+
"fonts": [
|
|
6
|
+
{ "family": "Schibsted Grotesk", "src": "/themes/grid/fonts/SchibstedGrotesk-Variable.woff2", "weight": "400 900" },
|
|
7
|
+
{ "family": "Geist Mono", "src": "/themes/grid/fonts/GeistMono-Variable.woff2", "weight": "100 900" }
|
|
8
|
+
],
|
|
9
|
+
"grain": { "enabled": false },
|
|
10
|
+
"swatch": { "bg": "#0e0f12", "ink": "#989a9c", "accent": "#2dd4bf" }
|
|
11
|
+
}
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
[data-theme='slate'] {
|
|
2
|
+
/* Slate (cool dark, soft teal).
|
|
3
|
+
v0.4: Radix-rigor 12-step OKLCH scales (anchored to the v0.3 Swiss values),
|
|
4
|
+
with semantic tokens mapped onto the steps. Marks stay hand-tuned. */
|
|
5
|
+
|
|
6
|
+
/* ---- Layer 1: raw scales (values differ per theme) ---- */
|
|
7
|
+
--gray-1: oklch(0.169 0.006 271.014);
|
|
8
|
+
--gray-2: oklch(0.209 0.009 264.373);
|
|
9
|
+
--gray-3: oklch(0.228 0.006 181.912);
|
|
10
|
+
--gray-4: oklch(0.247 0.006 181.912);
|
|
11
|
+
--gray-5: oklch(0.266 0.006 181.912);
|
|
12
|
+
--gray-6: oklch(0.285 0.006 271.216);
|
|
13
|
+
--gray-7: oklch(0.343 0.006 181.912);
|
|
14
|
+
--gray-8: oklch(0.401 0.006 181.912);
|
|
15
|
+
--gray-9: oklch(0.459 0.006 181.912);
|
|
16
|
+
--gray-10: oklch(0.517 0.005 271.321);
|
|
17
|
+
--gray-11: oklch(0.685 0.004 247.879);
|
|
18
|
+
--gray-12: oklch(0.949 0.006 264.532);
|
|
19
|
+
--accent-1: oklch(0.205 0.012 181.912);
|
|
20
|
+
--accent-2: oklch(0.245 0.021 181.912);
|
|
21
|
+
--accent-3: oklch(0.3 0.037 181.912);
|
|
22
|
+
--accent-4: oklch(0.36 0.053 181.912);
|
|
23
|
+
--accent-5: oklch(0.42 0.07 181.912);
|
|
24
|
+
--accent-6: oklch(0.485 0.087 181.912);
|
|
25
|
+
--accent-7: oklch(0.56 0.105 181.912);
|
|
26
|
+
--accent-8: oklch(0.65 0.119 181.912);
|
|
27
|
+
--accent-9: oklch(0.785 0.133 181.912);
|
|
28
|
+
--accent-10: oklch(0.74 0.129 181.912);
|
|
29
|
+
--accent-11: oklch(0.631 0.107 182.719);
|
|
30
|
+
--accent-12: oklch(0.93 0.098 181.912);
|
|
31
|
+
|
|
32
|
+
/* ---- Layer 2: semantic mapping (identical names across all themes) ---- */
|
|
33
|
+
--color-bg: var(--gray-1);
|
|
34
|
+
--color-bg-elevated: var(--gray-2);
|
|
35
|
+
--color-text: var(--gray-12);
|
|
36
|
+
--color-text-muted: var(--gray-11);
|
|
37
|
+
--color-text-faint: var(--gray-10);
|
|
38
|
+
--color-border: var(--gray-6);
|
|
39
|
+
--color-border-hover: var(--gray-7);
|
|
40
|
+
--color-accent: var(--accent-9);
|
|
41
|
+
--color-accent-dim: var(--accent-11);
|
|
42
|
+
--color-on-accent: #04201c;
|
|
43
|
+
--color-cta-bg: var(--accent-9);
|
|
44
|
+
--color-cta-text: #04201c;
|
|
45
|
+
--focus-ring: var(--accent-8);
|
|
46
|
+
--color-selection: color-mix(in oklab, var(--color-text) 16%, transparent);
|
|
47
|
+
--color-accent-surface: color-mix(in oklab, var(--color-accent) 16%, transparent);
|
|
48
|
+
--color-invert-bg: #f4f4f1;
|
|
49
|
+
--color-invert-bg-elevated: #ffffff;
|
|
50
|
+
--color-invert-text: #141414;
|
|
51
|
+
--color-invert-text-muted: rgba(20, 20, 20, 0.62);
|
|
52
|
+
--color-invert-border: rgba(20, 20, 20, 0.14);
|
|
53
|
+
|
|
54
|
+
/* ---- Layer 3: review / mark semantics (hand-tuned, de-conflicted from accent) ---- */
|
|
55
|
+
--review-insert-text: #4fc76e;
|
|
56
|
+
--review-insert-bg: rgba(79, 199, 110, 0.16);
|
|
57
|
+
--review-insert-border: #4fc76e;
|
|
58
|
+
--review-delete-text: #f0664a;
|
|
59
|
+
--review-delete-bg: rgba(240, 102, 74, 0.16);
|
|
60
|
+
--review-delete-border: rgba(240, 102, 74, 0.5);
|
|
61
|
+
--review-highlight-bg: rgba(232, 190, 58, 0.2);
|
|
62
|
+
--review-highlight-border: rgba(232, 190, 58, 0.55);
|
|
63
|
+
--review-comment-anchor: #9a86ff;
|
|
64
|
+
--review-comment-active-bg: rgba(154, 134, 255, 0.16);
|
|
65
|
+
|
|
66
|
+
color-scheme: dark;
|
|
67
|
+
}
|