diff --git a/CLAUDE.md b/GEMINI.md similarity index 100% rename from CLAUDE.md rename to GEMINI.md diff --git a/REFERENCE.md b/REFERENCE.md index 68eacce3..f073503a 100644 --- a/REFERENCE.md +++ b/REFERENCE.md @@ -1,6 +1,6 @@ # figma-ds-cli Command Reference -Full command reference for the Figma CLI. For quick start, see CLAUDE.md. +Full command reference for the Figma CLI. For quick start, see GEMINI.md. ## Design Tokens & Variables @@ -469,4 +469,4 @@ node src/index.js render '...' node src/index.js render '...' ``` -Or use `eval` with native Figma API for maximum control (see "Complex Components" in CLAUDE.md). +Or use `eval` with native Figma API for maximum control (see "Complex Components" in GEMINI.md). diff --git a/bin/fig-start b/bin/fig-start index ebf871b9..c913707e 100755 --- a/bin/fig-start +++ b/bin/fig-start @@ -1,7 +1,7 @@ #!/bin/bash -# fig-start — Launch Figma CLI + Claude Code -# Connects to Figma, lets you pick an open file, then launches Claude Code. +# fig-start — Launch Figma CLI + Gemini CLI +# Connects to Figma, lets you pick an open file, then launches Gemini CLI. # # Usage: # fig-start → Yolo Mode (default) with file selector @@ -188,12 +188,12 @@ if [ "$SAFE_MODE" = true ]; then echo "" # Skip file selector (Safe Mode only sees the active file via plugin) - echo -e " ${GREEN}Launching Claude Code...${NC}" + echo -e " ${GREEN}Launching Gemini CLI...${NC}" echo "" if [ "$STAY_HERE" = false ]; then cd "$REPO_PATH" || exit 1 fi - exec claude + exec gemini else # ── Yolo Mode: CDP-based connection ── # Check if CDP is already accessible (avoid killing/restarting Figma) @@ -259,12 +259,12 @@ for f in files: if [ ${#FILE_TITLES[@]} -eq 0 ]; then echo -e " ${YELLOW}No Figma files detected.${NC} Open a file in Figma first." echo "" - echo -e " Launching Claude Code anyway..." + echo -e " Launching Gemini CLI anyway..." echo "" if [ "$STAY_HERE" = false ]; then cd "$REPO_PATH" || exit 1 fi - exec claude + exec gemini fi SELECTED_TITLE="" @@ -279,11 +279,11 @@ for f in files: echo -e " ${GREEN}✓ File: ${BOLD}${SELECTED_TITLE}${NC}" echo "" - # Step 4: Launch Claude Code - echo -e " ${GREEN}Launching Claude Code...${NC}" + # Step 4: Launch Gemini CLI + echo -e " ${GREEN}Launching Gemini CLI...${NC}" echo "" if [ "$STAY_HERE" = false ]; then cd "$REPO_PATH" || exit 1 fi - exec claude + exec gemini fi diff --git a/src/index.js b/src/index.js index e0f0fe29..39fb9cac 100755 --- a/src/index.js +++ b/src/index.js @@ -869,7 +869,7 @@ program.action(async () => { }); function showQuickStart() { - console.log(chalk.white(' Just ask Claude:\n')); + console.log(chalk.white(' Just ask Gemini:\n')); console.log(chalk.white(' "Add shadcn colors to my project"')); console.log(chalk.white(' "Create a blue card with rounded corners"')); console.log(chalk.white(' "Show me what\'s on the canvas"')); @@ -982,7 +982,7 @@ program // Done! console.log(chalk.green('\n ✓ Setup complete!\n')); - console.log(chalk.white(' Just ask Claude:\n')); + console.log(chalk.white(' Just ask Gemini:\n')); console.log(chalk.white(' "Add shadcn colors to my project"')); console.log(chalk.white(' "Create a blue card with rounded corners"')); console.log(chalk.white(' "Show me what\'s on the canvas"'));