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 mh4gf/tqInstalls TaskYou if missing, then automates Kanban task management via CLI: board surveys, execution queueing, blocking/unblocking, and direct executor interaction.
Orchestrates task lifecycles by creating, assigning, completing, archiving, and inspecting tasks via `agent-team task` CLI commands for controller and human sessions.
Queues a single task from conversation using `tsk add`. Summarizes discussions into templated prompts with task names for asynchronous agent execution.