graph TD A[Start] --> B{Specific task and subagent details provided?} B -->|No| C[Unable to generate subagent flow] B -->|Yes| D[Break down task into smaller components] D --> E[Identify inputs and outputs for each component] E --> F[Determine dependencies between components] F --> G[Create Mermaid flowchart for subagent] G --> H[Integrate subagent flow into overall agent workflow] H --> I[End]