mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-14 02:42:04 +08:00
feat: add Post-Completion Expansion to execution commands
执行命令完成后询问用户是否扩展为issue(test/enhance/refactor/doc),选中项调用 /issue:new
This commit is contained in:
@@ -311,6 +311,12 @@ Output:
|
|||||||
└─ .workflow/.debug/DBG-{slug}-{date}/debug.log
|
└─ .workflow/.debug/DBG-{slug}-{date}/debug.log
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Post-Completion Expansion
|
||||||
|
|
||||||
|
完成后询问用户是否扩展为issue(test/enhance/refactor/doc),选中项调用 `/issue:new "{summary} - {dimension}"`
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
## Error Handling
|
## Error Handling
|
||||||
|
|
||||||
| Situation | Action |
|
| Situation | Action |
|
||||||
|
|||||||
@@ -275,6 +275,10 @@ AskUserQuestion({
|
|||||||
- **"Enter Review"**: Execute `/workflow:review`
|
- **"Enter Review"**: Execute `/workflow:review`
|
||||||
- **"Complete Session"**: Execute `/workflow:session:complete`
|
- **"Complete Session"**: Execute `/workflow:session:complete`
|
||||||
|
|
||||||
|
### Post-Completion Expansion
|
||||||
|
|
||||||
|
完成后询问用户是否扩展为issue(test/enhance/refactor/doc),选中项调用 `/issue:new "{summary} - {dimension}"`
|
||||||
|
|
||||||
## Execution Strategy (IMPL_PLAN-Driven)
|
## Execution Strategy (IMPL_PLAN-Driven)
|
||||||
|
|
||||||
### Strategy Priority
|
### Strategy Priority
|
||||||
|
|||||||
@@ -664,6 +664,10 @@ Collected after each execution call completes:
|
|||||||
|
|
||||||
Appended to `previousExecutionResults` array for context continuity in multi-execution scenarios.
|
Appended to `previousExecutionResults` array for context continuity in multi-execution scenarios.
|
||||||
|
|
||||||
|
## Post-Completion Expansion
|
||||||
|
|
||||||
|
完成后询问用户是否扩展为issue(test/enhance/refactor/doc),选中项调用 `/issue:new "{summary} - {dimension}"`
|
||||||
|
|
||||||
**Fixed ID Pattern**: `${sessionId}-${groupId}` enables predictable lookup without auto-generated timestamps.
|
**Fixed ID Pattern**: `${sessionId}-${groupId}` enables predictable lookup without auto-generated timestamps.
|
||||||
|
|
||||||
**Resume Usage**: If `status` is "partial" or "failed", use `fixedCliId` to resume:
|
**Resume Usage**: If `status` is "partial" or "failed", use `fixedCliId` to resume:
|
||||||
|
|||||||
@@ -420,6 +420,10 @@ TodoWrite({ todos: [
|
|||||||
| **Analysis Modes** | 5 modes with --resume | Fixed synthesis rounds |
|
| **Analysis Modes** | 5 modes with --resume | Fixed synthesis rounds |
|
||||||
| **Best For** | Quick analysis, adversarial validation | Complex multi-step implementations |
|
| **Best For** | Quick analysis, adversarial validation | Complex multi-step implementations |
|
||||||
|
|
||||||
|
## Post-Completion Expansion
|
||||||
|
|
||||||
|
完成后询问用户是否扩展为issue(test/enhance/refactor/doc),选中项调用 `/issue:new "{summary} - {dimension}"`
|
||||||
|
|
||||||
## Related Commands
|
## Related Commands
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
|
|||||||
@@ -585,6 +585,10 @@ TodoWrite({
|
|||||||
- Mark completed immediately after each group finishes
|
- Mark completed immediately after each group finishes
|
||||||
- Update parent phase status when all child items complete
|
- Update parent phase status when all child items complete
|
||||||
|
|
||||||
|
## Post-Completion Expansion
|
||||||
|
|
||||||
|
完成后询问用户是否扩展为issue(test/enhance/refactor/doc),选中项调用 `/issue:new "{summary} - {dimension}"`
|
||||||
|
|
||||||
## Best Practices
|
## Best Practices
|
||||||
|
|
||||||
1. **Trust AI Planning**: Planning agent's grouping and execution strategy are based on dependency analysis
|
1. **Trust AI Planning**: Planning agent's grouping and execution strategy are based on dependency analysis
|
||||||
|
|||||||
@@ -491,6 +491,10 @@ The orchestrator automatically creates git commits at key checkpoints to enable
|
|||||||
|
|
||||||
**Note**: Final session completion creates additional commit with full summary.
|
**Note**: Final session completion creates additional commit with full summary.
|
||||||
|
|
||||||
|
## Post-Completion Expansion
|
||||||
|
|
||||||
|
完成后询问用户是否扩展为issue(test/enhance/refactor/doc),选中项调用 `/issue:new "{summary} - {dimension}"`
|
||||||
|
|
||||||
## Best Practices
|
## Best Practices
|
||||||
|
|
||||||
1. **Default Settings Work**: 10 iterations sufficient for most cases
|
1. **Default Settings Work**: 10 iterations sufficient for most cases
|
||||||
|
|||||||
Reference in New Issue
Block a user