gemini-design-mcp 3.6.12 → 3.6.13
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.
|
@@ -24,9 +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().default(
|
|
27
|
+
writeFile: z.boolean().default(false).describe("Write the file directly to disk instead of returning the code. " +
|
|
28
28
|
"Returns a confirmation message instead of the full code, keeping context lightweight. " +
|
|
29
|
-
"Defaults to
|
|
29
|
+
"Defaults to false."),
|
|
30
30
|
};
|
|
31
31
|
export async function createFrontend(params) {
|
|
32
32
|
const { request, filePath, techStack, context, designSystem, writeFile } = params;
|