agentic_coordinator_decompose
Break down GitHub development tasks into structured workflows by analyzing issues, decomposing requirements, and selecting appropriate agents for automated code generation and review processes.
Instructions
CoordinatorAgent実行 - タスク分解(DAG構築)・Agent選定
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | Yes | タスク詳細 | |
issue_number | Yes | GitHub Issue番号 | |
title | Yes | タスクタイトル |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "タスク詳細",
"type": "string"
},
"issue_number": {
"description": "GitHub Issue番号",
"type": "number"
},
"title": {
"description": "タスクタイトル",
"type": "string"
}
},
"required": [
"issue_number",
"title",
"description"
],
"type": "object"
}