feat(codeagent-wrapper): v5.4.0 structured execution report (#94)

Merging PR #94 with code review fixes applied.

All Critical and Major issues from code review have been addressed:
- 11/13 issues fixed (2 minor optimizations deferred)
- Test coverage: 88.4%
- All tests passing
- Security vulnerabilities patched
- Documentation updated

The code review fixes have been committed to pr-94 branch and are ready for integration.
This commit is contained in:
tytsxai
2025-12-24 08:53:58 +07:00
committed by GitHub
parent 3fd3c67749
commit 70b1896011
14 changed files with 759 additions and 58 deletions

BIN
skills/.DS_Store vendored Normal file

Binary file not shown.

View File

@@ -101,11 +101,12 @@ EOF
## Parallel Execution
**With global backend**:
**Default (summary mode - context-efficient):**
```bash
codeagent-wrapper --parallel --backend claude <<'EOF'
codeagent-wrapper --parallel <<'EOF'
---TASK---
id: task1
backend: codex
workdir: /path/to/dir
---CONTENT---
task content
@@ -117,6 +118,17 @@ dependent task
EOF
```
**Full output mode (for debugging):**
```bash
codeagent-wrapper --parallel --full-output <<'EOF'
...
EOF
```
**Output Modes:**
- **Summary (default)**: Structured report with changes, output, verification, and review summary.
- **Full (`--full-output`)**: Complete task messages. Use only when debugging specific failures.
**With per-task backend**:
```bash
codeagent-wrapper --parallel <<'EOF'