create_conversation_starters
Generate tailored conversation prompts to help AI agents quickly understand project context, enabling efficient collaboration and accurate responses based on project-specific details.
Instructions
Create conversation starters to help AI understand project context quickly
Input Schema
Name | Required | Description | Default |
---|---|---|---|
analysisId | No | Analysis ID from analyze_codebase_deeply | |
customTasks | No | Custom quick tasks to include | |
includeCurrentWork | No | Include recent git commits | |
includeQuickTasks | No | Include common quick tasks section | |
projectPath | Yes | Path to the project directory | |
tokenLimit | No | Maximum tokens for the file |
Input Schema (JSON Schema)
{
"properties": {
"analysisId": {
"description": "Analysis ID from analyze_codebase_deeply",
"type": "string"
},
"customTasks": {
"description": "Custom quick tasks to include",
"items": {
"type": "string"
},
"type": "array"
},
"includeCurrentWork": {
"description": "Include recent git commits",
"type": "boolean"
},
"includeQuickTasks": {
"description": "Include common quick tasks section",
"type": "boolean"
},
"projectPath": {
"description": "Path to the project directory",
"type": "string"
},
"tokenLimit": {
"description": "Maximum tokens for the file",
"type": "number"
}
},
"required": [
"projectPath"
],
"type": "object"
}