add_commentタスクにコメントを追加Input schema{
"type": "object",
"properties": {
"repo": {
"type": "string",
"description": "GitHubリポジトリ名"
},
"issue_number": {
"type": "string",
"description": "タスク(Issue)のID"
},
"body": {
"type": "string",
"description": "コメントの内容(Markdown形式対応)"
},
"state": {
"type": "string",
"enum": [
"open",
"closed"
],
"description": "コメント時に変更するissueの状態(オプション)"
}
},
"required": [
"repo",
"issue_number",
"body"
]
} | — | | — |
create_issue新しいissueを作成しますInput schema{
"type": "object",
"properties": {
"repo": {
"type": "string",
"description": "GitHubリポジトリ名"
},
"title": {
"type": "string",
"description": "issueのタイトル"
},
"emoji": {
"type": "string",
"description": "タイトルの先頭に付与するユニークな絵文字"
},
"body": {
"type": "string",
"description": "issueの本文(## の先頭には絵文字を付与して可読性を上げて)"
},
"labels": {
"type": "array",
"items": {
"type": "string"
},
"description": "issueのラベル"
},
"assignees": {
"type": "array",
"items": {
"type": "string"
},
"description": "アサインするユーザー"
}
},
"required": [
"repo",
"title"
]
} | — | | — |
list_issuesカンバンボードのissue一覧を取得しますInput schema{
"type": "object",
"properties": {
"repo": {
"type": "string",
"description": "GitHubリポジトリ名"
},
"state": {
"type": "string",
"enum": [
"open",
"closed",
"all"
],
"description": "issueの状態"
},
"labels": {
"type": "array",
"items": {
"type": "string"
},
"description": "フィルタリングするラベル"
}
},
"required": [
"repo"
]
} | — | | — |
update_issue既存のissueを更新しますInput schema{
"type": "object",
"properties": {
"repo": {
"type": "string",
"description": "GitHubリポジトリ名"
},
"issue_number": {
"type": "number",
"description": "issue番号"
},
"title": {
"type": "string",
"description": "新しいタイトル"
},
"emoji": {
"type": "string",
"description": "タイトルの先頭に付与する絵文字"
},
"body": {
"type": "string",
"description": "新しい本文"
},
"state": {
"type": "string",
"enum": [
"open",
"closed"
],
"description": "新しい状態"
},
"labels": {
"type": "array",
"items": {
"type": "string"
},
"description": "新しいラベル"
},
"assignees": {
"type": "array",
"items": {
"type": "string"
},
"description": "新しいアサイン"
}
},
"required": [
"repo",
"issue_number"
]
} | — | | — |