Skip to content

Examples

Real-world TaskRepo workflows and configurations.

Example Workflows

Common Workflows

  • Personal task management
  • Team sprint planning
  • Bug tracking
  • Open source contributions

Configuration Examples

  • Developer setups
  • Team configurations
  • Project-specific settings

Quick Examples

Personal Task Management

tsk create-repo personal
tsk add -r personal -t "Buy groceries" --due tomorrow
tsk add -r personal -t "Call dentist" --tags health

Team Sprint

tsk create-repo sprint-24
tsk add -r sprint-24 -t "Implement auth" -p backend \
  --assignees @alice --priority H
tsk sync --repo sprint-24

Bug Tracking

tsk add -r work -t "Fix memory leak" \
  --tags bug,critical --priority H \
  --links https://github.com/org/repo/issues/456

See Also