mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-11 02:33:51 +08:00
feat: Optimize Codex prompt commands parameter flexibility
- Enhanced 14 commands with flexible parameter support - Standardized argument formats across all commands - Added English parameter descriptions for clarity - Maintained backward compatibility Commands optimized: - analyze-with-file: Added --depth, --max-iterations - brainstorm-with-file: Added --perspectives, --max-ideas, --focus - debug-with-file: Added --scope, --focus, --depth - issue-execute: Unified format, added --skip-tests, --skip-build, --dry-run - lite-plan-a/b/c: Added depth and execution control flags - execute: Added --parallel, --filter, --skip-tests - brainstorm-to-cycle: Unified to --session format, added --launch - lite-fix: Added --hotfix, --severity, --scope - clean: Added --focus, --target, --confirm - lite-execute: Unified --plan format, added execution control - compact: Added --description, --tags, --force - issue-new: Complete flexible parameter support Unchanged (already optimal): - issue-plan, issue-discover, issue-queue, issue-discover-by-prompt
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
---
|
||||
description: Execute all solutions from issue queue with git commit after each solution
|
||||
argument-hint: "--queue <queue-id> [--worktree [<existing-path>]]"
|
||||
description: Execute all solutions from issue queue with git commit after each solution. Supports batch processing and execution control.
|
||||
argument-hint: "--queue=<id> [--worktree=<path|new>] [--skip-tests] [--skip-build] [--dry-run] [--verbose]"
|
||||
---
|
||||
|
||||
# Issue Execute (Codex Version)
|
||||
@@ -19,6 +19,14 @@ Before starting execution, load project context:
|
||||
|
||||
This ensures execution follows project conventions and patterns.
|
||||
|
||||
## Parameters
|
||||
|
||||
- `--queue=<id>`: Queue ID to execute (REQUIRED)
|
||||
- `--worktree=<path|new>`: Worktree path or 'new' for creating new worktree
|
||||
- `--skip-tests`: Skip test execution during solution implementation
|
||||
- `--skip-build`: Skip build step
|
||||
- `--dry-run`: Preview execution without making changes
|
||||
|
||||
## Queue ID Requirement (MANDATORY)
|
||||
|
||||
**`--queue <queue-id>` parameter is REQUIRED**
|
||||
|
||||
Reference in New Issue
Block a user