agentic_codegen_execute
Generate and test code automatically for GitHub issues using AI-driven development workflows. Analyzes issues, creates code, and prepares pull requests to streamline software development processes.
Instructions
CodeGenAgent実行 - AI駆動コード生成・テスト自動生成
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | Yes | タスク詳細 | |
issue_number | Yes | GitHub Issue番号 | |
priority | No | 優先度 | |
title | Yes | タスクタイトル |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "タスク詳細",
"type": "string"
},
"issue_number": {
"description": "GitHub Issue番号",
"type": "number"
},
"priority": {
"description": "優先度",
"enum": [
"P0-緊急",
"P1-高",
"P2-中",
"P3-低"
],
"type": "string"
},
"title": {
"description": "タスクタイトル",
"type": "string"
}
},
"required": [
"issue_number",
"title",
"description"
],
"type": "object"
}