From 39c956c703b641eb8143a2139b89fa20bc7d12f9 Mon Sep 17 00:00:00 2001 From: catlog22 Date: Wed, 5 Nov 2025 22:13:02 +0800 Subject: [PATCH] =?UTF-8?q?docs:=20=E6=9B=B4=E6=96=B0CLI=E5=88=9D=E5=A7=8B?= =?UTF-8?q?=E5=8C=96=E5=91=BD=E4=BB=A4=E4=BB=A5=E4=BD=BF=E7=94=A8Write?= =?UTF-8?q?=E5=87=BD=E6=95=B0=E5=88=9B=E5=BB=BA=E9=85=8D=E7=BD=AE=E6=96=87?= =?UTF-8?q?=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .claude/commands/cli/cli-init.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.claude/commands/cli/cli-init.md b/.claude/commands/cli/cli-init.md index 7feb18c1..a82b6080 100644 --- a/.claude/commands/cli/cli-init.md +++ b/.claude/commands/cli/cli-init.md @@ -209,7 +209,7 @@ bash(find . -name "Dockerfile" | head -1) ```bash # Create .gemini/ directory and settings.json mkdir -p .gemini -echo '{"contextfilename": "CLAUDE.md"}' > .gemini/settings.json +Write({file_path: '.gemini/settings.json', content: '{"contextfilename": "CLAUDE.md"}'}) # Create .geminiignore file with detected technology rules # Backup existing files if present @@ -219,7 +219,7 @@ echo '{"contextfilename": "CLAUDE.md"}' > .gemini/settings.json ```bash # Create .qwen/ directory and settings.json mkdir -p .qwen -echo '{"contextfilename": "CLAUDE.md"}' > .qwen/settings.json +Write({file_path: '.qwen/settings.json', content: '{"contextfilename": "CLAUDE.md"}'}) # Create .qwenignore file with detected technology rules # Backup existing files if present