# Execution Workflow

> This skill should be used when the user asks to "execute task", "implement feature", "delegate work", "run workflow", "review code", "code quality check", or needs task orchestration and code review guidance. Provides execution, delegation, and code review patterns. Use when this capability is needed.

- Skill: `tomevault-io/execution-workflow-2` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add tomevault-io/execution-workflow-2`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tomevault-io/execution-workflow-2/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Productivity
- Author: tomevault-io (https://skillmd.com/u/tomevault-io)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/tomevault-io/execution-workflow-2

---


# Task Execution and Code Review Patterns

## Delegation Principles

### Parallel vs Sequential
- **Parallel**: Independent tasks (quality + security, test + docs when independent)
- **Sequential**: Tasks with data dependencies; verify outputs before dependent tasks start

### Delegation Context
Sub-agents need:
- Specific scope and expected deliverables
- Target file paths
- MCP tool usage instructions
- Reference implementations
- Relevant memory patterns

## Code Review Phases

### Phase 1: Initial Scan
- Syntax errors and typos
- Missing imports/dependencies
- Obvious logic errors
- Code style violations

### Phase 2: Deep Analysis
- Algorithm correctness
- Edge case handling
- Error handling completeness
- Resource management

### Phase 3: Context Evaluation
- Breaking changes to public APIs
- Side effects on existing functionality
- Dependency compatibility

### Phase 4: Standards Compliance
- Naming conventions
- Documentation requirements
- Test coverage

## Feedback Categories

| Priority | Category | Examples |
|----------|----------|----------|
| Critical | Must fix | Security vulnerabilities, data corruption, breaking changes |
| Important | Should fix | Logic errors, missing error handling, performance issues |
| Suggestion | Nice to have | Code style, refactoring, documentation |
| Positive | Done well | Good patterns, clever solutions, thorough testing |

## Review Output Format
```
Summary: [overall assessment]
Critical Issues: [must-fix with file:line refs]
Important Issues: [should-fix items]
Suggestions: [optional improvements]
Positive Feedback: [good practices observed]
```

## Critical Rules
- Execute independent tasks in parallel
- Never parallelize tasks with data dependencies
- Verify sub-agent outputs before integration
- Balance critical feedback with positive observations
- Provide file:line references for all issues

---
> Converted and distributed by [TomeVault](https://tomevault.io/claim/motoki317) — claim your Tome and manage your conversions.
<!-- tomevault:4.0:skill_md:2026-04-13 -->

