Help us improve
Share bugs, ideas, or general feedback.
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.
npx claudepluginhub mh4gf/tqHow 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.
Orchestrates task lifecycles by creating, assigning, completing, archiving, and inspecting tasks via `agent-team task` CLI commands for controller and human sessions.
Installs and manages TaskYou, a personal task management system with Kanban board, background AI execution, and git worktree isolation. Guides installation if missing, then orchestrates tasks via CLI.
Queues a single task from conversation using `tsk add`. Summarizes discussions into templated prompts with task names for asynchronous agent execution.
Share bugs, ideas, or general feedback.
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; ...'