user_feedback
Request user feedback on project changes by providing the directory path and a summary. Facilitates human-in-the-loop workflows for testing complex desktop application interactions.
Instructions
Request user feedback for a given project directory and summary
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_directory | Yes | Full path to the project directory | |
summary | Yes | Short, one-line summary of the changes |
Input Schema (JSON Schema)
{
"properties": {
"project_directory": {
"description": "Full path to the project directory",
"title": "Project Directory",
"type": "string"
},
"summary": {
"description": "Short, one-line summary of the changes",
"title": "Summary",
"type": "string"
}
},
"required": [
"project_directory",
"summary"
],
"title": "user_feedbackArguments",
"type": "object"
}