interactive_feedback
Enable real-time human-in-the-loop feedback for AI-assisted development. Submit project directory and summary to request interactive review, improving collaboration and accuracy in AI-generated outputs.
Instructions
Request interactive 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)
{
"additionalProperties": false,
"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"
],
"type": "object"
}