muno-claude-plugin 1.7.0 → 1.8.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/README.md +99 -0
- package/bin/cli.js +4 -1
- package/package.json +6 -3
- package/templates/commands/app-designer.md +9 -0
- package/templates/personas/app-designer.md +182 -0
- package/templates/skills/app-design/SKILL.md +640 -0
- package/templates/skills/app-design/reference/component-examples.md +953 -0
- package/templates/skills/app-design/reference/design-system-template.md +628 -0
- package/templates/skills/app-design/reference/design-tokens.json +231 -0
- package/templates/skills/swagger-docs-generator/SKILL.md +699 -0
- package/templates/skills/swagger-docs-generator/reference/api-docs-template.md +666 -0
|
@@ -0,0 +1,231 @@
|
|
|
1
|
+
{
|
|
2
|
+
"color": {
|
|
3
|
+
"apple": {
|
|
4
|
+
"systemBlue": "#007AFF",
|
|
5
|
+
"systemGreen": "#34C759",
|
|
6
|
+
"systemIndigo": "#5856D6",
|
|
7
|
+
"systemOrange": "#FF9500",
|
|
8
|
+
"systemPink": "#FF2D55",
|
|
9
|
+
"systemPurple": "#AF52DE",
|
|
10
|
+
"systemRed": "#FF3B30",
|
|
11
|
+
"systemTeal": "#5AC8FA",
|
|
12
|
+
"systemYellow": "#FFCC00",
|
|
13
|
+
"systemGray": "#8E8E93",
|
|
14
|
+
"systemGray2": "#AEAEB2",
|
|
15
|
+
"systemGray3": "#C7C7CC",
|
|
16
|
+
"systemGray4": "#D1D1D6",
|
|
17
|
+
"systemGray5": "#E5E5EA",
|
|
18
|
+
"systemGray6": "#F2F2F7",
|
|
19
|
+
"label": "#000000",
|
|
20
|
+
"secondaryLabel": "#3C3C43",
|
|
21
|
+
"tertiaryLabel": "#3C3C43",
|
|
22
|
+
"quaternaryLabel": "#3C3C43",
|
|
23
|
+
"systemBackground": "#FFFFFF",
|
|
24
|
+
"secondarySystemBackground": "#F2F2F7",
|
|
25
|
+
"tertiarySystemBackground": "#FFFFFF",
|
|
26
|
+
"systemGroupedBackground": "#F2F2F7",
|
|
27
|
+
"secondarySystemGroupedBackground": "#FFFFFF",
|
|
28
|
+
"tertiarySystemGroupedBackground": "#F2F2F7",
|
|
29
|
+
"separator": "#3C3C43",
|
|
30
|
+
"opaqueSeparator": "#C6C6C8"
|
|
31
|
+
},
|
|
32
|
+
"appleDark": {
|
|
33
|
+
"systemBlue": "#0A84FF",
|
|
34
|
+
"systemGreen": "#30D158",
|
|
35
|
+
"systemIndigo": "#5E5CE6",
|
|
36
|
+
"systemOrange": "#FF9F0A",
|
|
37
|
+
"systemPink": "#FF375F",
|
|
38
|
+
"systemPurple": "#BF5AF2",
|
|
39
|
+
"systemRed": "#FF453A",
|
|
40
|
+
"systemTeal": "#64D2FF",
|
|
41
|
+
"systemYellow": "#FFD60A",
|
|
42
|
+
"systemGray": "#8E8E93",
|
|
43
|
+
"systemGray2": "#636366",
|
|
44
|
+
"systemGray3": "#48484A",
|
|
45
|
+
"systemGray4": "#3A3A3C",
|
|
46
|
+
"systemGray5": "#2C2C2E",
|
|
47
|
+
"systemGray6": "#1C1C1E",
|
|
48
|
+
"label": "#FFFFFF",
|
|
49
|
+
"secondaryLabel": "#EBEBF5",
|
|
50
|
+
"tertiaryLabel": "#EBEBF5",
|
|
51
|
+
"quaternaryLabel": "#EBEBF5",
|
|
52
|
+
"systemBackground": "#000000",
|
|
53
|
+
"secondarySystemBackground": "#1C1C1E",
|
|
54
|
+
"tertiarySystemBackground": "#2C2C2E",
|
|
55
|
+
"systemGroupedBackground": "#000000",
|
|
56
|
+
"secondarySystemGroupedBackground": "#1C1C1E",
|
|
57
|
+
"tertiarySystemGroupedBackground": "#2C2C2E",
|
|
58
|
+
"separator": "#545458",
|
|
59
|
+
"opaqueSeparator": "#38383A"
|
|
60
|
+
},
|
|
61
|
+
"toss": {
|
|
62
|
+
"blue": "#3182F6",
|
|
63
|
+
"blueLight": "#E8F3FF",
|
|
64
|
+
"black": "#191F28",
|
|
65
|
+
"gray900": "#4E5968",
|
|
66
|
+
"gray700": "#6B7684",
|
|
67
|
+
"gray600": "#8B95A1",
|
|
68
|
+
"gray500": "#ADB5BD",
|
|
69
|
+
"gray400": "#CED4DA",
|
|
70
|
+
"gray300": "#DEE2E6",
|
|
71
|
+
"gray200": "#E9ECEF",
|
|
72
|
+
"gray100": "#F1F3F5",
|
|
73
|
+
"gray50": "#F9FAFB",
|
|
74
|
+
"white": "#FFFFFF",
|
|
75
|
+
"green": "#3BCE84",
|
|
76
|
+
"greenLight": "#E7F9F0",
|
|
77
|
+
"red": "#F04452",
|
|
78
|
+
"redLight": "#FFEBEE",
|
|
79
|
+
"yellow": "#FFC043",
|
|
80
|
+
"yellowLight": "#FFF8E1"
|
|
81
|
+
},
|
|
82
|
+
"tossDark": {
|
|
83
|
+
"blue": "#4A9EFF",
|
|
84
|
+
"blueLight": "#1E3A5F",
|
|
85
|
+
"black": "#FFFFFF",
|
|
86
|
+
"gray900": "#E9ECEF",
|
|
87
|
+
"gray700": "#DEE2E6",
|
|
88
|
+
"gray600": "#CED4DA",
|
|
89
|
+
"gray500": "#ADB5BD",
|
|
90
|
+
"gray400": "#6B7684",
|
|
91
|
+
"gray300": "#4E5968",
|
|
92
|
+
"gray200": "#3A4150",
|
|
93
|
+
"gray100": "#25262B",
|
|
94
|
+
"gray50": "#1A1B1E",
|
|
95
|
+
"white": "#121212",
|
|
96
|
+
"green": "#3BCE84",
|
|
97
|
+
"greenLight": "#1A3D2E",
|
|
98
|
+
"red": "#FF6B78",
|
|
99
|
+
"redLight": "#3D1F23",
|
|
100
|
+
"yellow": "#FFD666",
|
|
101
|
+
"yellowLight": "#3D3520"
|
|
102
|
+
}
|
|
103
|
+
},
|
|
104
|
+
"spacing": {
|
|
105
|
+
"0": "0px",
|
|
106
|
+
"1": "4px",
|
|
107
|
+
"2": "8px",
|
|
108
|
+
"3": "12px",
|
|
109
|
+
"4": "16px",
|
|
110
|
+
"5": "20px",
|
|
111
|
+
"6": "24px",
|
|
112
|
+
"8": "32px",
|
|
113
|
+
"10": "40px",
|
|
114
|
+
"12": "48px",
|
|
115
|
+
"16": "64px",
|
|
116
|
+
"20": "80px",
|
|
117
|
+
"24": "96px"
|
|
118
|
+
},
|
|
119
|
+
"borderRadius": {
|
|
120
|
+
"none": "0px",
|
|
121
|
+
"xs": "4px",
|
|
122
|
+
"sm": "8px",
|
|
123
|
+
"md": "12px",
|
|
124
|
+
"lg": "16px",
|
|
125
|
+
"xl": "20px",
|
|
126
|
+
"2xl": "24px",
|
|
127
|
+
"3xl": "32px",
|
|
128
|
+
"full": "9999px"
|
|
129
|
+
},
|
|
130
|
+
"fontSize": {
|
|
131
|
+
"ios": {
|
|
132
|
+
"largeTitle": "34pt",
|
|
133
|
+
"title1": "28pt",
|
|
134
|
+
"title2": "22pt",
|
|
135
|
+
"title3": "20pt",
|
|
136
|
+
"headline": "17pt",
|
|
137
|
+
"body": "17pt",
|
|
138
|
+
"callout": "16pt",
|
|
139
|
+
"subheadline": "15pt",
|
|
140
|
+
"footnote": "13pt",
|
|
141
|
+
"caption1": "12pt",
|
|
142
|
+
"caption2": "11pt"
|
|
143
|
+
},
|
|
144
|
+
"android": {
|
|
145
|
+
"displayLarge": "57sp",
|
|
146
|
+
"displayMedium": "45sp",
|
|
147
|
+
"displaySmall": "36sp",
|
|
148
|
+
"headlineLarge": "32sp",
|
|
149
|
+
"headlineMedium": "28sp",
|
|
150
|
+
"headlineSmall": "24sp",
|
|
151
|
+
"titleLarge": "22sp",
|
|
152
|
+
"titleMedium": "16sp",
|
|
153
|
+
"titleSmall": "14sp",
|
|
154
|
+
"bodyLarge": "16sp",
|
|
155
|
+
"bodyMedium": "14sp",
|
|
156
|
+
"bodySmall": "12sp",
|
|
157
|
+
"labelLarge": "14sp",
|
|
158
|
+
"labelMedium": "12sp",
|
|
159
|
+
"labelSmall": "11sp"
|
|
160
|
+
},
|
|
161
|
+
"toss": {
|
|
162
|
+
"display": "32px",
|
|
163
|
+
"headline1": "24px",
|
|
164
|
+
"headline2": "20px",
|
|
165
|
+
"headline3": "18px",
|
|
166
|
+
"body1": "16px",
|
|
167
|
+
"body2": "14px",
|
|
168
|
+
"caption": "12px"
|
|
169
|
+
}
|
|
170
|
+
},
|
|
171
|
+
"fontWeight": {
|
|
172
|
+
"regular": "400",
|
|
173
|
+
"medium": "500",
|
|
174
|
+
"semibold": "600",
|
|
175
|
+
"bold": "700"
|
|
176
|
+
},
|
|
177
|
+
"lineHeight": {
|
|
178
|
+
"tight": "1.25",
|
|
179
|
+
"normal": "1.5",
|
|
180
|
+
"relaxed": "1.75"
|
|
181
|
+
},
|
|
182
|
+
"shadow": {
|
|
183
|
+
"ios": {
|
|
184
|
+
"elevation1": "0 1px 2px rgba(0, 0, 0, 0.06)",
|
|
185
|
+
"elevation2": "0 2px 8px rgba(0, 0, 0, 0.08)",
|
|
186
|
+
"elevation3": "0 4px 16px rgba(0, 0, 0, 0.12)",
|
|
187
|
+
"elevation4": "0 8px 24px rgba(0, 0, 0, 0.16)"
|
|
188
|
+
},
|
|
189
|
+
"android": {
|
|
190
|
+
"elevation1": "0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24)",
|
|
191
|
+
"elevation2": "0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23)",
|
|
192
|
+
"elevation3": "0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23)",
|
|
193
|
+
"elevation4": "0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22)"
|
|
194
|
+
},
|
|
195
|
+
"toss": {
|
|
196
|
+
"small": "0 2px 4px rgba(0, 0, 0, 0.04)",
|
|
197
|
+
"medium": "0 2px 8px rgba(0, 0, 0, 0.08)",
|
|
198
|
+
"large": "0 4px 12px rgba(0, 0, 0, 0.12)",
|
|
199
|
+
"xlarge": "0 8px 24px rgba(0, 0, 0, 0.16)"
|
|
200
|
+
}
|
|
201
|
+
},
|
|
202
|
+
"duration": {
|
|
203
|
+
"instant": "100ms",
|
|
204
|
+
"quick": "200ms",
|
|
205
|
+
"standard": "300ms",
|
|
206
|
+
"emphasized": "500ms"
|
|
207
|
+
},
|
|
208
|
+
"easing": {
|
|
209
|
+
"standard": "cubic-bezier(0.4, 0.0, 0.2, 1)",
|
|
210
|
+
"decelerate": "cubic-bezier(0.0, 0.0, 0.2, 1)",
|
|
211
|
+
"accelerate": "cubic-bezier(0.4, 0.0, 1, 1)",
|
|
212
|
+
"sharp": "cubic-bezier(0.4, 0.0, 0.6, 1)"
|
|
213
|
+
},
|
|
214
|
+
"breakpoint": {
|
|
215
|
+
"xs": "0px",
|
|
216
|
+
"sm": "376px",
|
|
217
|
+
"md": "768px",
|
|
218
|
+
"lg": "1024px",
|
|
219
|
+
"xl": "1440px"
|
|
220
|
+
},
|
|
221
|
+
"zIndex": {
|
|
222
|
+
"base": "0",
|
|
223
|
+
"dropdown": "1000",
|
|
224
|
+
"sticky": "1020",
|
|
225
|
+
"fixed": "1030",
|
|
226
|
+
"modalBackdrop": "1040",
|
|
227
|
+
"modal": "1050",
|
|
228
|
+
"popover": "1060",
|
|
229
|
+
"tooltip": "1070"
|
|
230
|
+
}
|
|
231
|
+
}
|