hivemind-goals
Create, track, and read team goals + KPIs via Hivemind from openclaw. Use whenever the user mentions a goal, objective, KPI, target, milestone, or a…
它会碰到什么
这一栏是扫描器报的事实,不是结论。命中多不等于有毒(安全工具、规则库、示例脚本本来就会包含危险写法),命中少也不等于干净。它和你手上的凭据、文件、网络有什么关系,需要你自己看。
技能内容
Hivemind Goals (openclaw)
OpenClaw exposes purpose-built tools for goals + KPIs. Use them directly — do NOT try to write files via the host filesystem.
Tools
hivemind_goal_add({ text })— create a new goal. Returnsgoal_id(UUID). Status starts atopened.hivemind_kpi_add({ goal_id, kpi_id, target, unit, name? })— add a KPI to an existing goal. Only call when the user explicitly asks for KPIs; do NOT auto-generate.hivemind_search({ query })— search Hivemind shared memory (summaries + sessions). Use this when the user asks "what's already there" before creating a duplicate.hivemind_read({ path })— read the full content of a specific Hivemind path.hivemind_index({})— list everything in memory.
Workflow when the user expresses a goal
- (Optional)
hivemind_searchfirst to surface any existing related goal. hivemind_goal_add({ text: "<short description>" })— capture the returnedgoal_id.- ONLY if the user asks for KPIs:
hivemind_kpi_addonce per KPI withgoal_id+kpi_id(short slug likek-prs) +target(positive int) +unit. - Confirm to the user with the goal_id and that the goal is team-visible.
Capture a task for later (with resumable context)
When the user parks a tangential task mid-session — "save this for later", "remind me to …", "don't let me forget …", "let's do X later" — store enough context to resume cold later, not just a one-liner. Put the full package in the text of hivemind_goal_add:
hivemind_goal_add({ text:
"Add rate-limiting to the webhook handler\n\n" +
"Start here: add a per-IP token bucket on the handler entry path\n" +
"Files: src/webhook/handler.ts:120-160, src/webhook/limits.ts\n" +
"Branch: feat/webhook-hardening\n" +
"Run: pnpm test webhook\n" +
"Why: bursty clients hammer the endpoint; defer until retry-backoff lands" })
Line 1 is the label. Fill Start here / Files / Branch / Run / Why from the conversation; Start here: (the concrete first action) matters most. (OpenClaw's hivemind_goal_add has no provenance flag, so the row is tagged manual — that's fine; the context is what matters.)
Resume a parked task (automatic context transfer)
When the user says "let's work on that task / goal" or "pick up the <X> task":
hivemind_search({ query: "<topic>" })orhivemind_index({})to locate the parked goal, thenhivemind_read({ path: "memory/goal/<owner>/opened/<goal_id>.md" })to pull the full context package back.- Read it as your working context and begin from
Start here:using theFiles/Branch/Runlines — continue as if the context was never lost.
(Status-move tools aren't exposed on OpenClaw, so leave the goal where it is and just resume the work.)
What NOT to do
- Do NOT write files anywhere under
~/.deeplake/memory/. OpenClaw's runtime does not route filesystem writes to the Deeplake tables — only thehivemind_*tools above do. - Do NOT call
hivemind_kpi_addunsolicited. Wait for the user to ask. - Do NOT use
hivemind_searchto create anything — it's read-only.
想直接用这个技能?
本站把开放许可(MIT / Apache 等)的技能按仓库打包整理到网盘,点一下转存到你自己的网盘,不用一个个从 GitHub 拉。许可未声明的技能只给原始仓库链接,不打包。
同名技能的其他版本
有 4 个不同仓库或目录里都有叫 hivemind-goals 的技能。它们内容并不相同,别混用:
- activeloopai/hivemind — Create, track and update team goals + KPIs via the Deeplake virtual filesystem at memory/g
- activeloopai/hivemind — Create, track and update team goals + KPIs via the Deeplake virtual filesystem at memory/g
- activeloopai/hivemind — Create, track and update team goals + KPIs in Hivemind via the `hivemind` CLI. Use wheneve