Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
Back to list

Hivemind Goals & KPIs

Create, track, and close team goals, KPIs, and parked tasks as Markdown files in the Deeplake virtual filesystem.

AutomationIntermediate1,593103AI 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>.md with mandatory target / current / unit lines 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 commit hook fires a background LLM pass that reads the diff and bumps the matching KPI's current: 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

  1. "Target 5 merged PRs this week" → goal file created; on request, a k-prs KPI with target 5 / current 0.
  2. "Remind me to add rate limiting to the webhook handler later" → hivemind goal add --agent capture stores the entry point, files, branch, and test command.
  3. "Let's pick up that parked webhook task" → goal get restores the context, mv flips it to in_progress, work resumes from Start 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)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download 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.

  1. Prerequisites: the Hivemind CLI installed (hivemind whoami must work) and the ~/.deeplake virtual filesystem mounted.
  2. Clone the repo: git clone https://github.com/activeloopai/hivemind.git /tmp/hivemind
  3. Create the skills directory: mkdir -p ~/.claude/skills
  4. Copy the skill: cp -r /tmp/hivemind/harnesses/codex/skills/hivemind-goals ~/.claude/skills/
  5. Restart Claude Code and try "list my goals" to confirm the skill triggers.
  6. To disable commit-driven KPI updates, set HIVEMIND_AUTO_KPI_FROM_COMMITS=false in your environment.
View source on GitHubLicense: Apache-2.0