agentic_pr_create
Automatically create GitHub pull requests with AI-generated descriptions by providing an issue number. This tool analyzes issues and generates comprehensive PR content to streamline development workflows.
Instructions
PRAgent実行 - PR自動作成・説明文AI生成
Input Schema
Name | Required | Description | Default |
---|---|---|---|
branch_name | No | ブランチ名(オプション) | |
issue_number | Yes | GitHub Issue番号 |
Input Schema (JSON Schema)
{
"properties": {
"branch_name": {
"description": "ブランチ名(オプション)",
"type": "string"
},
"issue_number": {
"description": "GitHub Issue番号",
"type": "number"
}
},
"required": [
"issue_number"
],
"type": "object"
}