feat: Update documentation to reflect v1.1 unified CLI architecture

- Update README.md and README_CN.md to v1.1 with unified Gemini/Codex CLI integration
- Add comprehensive Codex command documentation with autonomous development capabilities
- Enhance CLI tool guidelines with shared template system architecture
- Consolidate documentation structure removing outdated CLAUDE.md files
- Reflect current project state with dual CLI workflow coordination

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
catlog22
2025-09-10 22:20:05 +08:00
parent a944e31962
commit 7bbf835b04
12 changed files with 1453 additions and 160 deletions

View File

@@ -113,6 +113,18 @@ Templates are shared between gemini and codex. This structure must be located at
### 📦 Standard Command Structures
- **Module-Specific Development (Folder Analysis Required)**
```bash
# MUST use @{folder/**/*} pattern since codex has no --all-files
codex exec "@{src/auth/**/*,CLAUDE.md} Refactor authentication module using latest patterns"
# Alternative: use --cd flag to navigate + include folder
codex --cd src/auth exec "@{**/*,../../CLAUDE.md} Implement JWT refresh token functionality"
# For comprehensive module analysis
codex exec "@{backend/services/**/*,package.json,CLAUDE.md} Optimize service layer performance"
```
- **Basic Development Task**
```bash
codex exec "@{src/**/*,*.json,CLAUDE.md} Implement user authentication with JWT"

View File

@@ -108,6 +108,18 @@ Templates are shared between gemini and codex. This structure can be located at
These are recommended command templates for common scenarios.
- **Module-Specific Analysis (Quick Module Analysis)**
```bash
# Navigate to module directory for focused analysis
cd src/auth && gemini --all-files -p "Analyze authentication module patterns and implementation"
# Or specify module from root directory
cd backend/services && gemini --all-files -p "Review service architecture and dependencies"
# Template-enhanced module analysis
cd frontend/components && gemini --all-files -p "$(cat ~/.claude/workflows/cli-templates/prompts/analysis/pattern.txt)"
```
- **Basic Structure (Manual Prompt)**
```bash
gemini --all-files -p "@{target_patterns} @{CLAUDE.md,**/*CLAUDE.md}