queue

仓库创建 2026年7月5日最近提交 22 天前SkillHot 收录 22 天前
▸ 精选理由

适合异步批量任务处理,自动化多任务并保留交付记录。

▸ 风险提示

会在仓库创建 worktree/分支并进行自动提交,需写权限并小心冲突。

这个 Skill 做什么

收集任务并离线执行,每个任务在独立 worktree 完成并产出分支与交付摘要。

把全天收到的任务收集起来离线批量跑:每个任务在独立的 git worktree 里变成一个『工作室任务』,完成后产出分支和交付摘要,回来检查结果就行。适合需要把一堆小任务排队自动执行、并保持版本可追溯时用。特点是无人值守执行、每项工作独立分支和明确的交付摘要,便于审计和回滚。

▸ 展开 SKILL.md 英文原文

Collect task descriptions all day, then run them unattended: each item becomes a studio mission in its own git worktree, ending in a branch + delivery digest. Come back to finished work.

开发编程队列工作流git worktree通用
0
Stars
0
Forks
15
仓库内 Skill
+0
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/eduardkumskyi/octo/master/skills/queue/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/eduardkumskyi/octo/master/skills/queue/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
## Progress Contract

**OCTO_ROOT** = `${CLAUDE_PLUGIN_ROOT}` when set; otherwise two directories above this skill's base directory (`skills/<name>/` sits at `<plugin-root>/skills/<name>/`). Resolve once at start.

Register steps as a native task list before doing any work.
Report progress as "N steps remaining" — never wall-clock ETAs.

Register steps in the native task list named `🐙 <n>/<total> — <step name>`; update each to in_progress/completed as you go — the checklist is the user's primary progress view.

## Arguments

- **`add <description>`** — append a new item to the queue.
- **`list`** — show the current queue as a table.
- **`run`** — execute all pending items unattended, sequen
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有