hive.colony-progress-tracker
仓库创建 2026年1月12日最近提交 1 个月前SkillHot 收录 21 天前
▸ 精选理由
面向 Hive 环境的持久化任务管理与 SOP 验证,适合长期协作代理。
▸ 风险提示
需访问本地 SQLite 文件,注意路径和文件权限。
这个 Skill 做什么
在 colony 的 SQLite 队列中认领任务、记录步骤进度并验证 SOP 门控。
在 colony 的 SQLite 队列中认领任务并记录每步进度,按表标注哪些要做、跳过或已完成,同时校验 SOP gates 的门控条件。常用于代理需要把持久化工作记忆(由 db_path 指向的数据库)来跟踪长期或多人协作任务时使用。特点是直接读写 SQLite(tasks/steps/sop_checklist),能把流程状态写入可共享的数据库,保证多次执行或多人协作的一致性。
▸ 展开 SKILL.md 英文原文
Claim tasks, record step progress, and verify SOP gates in the colony SQLite queue. Applies when your spawn message includes a db_path field.
1.1w
Stars
5.7k
Forks
18
仓库内 Skill
+136
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/aden-hive/hive/main/core/framework/skills/_default_skills/colony-progress-tracker/SKILL.md或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/aden-hive/hive/main/core/framework/skills/_default_skills/colony-progress-tracker/SKILL.md"SKILL.MD 节选查看完整文件 ↗
## Operational Protocol: Colony Progress Tracker **Applies when** your spawn message has `db_path:` and `colony_id:` fields. The DB is your durable working memory — tells you what's done, what to skip, which SOP gates you owe. Access via `terminal_exec` running `sqlite3 "<db_path>" "..."`. Tables: `tasks` (queue), `steps` (per-task decomposition), `sop_checklist` (hard gates). ### Claim: assigned task (check this FIRST) If your spawn message includes a `task_id:` field, the queen pre-assigned a specific row to you. Claim that row by id — **do not** use the generic next-pending pattern below: ```bash sqlite3 "<db_path>" <<'SQL' UPDATE tasks SET status='claimed', worker_id='<worker-id>',
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有