Prompt templates let you define reusable instruction patterns for tasks. Instead of writing the same boilerplate in every task description, create a template and apply it automatically.Documentation Index
Fetch the complete documentation index at: https://docs.claboard.dev/llms.txt
Use this file to discover all available pages before exploring further.
How Templates Work
A template is a text block with optional variables that get replaced when a task starts. The rendered template is prepended to the task description before sending to Claude.Variables
Templates support these built-in variables:| Variable | Resolves To |
|---|---|
{{project_name}} | The project’s name |
{{task_title}} | The task’s title |
{{task_type}} | feature, bugfix, refactor, etc. |
{{priority}} | low, medium, high, urgent |
{{model}} | opus, sonnet, haiku |
Task Type Defaults
Assign a default template to each task type. When a new task of that type is created, the template is automatically applied:| Task Type | Example Template Focus |
|---|---|
feature | Architecture guidelines, test requirements |
bugfix | Reproduce first, minimal fix, add regression test |
refactor | No behavior changes, maintain test coverage |
docs | Follow style guide, update table of contents |
test | Coverage targets, edge cases, mocking strategy |