generate_session
Create structured Learning Hour sessions for Technical Coaches by specifying a topic, enabling deliberate practice and technical excellence.
Instructions
Generate comprehensive Learning Hour content for Technical Coaches
Input Schema
Name | Required | Description | Default |
---|---|---|---|
topic | Yes | The learning topic (e.g., 'Feature Envy', 'DRY Principle') |
Input Schema (JSON Schema)
{
"properties": {
"topic": {
"description": "The learning topic (e.g., 'Feature Envy', 'DRY Principle')",
"type": "string"
}
},
"required": [
"topic"
],
"type": "object"
}