fix: Add -s workspace-write parameter to all codex commands throughout codebase

- Updated all codex command examples to include -s workspace-write parameter
- Fixed commands in agent files, workflow files, and command documentation
- Ensures all codex commands follow proper sandbox security requirements
- Maintains consistency across all documentation and command examples

Files updated:
- CLAUDE.md: Core development guidelines
- RELEASE_NOTES_v1.3.0.md: Release documentation
- .claude/agents/action-planning-agent.md: Agent command templates
- .claude/commands/codex/*.md: All codex command documentation
- .claude/commands/workflow/*.md: Workflow execution templates

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

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
catlog22
2025-09-16 12:39:38 +08:00
parent 5867518ea0
commit 972771d080
9 changed files with 18 additions and 18 deletions

View File

@@ -113,7 +113,7 @@ Task(subagent_type="code-developer",
Output: pattern_analysis
Step 3 (implement): Implement JWT based on analysis
Command: codex --full-auto exec 'Implement JWT using analysis: [pattern_analysis] and context: [dependency_context]'
Command: codex -s workspace-write --full-auto exec 'Implement JWT using analysis: [pattern_analysis] and context: [dependency_context]'
Session Context:
- Workflow Directory: .workflow/WFS-user-auth/

View File

@@ -163,16 +163,16 @@ cd [module] && ~/.claude/scripts/gemini-wrapper -p "Find 3+ similar [feature_typ
#### Codex Analysis Templates
```bash
# Architectural analysis
codex --full-auto exec "analyze [scope] architecture and identify optimization opportunities"
codex -s workspace-write --full-auto exec "analyze [scope] architecture and identify optimization opportunities"
# Pattern-based development
codex --full-auto exec "analyze existing patterns for [feature] implementation with concrete examples"
codex -s workspace-write --full-auto exec "analyze existing patterns for [feature] implementation with concrete examples"
# Project understanding
codex --full-auto exec "analyze project structure, conventions, and development requirements"
codex -s workspace-write --full-auto exec "analyze project structure, conventions, and development requirements"
# Modernization analysis
codex --full-auto exec "identify modernization opportunities and refactoring priorities"
codex -s workspace-write --full-auto exec "identify modernization opportunities and refactoring priorities"
```
### Context Accumulation & Inheritance