interactive_feedback
Request and receive interactive feedback for project directories and summaries by sharing context with AI assistants to refine and enhance development workflows.
Instructions
Request interactive feedback for a given project directory and summary
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_directory | Yes | Path to the project directory | |
summary | Yes | Summary of the request or context |
Input Schema (JSON Schema)
{
"properties": {
"project_directory": {
"description": "Path to the project directory",
"type": "string"
},
"summary": {
"description": "Summary of the request or context",
"type": "string"
}
},
"required": [
"project_directory",
"summary"
],
"type": "object"
}