miyabi__analyze_task_intent
Analyzes user tasks to determine if they are development-related or general tasks, enabling appropriate routing and processing for optimal task handling.
Instructions
ユーザーのタスクを分析し、開発関連か一般タスクかを判定します
Input Schema
Name | Required | Description | Default |
---|---|---|---|
prompt | Yes | 分析するユーザーのプロンプト |
Input Schema (JSON Schema)
{
"properties": {
"prompt": {
"description": "分析するユーザーのプロンプト",
"type": "string"
}
},
"required": [
"prompt"
],
"type": "object"
}