Hivemind Goals & KPIs
Create, track, and close team goals, KPIs, and parked tasks as Markdown files in the Deeplake virtual filesystem.
AutomationIntermediate★ 1,593⑂ 103AI score 8/10Last updated: Sep 3, 2026
What it does
- Creates, lists, edits, and closes goals using the path convention
~/.deeplake/memory/goal/<owner>/<status>/<uuid>.md— owner, status, and IDs live in the path, never in the file body. - Stores KPIs at
~/.deeplake/memory/kpi/<goal_id>/<slug>.mdwith mandatorytarget / current / unitlines so progress is machine-parsable. - Parks tangential tasks with a full resume package (
Start here / Files / Branch / Run / Why) so a later session can pick up cold without re-explanation. - A
git commithook fires a background LLM pass that reads the diff and bumps the matching KPI'scurrent:value. - Every write lands in a team-shared Deeplake table and appears in teammates' SessionStart context.
Who it's for
- Teams already running Activeloop Hivemind with the Deeplake VFS
- Developers who prefer file + CLI based goal/KPI tracking over a SaaS tracker
- Claude Code users tired of losing task context between sessions
Examples
- "Target 5 merged PRs this week" → goal file created; on request, a
k-prsKPI with target 5 / current 0. - "Remind me to add rate limiting to the webhook handler later" →
hivemind goal add --agent capturestores the entry point, files, branch, and test command. - "Let's pick up that parked webhook task" →
goal getrestores the context,mvflips it toin_progress, work resumes fromStart here:.
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/activeloopai/hivemind/HEAD/harnesses/codex/skills/hivemind-goals/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the harnesses/codex/skills/hivemind-goals folder from the GitHub repo activeloopai/hivemind into my ~/.claude/skills/activeloopai-hivemind-goals/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/activeloopai/hivemind.git /tmp/hivemind && mkdir -p ~/.claude/skills && cp -r /tmp/hivemind/harnesses/codex/skills/hivemind-goals ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Prerequisites: the Hivemind CLI installed (
hivemind whoamimust work) and the~/.deeplakevirtual filesystem mounted. - Clone the repo:
git clone https://github.com/activeloopai/hivemind.git /tmp/hivemind - Create the skills directory:
mkdir -p ~/.claude/skills - Copy the skill:
cp -r /tmp/hivemind/harnesses/codex/skills/hivemind-goals ~/.claude/skills/ - Restart Claude Code and try "list my goals" to confirm the skill triggers.
- To disable commit-driven KPI updates, set
HIVEMIND_AUTO_KPI_FROM_COMMITS=falsein your environment.
View source on GitHub ↗License: Apache-2.0