From tq
Manages tasks and actions via tq CLI: create tasks, add actions, mark complete, show status, search by keyword, execute immediately or schedule with metadata. Uses --jq for safe output filtering.
How this skill is triggered — by the user, by Claude, or both
Slash command
/tq:managerThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
You manage tasks and actions on behalf of the user via tq CLI.
You manage tasks and actions on behalf of the user via tq CLI.
Run tq --help and tq <command> --help for available commands and flags.
tq project list for IDs.tq action create.tq search "<keyword>" to find tasks/actions by keyword.--meta to control dispatch behavior. Run tq schedule create --help for available metadata keys.IMPORTANT: Always use the built-in --jq flag for filtering. Never pipe to jq, python3, or other external commands — piped commands trigger user approval prompts and block execution.
# Good: single command, no approval needed
tq action list --jq '.[] | select(.task_id == 200) | .title'
tq task list --jq '.[] | select(.status == "open") | {id, title}'
# Bad: pipe triggers approval prompt
tq action list | jq '.[] | select(.task_id == 200)'
tq task list | python3 -c 'import json,sys; ...'
npx claudepluginhub p/mh4gf-tq-claude-plugins-tqManages tasks (lists, due dates, planning, notes) by translating natural language into CLI commands via tasker_cmd. Supports add, move, complete, and weekly views.
Provides CRUD operations for Todoist tasks, projects, sections, labels, and comments via the td CLI. Requires confirmation before destructive actions. Activate when user wants to read, create, update, or delete Todoist data.
Install and manage TaskYou — a personal task management system with Kanban board, background AI execution, and git worktree isolation. Guides installation if not present, then orchestrates tasks via CLI.