mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-13 02:41:50 +08:00
refactor: Update all codex commands to use -s danger-full-access and correct syntax
- Move -s parameter to end of command: codex --full-auto exec "..." -s danger-full-access - Change default sandbox mode from workspace-write to danger-full-access - Add missing --full-auto parameter to commands requiring autonomous development - Add missing exec parameter to all codex commands - Add missing -s danger-full-access parameter to multi-line commands - Update all documentation and examples to use consistent syntax - Fix CLAUDE.md detection functionality in detect_changed_modules.sh script Files updated: - Core configuration: CLAUDE.md, RELEASE_NOTES_v1.3.0.md - Documentation: tools-implementation-guide.md, intelligent-tools-strategy.md - Command files: All .claude/commands/codex/*.md and workflow/*.md files - Agent templates: action-planning-agent.md - Scripts: detect_changed_modules.sh 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -19,7 +19,7 @@ Leverages Codex's `--full-auto` mode for autonomous development with intelligent
|
||||
|
||||
**Process**: Analyze Input → Select Templates → Gather Context → Execute Autonomous Development
|
||||
|
||||
⚠️ **Critical Feature**: Uses `codex -s workspace-write --full-auto` for maximum autonomous capability with mandatory `@` pattern requirements.
|
||||
⚠️ **Critical Feature**: Uses `codex --full-auto ... -s danger-full-access` for maximum autonomous capability with mandatory `@` pattern requirements.
|
||||
|
||||
## Usage
|
||||
|
||||
@@ -137,7 +137,7 @@ END FUNCTION
|
||||
### Step 3: Execute with Full Auto Mode
|
||||
```bash
|
||||
# Autonomous development execution with comprehensive context
|
||||
codex -s workspace-write --full-auto "@{**/*} @{CLAUDE.md,**/*CLAUDE.md} $(cat ~/.claude/workflows/cli-templates/prompts/[selected_template])
|
||||
codex --full-auto "@{**/*} @{CLAUDE.md,**/*CLAUDE.md} $(cat ~/.claude/workflows/cli-templates/prompts/[selected_template])
|
||||
|
||||
Development Task: [user_input]
|
||||
|
||||
@@ -146,7 +146,7 @@ Autonomous Implementation Requirements:
|
||||
- Code generation with best practices
|
||||
- Automatic testing integration
|
||||
- Documentation updates
|
||||
- Error handling and validation"
|
||||
- Error handling and validation" -s danger-full-access
|
||||
```
|
||||
|
||||
## Essential Codex Auto Patterns
|
||||
|
||||
Reference in New Issue
Block a user