mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-10 02:24:35 +08:00
docs: 更新CLI初始化命令以使用Write函数创建配置文件
This commit is contained in:
@@ -209,7 +209,7 @@ bash(find . -name "Dockerfile" | head -1)
|
|||||||
```bash
|
```bash
|
||||||
# Create .gemini/ directory and settings.json
|
# Create .gemini/ directory and settings.json
|
||||||
mkdir -p .gemini
|
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
|
# Create .geminiignore file with detected technology rules
|
||||||
# Backup existing files if present
|
# Backup existing files if present
|
||||||
@@ -219,7 +219,7 @@ echo '{"contextfilename": "CLAUDE.md"}' > .gemini/settings.json
|
|||||||
```bash
|
```bash
|
||||||
# Create .qwen/ directory and settings.json
|
# Create .qwen/ directory and settings.json
|
||||||
mkdir -p .qwen
|
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
|
# Create .qwenignore file with detected technology rules
|
||||||
# Backup existing files if present
|
# Backup existing files if present
|
||||||
|
|||||||
Reference in New Issue
Block a user