mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-11 02:33:51 +08:00
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:
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user