mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-13 02:41:50 +08:00
fix: Simplify configuration section to only include essential settings
## Configuration Section Correction: ### Removed Unnecessary Configurations: - **Gemini CLI**: Removed `outputFormat` and `templateDirectory` - these are not standard or required - **Codex CLI**: Removed entire section - Codex CLI configuration is not part of CCW setup - **Local Settings**: Removed `.claude/settings.local.json` section - not part of core configuration ### Retained Essential Setting: - **Only `contextFileName: "CLAUDE.md"`**: This is the critical setting needed for CCW integration with Gemini CLI - **Clear explanation**: Added description of why this setting is necessary ### Benefits: - **Simplified setup**: Users only need to configure what's actually required - **Reduced confusion**: No more unnecessary or potentially incorrect configuration examples - **Focus on essentials**: Streamlined to core functionality requirements - **Bilingual consistency**: Applied same fixes to both English and Chinese versions The configuration section now accurately reflects only the settings that are necessary for CCW to function properly. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
39
README.md
39
README.md
@@ -280,46 +280,17 @@ cd src/api && /update-memory-related
|
|||||||
|
|
||||||
## Configuration
|
## Configuration
|
||||||
|
|
||||||
### Gemini CLI Integration
|
### Required Configuration
|
||||||
|
For optimal CCW integration, configure Gemini CLI settings:
|
||||||
|
|
||||||
```json
|
```json
|
||||||
// ~/.gemini/settings.json or .gemini/settings.json
|
// ~/.gemini/settings.json or .gemini/settings.json
|
||||||
{
|
{
|
||||||
"contextFileName": "CLAUDE.md",
|
"contextFileName": "CLAUDE.md"
|
||||||
"outputFormat": "markdown",
|
|
||||||
"templateDirectory": "~/.claude/workflows/cli-templates"
|
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
### Codex CLI Integration
|
This setting ensures that CCW's intelligent documentation system integrates properly with Gemini CLI workflows.
|
||||||
```json
|
|
||||||
// ~/.codex/settings.json or .codex/settings.json
|
|
||||||
{
|
|
||||||
"defaultMode": "full-auto",
|
|
||||||
"contextFiles": ["CLAUDE.md", "**/*CLAUDE.md"],
|
|
||||||
"templateDirectory": "~/.claude/workflows/cli-templates"
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
### Local Settings
|
|
||||||
```json
|
|
||||||
// .claude/settings.local.json
|
|
||||||
{
|
|
||||||
"projectType": "web-application",
|
|
||||||
"techStack": ["react", "typescript", "node"],
|
|
||||||
"agents": {
|
|
||||||
"defaultReviewer": "code-review-agent",
|
|
||||||
"defaultDeveloper": "code-developer"
|
|
||||||
},
|
|
||||||
"complexity": {
|
|
||||||
"autoDetection": true,
|
|
||||||
"thresholds": {
|
|
||||||
"simple": 5,
|
|
||||||
"medium": 15,
|
|
||||||
"complex": 25
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
## Contributing
|
## Contributing
|
||||||
|
|
||||||
|
|||||||
39
README_CN.md
39
README_CN.md
@@ -280,46 +280,17 @@ cd src/api && /update-memory-related
|
|||||||
|
|
||||||
## 配置
|
## 配置
|
||||||
|
|
||||||
### Gemini CLI集成
|
### 必需配置
|
||||||
|
为了实现最佳的CCW集成效果,请配置Gemini CLI设置:
|
||||||
|
|
||||||
```json
|
```json
|
||||||
// ~/.gemini/settings.json 或 .gemini/settings.json
|
// ~/.gemini/settings.json 或 .gemini/settings.json
|
||||||
{
|
{
|
||||||
"contextFileName": "CLAUDE.md",
|
"contextFileName": "CLAUDE.md"
|
||||||
"outputFormat": "markdown",
|
|
||||||
"templateDirectory": "~/.claude/workflows/cli-templates"
|
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
### Codex CLI集成
|
此设置确保CCW的智能文档系统能够与Gemini CLI工作流正确集成。
|
||||||
```json
|
|
||||||
// ~/.codex/settings.json 或 .codex/settings.json
|
|
||||||
{
|
|
||||||
"defaultMode": "full-auto",
|
|
||||||
"contextFiles": ["CLAUDE.md", "**/*CLAUDE.md"],
|
|
||||||
"templateDirectory": "~/.claude/workflows/cli-templates"
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
### 本地设置
|
|
||||||
```json
|
|
||||||
// .claude/settings.local.json
|
|
||||||
{
|
|
||||||
"projectType": "web-application",
|
|
||||||
"techStack": ["react", "typescript", "node"],
|
|
||||||
"agents": {
|
|
||||||
"defaultReviewer": "code-review-agent",
|
|
||||||
"defaultDeveloper": "code-developer"
|
|
||||||
},
|
|
||||||
"complexity": {
|
|
||||||
"autoDetection": true,
|
|
||||||
"thresholds": {
|
|
||||||
"simple": 5,
|
|
||||||
"medium": 15,
|
|
||||||
"complex": 25
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
## 贡献
|
## 贡献
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user