Search & Filters¶
Master task discovery with search and filtering.
Text Search¶
Basic Search¶
Searches across: - Task titles - Descriptions - Project names - Tags
Case Insensitive¶
All searches are case-insensitive:
Search with Filters¶
Combine search with filters:
tsk search "auth" --priority H
tsk search "bug" --repo work
tsk search "api" --status pending --project backend
Filter Options¶
By Repository¶
By Status¶
tsk list --status pending
tsk list --status in-progress
tsk list --status completed
tsk list --status cancelled
Short form:
By Priority¶
By Project¶
By Assignee¶
By Tag¶
Combining Filters¶
Stack multiple filters:
All filters must match (AND logic).
Include Completed¶
By default, search excludes completed tasks.
Include all tasks:
Filter Examples¶
Urgent Work Items¶
My Pending Tasks¶
Backend Bugs¶
Overdue Tasks¶
Interactive Filtering¶
TUI Filters¶
Launch TUI and press /:
Filters work on visible tasks.
Search vs List¶
tsk search: Text query + filters - Searches content across fields - Excludes completed by default
tsk list: Filters only - No text search - Shows all statuses
Advanced Patterns¶
Find All High Priority¶
Find Team's Tasks¶
Find Tagged Items¶
Note: Currently shows tasks with ANY tag (OR logic)
Saved Filters (Coming Soon)¶
Future feature: Save frequently used filters.
Tips & Tricks¶
Fuzzy Search
Search matches partial strings: "auth" finds "authentication"
Filter Then Operate
Use filters to find tasks, then operate on them
TUI for Visual Filtering
Use tsk tui with / for visual, interactive filtering
Filter Reference¶
| Filter | Short | Values | Example |
|---|---|---|---|
--repo | -r | Repository name | --repo work |
--status | -s | pending/in-progress/completed/cancelled | --status pending |
--priority | H/M/L | --priority H | |
--project | -p | Project name | --project backend |
--assignee | -a | @username | --assignee @alice |
--tag | -t | Tag name | --tag bug |
--all | Include completed | --all |
See Also¶
- Task Management - Managing tasks
- Interactive TUI - Visual filtering
- Quick Reference - Command reference