// A specialized skill for frontend development tasks using the Gemini CLI. It leverages Gemini's multimodal capabilities for generating UI code (React, Tailwind CSS) from descriptions or images (screenshots).
| name | gemini-frontend-assistant |
| description | A specialized skill for frontend development tasks using the Gemini CLI. It leverages Gemini's multimodal capabilities for generating UI code (React, Tailwind CSS) from descriptions or images (screenshots). |
| category | frontend |
| version | 1.1.0 |
This skill integrates the Gemini CLI into your workflow to handle frontend development tasks. It is specifically optimized for generating React components, styling with Tailwind CSS, and converting visual references (screenshots) into code.
Use this skill when:
Prompt: "Create a [Component Name] that looks like [Description]"
Action:
The agent uses the gemini-generate.sh script to generate the code safely.
Prompt: "Turn this screenshot [Path to Image] into a React component."
Action:
The agent uses the gemini-generate.sh script with the image path.
Prompt: "Refactor this component [Path to File] to use [Pattern/Library]"
Action:
The agent uses the gemini-refactor.sh script to safely read file content and request refactoring.
Ensure you have the Gemini CLI installed and your API key configured.
# Check installation
gemini --version
Use the gemini-generate.sh script to create new components. It automatically includes your project's coding standards.
# Usage: ./scripts/gemini-generate.sh "<description>"
.claude/skills/gemini-frontend-assistant/scripts/gemini-generate.sh "A responsive navigation bar with a logo, links, and a dark mode toggle."
Pass an image path to the generation script to convert a screenshot into code.
# Usage: ./scripts/gemini-generate.sh "<description>" [image_path]
.claude/skills/gemini-frontend-assistant/scripts/gemini-generate.sh "Replicate this dashboard design pixel-perfectly." "ref-screenshots/dashboard.png"
Use the gemini-refactor.sh script to improve existing files safely.
# Usage: ./scripts/gemini-refactor.sh <file_path> "<instructions>"
.claude/skills/gemini-frontend-assistant/scripts/gemini-refactor.sh "src/components/MyComponent.tsx" "Refactor to use the new glass-bar utility class and fix accessibility issues."
src/css/custom.css), mention it in your prompt so Gemini generates compatible code.Note: If you get api key error ask the user to give api key, or ask for skip.