mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-10 02:24:35 +08:00
Refactor Codex Issue Plan-Execute Skill Documentation and CLI Options
- Deleted obsolete INDEX.md and OPTIMIZATION_SUMMARY.md files, consolidating documentation for improved clarity and organization. - Removed skipGitRepoCheck option from CLI execution parameters to streamline command usage. - Updated CLI executor utilities to automatically skip git repository checks, allowing execution in non-git directories. - Enhanced documentation with new ARCHITECTURE.md and INDEX.md files for better navigation and understanding of the system architecture. - Created CONTENT_MIGRATION_REPORT.md to verify zero content loss during the consolidation process.
This commit is contained in:
@@ -254,6 +254,8 @@ export function buildCommand(params: {
|
||||
// codex review uses -c key=value for config override, not -m
|
||||
args.push('-c', `model=${model}`);
|
||||
}
|
||||
// Skip git repo check by default for codex (allows non-git directories)
|
||||
args.push('--skip-git-repo-check');
|
||||
// codex review uses positional prompt argument, not stdin
|
||||
useStdin = false;
|
||||
if (prompt) {
|
||||
@@ -280,6 +282,8 @@ export function buildCommand(params: {
|
||||
args.push('--add-dir', addDir);
|
||||
}
|
||||
}
|
||||
// Skip git repo check by default for codex (allows non-git directories)
|
||||
args.push('--skip-git-repo-check');
|
||||
// Enable JSON output for structured parsing
|
||||
args.push('--json');
|
||||
// codex resume uses positional prompt argument, not stdin
|
||||
@@ -302,6 +306,8 @@ export function buildCommand(params: {
|
||||
args.push('--add-dir', addDir);
|
||||
}
|
||||
}
|
||||
// Skip git repo check by default for codex (allows non-git directories)
|
||||
args.push('--skip-git-repo-check');
|
||||
// Enable JSON output for structured parsing
|
||||
args.push('--json');
|
||||
args.push('-');
|
||||
|
||||
Reference in New Issue
Block a user