Agent Skill
2/7/2026

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.

M
motoki317
2GitHub Stars
1Views
npx skills add motoki317/dotfiles

SKILL.md

Nameexecution-workflow
DescriptionThis 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.

name: Execution Workflow description: 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.

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
  • Memory patterns from Serena

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

PriorityCategoryExamples
CriticalMust fixSecurity vulnerabilities, data corruption, breaking changes
ImportantShould fixLogic errors, missing error handling, performance issues
SuggestionNice to haveCode style, refactoring, documentation
PositiveDone wellGood 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
Skills Info
Original Name:execution-workflowAuthor:motoki317