miyabi__handle_development_task
Process development tasks by creating issues and executing agents to handle coding, debugging, and project management workflows.
Instructions
開発タスクを処理します(Issue作成→Agent実行)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
projectPath | No | プロジェクトのパス(オプション) | |
prompt | Yes | 開発タスクの内容 |
Input Schema (JSON Schema)
{
"properties": {
"projectPath": {
"description": "プロジェクトのパス(オプション)",
"type": "string"
},
"prompt": {
"description": "開発タスクの内容",
"type": "string"
}
},
"required": [
"prompt"
],
"type": "object"
}