agentic_issue_analyze
Analyze GitHub issues using AI to automatically categorize content and assign appropriate labels for better issue management and workflow organization.
Instructions
IssueAgent実行 - Issue内容AI分析・Label自動付与
Input Schema
Name | Required | Description | Default |
---|---|---|---|
body | Yes | Issue 本文 | |
issue_number | Yes | GitHub Issue番号 | |
title | Yes | Issue タイトル |
Input Schema (JSON Schema)
{
"properties": {
"body": {
"description": "Issue 本文",
"type": "string"
},
"issue_number": {
"description": "GitHub Issue番号",
"type": "number"
},
"title": {
"description": "Issue タイトル",
"type": "string"
}
},
"required": [
"issue_number",
"title",
"body"
],
"type": "object"
}