--- name: template description: Manage session templates for common workflows aliases: [templates, session-template] invokes: command:template --- # Template Command Create and use session templates for repeatable workflows. ## Usage ``` /template # List all templates /template --use # Display template for use /template --create # Create new template /template --delete # Delete a template ``` ## Implementation ```bash python3 ~/.claude/automation/session-template.py [options] ``` ## Built-in Templates | Name | Category | Description | |------|----------|-------------| | `daily-standup` | routine | Morning status check and planning | | `code-review` | development | Review code changes in a project | | `troubleshoot` | debugging | Debug an issue systematically | | `deploy` | operations | Deploy application to environment | ## Template Contents Each template includes: - **Description** - What the template is for - **Category** - Grouping for organization - **Context level** - How much context to gather - **Initial commands** - Commands to run at start - **Checklist** - Steps to follow - **Prompt template** - Suggested starting prompt