Code Review Workflow

Command Palette

Search for a command to run...

Back

Code Review Workflow

v1.0.0

Automated code review workflow that analyzes code changes and provides feedback.

developmentcode-reviewautomation
Workflow Structure
Nodes3
Edges2
Formatpython
TaskReview code changes and provide automated feedback
Content
Code Review Workflow
====================
Analyzes code changes and provides automated review feedback.

Entry: analyzer

Nodes:
  - id: analyzer
    type: agent
    name: Code Analyzer
    description: "Analyzes code for issues and patterns"
    
  - id: security
    type: agent
    name: Security Reviewer
    description: "Checks for security vulnerabilities"
    
  - id: reporter
    type: agent
    name: Report Generator
    description: "Generates a review report"

Edges:
  - source: analyzer
    target: security
    
  - source: security
    target: reporter