用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/version-1/tasq --skill tq-orchestrator命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | tq-orchestrator |
| description | Poll ready issues from the tq issue tracker with the Monitor tool and delegate them to subagents |
This skill is intended to run inside a Claude Code agent. If it is run outside of Claude Code, return an error.
Provide the orchestrator layer for tasq: poll ready issues from the issue tracker and delegate them to subagents.
tq issue watch --interval <seconds>. It polls ready issues from the tq issue tracker and emits one JSON envelope per line on stdout (each line becomes one Monitor notification).--seen-ttl elapses.body.id and hand the work off to subagents based on the Workflow Template.tq issue update <issue_id> --status in_progress.tq comment add <issue_id> --author claude-code --body "<comment>".[!NOTE]
tq issue watchis an experimental command. It is intentionally isolated so it can be removed without affecting the rest of the CLI.
tq issue watch ignores the global --output flag and always writes one JSON object per line in one of three shapes:
{"type":"error","body":"<message>"} — a transient polling failure. The loop keeps running; always emitted.{"type":"event","eventType":"issue-ready","body":<issue>} — a ready issue was detected. body is the full issue payload; always emitted.{"type":"info","body":"<message>"} — startup config and per-cycle summary. Emitted only when --verbose is set.Flags:
--interval <seconds>: polling interval (default 30).--seen-ttl <seconds>: suppress re-emitting the same issue for this duration (default 900; must be greater than --interval).--verbose: also emit info envelopes.The loop runs until it is stopped (SIGINT, kill, or the Monitor timeout); it does not exit on its own.
tq issue get <issue_id>.git fetch origin, then create the task branch from origin/main or the repository's default branch.git worktree to create a working worktree at <project_root>/.worktrees/tasq/<issue_id>-<issue-summary-title> and start the work there.tq comment add <issue_id> --author claude-code --body "<comment>".tq comment add <issue_id> --author claude-code --body "<comment>".tq comment add <issue_id> --author claude-code --body "<comment>".tq issue update <issue_id> --status review.If work cannot continue because of an error during task execution or because command execution permission is required:
tq comment add <issue_id> --author claude-code --body "<comment>".tq issue update <issue_id> --status blocked.