gemini-design-mcp 3.6.9 → 3.6.10
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/build/index.js +4 -7
- package/build/tools/create-frontend.d.ts +1 -1
- package/build/tools/create-frontend.js +3 -2
- package/build/tools/modify-frontend.d.ts +1 -1
- package/build/tools/modify-frontend.js +3 -2
- package/build/tools/snippet-frontend.d.ts +1 -1
- package/build/tools/snippet-frontend.js +3 -2
- package/package.json +1 -1
package/build/index.js
CHANGED
|
@@ -59,9 +59,7 @@ Present options to user, they select one, then pass it here via designSystem.vib
|
|
|
59
59
|
📤 OUTPUT
|
|
60
60
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
61
61
|
|
|
62
|
-
Returns a
|
|
63
|
-
|
|
64
|
-
💡 TIP: Use writeFile: true to write directly to disk (faster, lighter context).`, createFrontendSchema, createFrontend);
|
|
62
|
+
Returns a confirmation message after writing to disk (lightweight context).`, createFrontendSchema, createFrontend);
|
|
65
63
|
// =============================================================================
|
|
66
64
|
// TOOL 2: MODIFY_FRONTEND
|
|
67
65
|
// =============================================================================
|
|
@@ -114,7 +112,7 @@ import { X } from "y";
|
|
|
114
112
|
// REPLACE WITH:
|
|
115
113
|
<new redesigned code>
|
|
116
114
|
|
|
117
|
-
|
|
115
|
+
The modification is applied directly to disk by default.`, modifyFrontendSchema, modifyFrontend);
|
|
118
116
|
// =============================================================================
|
|
119
117
|
// TOOL 3: SNIPPET_FRONTEND
|
|
120
118
|
// =============================================================================
|
|
@@ -238,10 +236,9 @@ import { Search } from "lucide-react";
|
|
|
238
236
|
|
|
239
237
|
You (Claude) are responsible for:
|
|
240
238
|
- Adding the logic (useState, handlers) BEFORE calling this tool
|
|
241
|
-
-
|
|
242
|
-
- Inserting the snippet at the correct location
|
|
239
|
+
- Providing insertAtLine or insertAfterPattern for direct insertion
|
|
243
240
|
|
|
244
|
-
|
|
241
|
+
The snippet is inserted directly to disk by default (requires insertAtLine OR insertAfterPattern).`, snippetFrontendSchema, snippetFrontend);
|
|
245
242
|
// =============================================================================
|
|
246
243
|
// TOOL 4: GENERATE_VIBES
|
|
247
244
|
// =============================================================================
|
|
@@ -24,8 +24,9 @@ export const createFrontendSchema = {
|
|
|
24
24
|
}).describe("The selected design vibe"),
|
|
25
25
|
}).optional().describe("Design system with selected vibe. REQUIRED for new projects without existing design. " +
|
|
26
26
|
"Call generate_vibes first, user selects, then pass the selection here."),
|
|
27
|
-
writeFile: z.boolean().
|
|
28
|
-
"Returns a confirmation message instead of the full code, keeping context lightweight."
|
|
27
|
+
writeFile: z.boolean().default(true).describe("Write the file directly to disk instead of returning the code. " +
|
|
28
|
+
"Returns a confirmation message instead of the full code, keeping context lightweight. " +
|
|
29
|
+
"Defaults to true."),
|
|
29
30
|
};
|
|
30
31
|
export async function createFrontend(params) {
|
|
31
32
|
const { request, filePath, techStack, context, designSystem, writeFile } = params;
|
|
@@ -6,7 +6,7 @@ export declare const modifyFrontendSchema: {
|
|
|
6
6
|
filePath: z.ZodString;
|
|
7
7
|
context: z.ZodOptional<z.ZodString>;
|
|
8
8
|
scale: z.ZodOptional<z.ZodEnum<["refined", "balanced", "zoomed"]>>;
|
|
9
|
-
writeFile: z.
|
|
9
|
+
writeFile: z.ZodDefault<z.ZodBoolean>;
|
|
10
10
|
};
|
|
11
11
|
export declare function modifyFrontend(params: {
|
|
12
12
|
modification: string;
|
|
@@ -20,9 +20,10 @@ export const modifyFrontendSchema = {
|
|
|
20
20
|
"Example: 'Project uses: var(--font-heading), var(--bg-primary), .section-padding class'"),
|
|
21
21
|
scale: scaleSchema.optional().describe("Element sizing: 'refined' (small, elegant), 'balanced' (standard), 'zoomed' (large). " +
|
|
22
22
|
"Controls button sizes, typography, spacing, icons."),
|
|
23
|
-
writeFile: z.boolean().
|
|
23
|
+
writeFile: z.boolean().default(true).describe("Apply the modification directly to the file on disk. " +
|
|
24
24
|
"Reads the file, applies find/replace, and writes back. " +
|
|
25
|
-
"Returns a confirmation instead of the find/replace instructions."
|
|
25
|
+
"Returns a confirmation instead of the find/replace instructions. " +
|
|
26
|
+
"Defaults to true."),
|
|
26
27
|
};
|
|
27
28
|
export async function modifyFrontend(params) {
|
|
28
29
|
const { modification, targetCode, filePath, context, scale, writeFile } = params;
|
|
@@ -7,7 +7,7 @@ export declare const snippetFrontendSchema: {
|
|
|
7
7
|
insertionContext: z.ZodString;
|
|
8
8
|
context: z.ZodOptional<z.ZodString>;
|
|
9
9
|
scale: z.ZodOptional<z.ZodEnum<["refined", "balanced", "zoomed"]>>;
|
|
10
|
-
writeFile: z.
|
|
10
|
+
writeFile: z.ZodDefault<z.ZodBoolean>;
|
|
11
11
|
insertAtLine: z.ZodOptional<z.ZodNumber>;
|
|
12
12
|
insertAfterPattern: z.ZodOptional<z.ZodString>;
|
|
13
13
|
};
|
|
@@ -23,8 +23,9 @@ export const snippetFrontendSchema = {
|
|
|
23
23
|
"Without this, Gemini will create standalone styles that won't match your design system."),
|
|
24
24
|
scale: scaleSchema.optional().describe("Element sizing: 'refined' (small, elegant), 'balanced' (standard), 'zoomed' (large). " +
|
|
25
25
|
"Controls button sizes, typography, spacing, icons."),
|
|
26
|
-
writeFile: z.boolean().
|
|
27
|
-
"Requires insertAtLine OR insertAfterPattern to know where to insert."
|
|
26
|
+
writeFile: z.boolean().default(true).describe("Insert the snippet directly into the file on disk. " +
|
|
27
|
+
"Requires insertAtLine OR insertAfterPattern to know where to insert. " +
|
|
28
|
+
"Defaults to true."),
|
|
28
29
|
insertAtLine: z.number().optional().describe("Line number (1-indexed) where to insert the snippet. " +
|
|
29
30
|
"The snippet will be inserted AFTER this line. " +
|
|
30
31
|
"Required if writeFile is true and insertAfterPattern is not provided."),
|