Feature Description
Create reusable task templates for common workflows.
Use Case
We frequently create similar tasks:
- QA testing tasks (same checklist)
- Code review tasks (same criteria)
- Deploy tasks (same steps)
Expected Behavior
# Create template
clawteam template create team qa-test \
--subject "QA Test: {feature}" \
--owner qa_agent \
--tags qa,testing
# Use template
clawteam task create-from-template team qa-test feature="Login Page"
# Creates: QA Test: Login Page (owner: qa_agent, tags: qa,testing)
Benefits
- Consistency
- Reduced manual entry
- Standardized workflows
Feature Description
Create reusable task templates for common workflows.
Use Case
We frequently create similar tasks:
Expected Behavior
Benefits