Hekate

Hekate is a Claude Code plugin for durable orchestration and task management using SQLite and Redis.

Hekate

Hekate is a Claude Code plugin that stores durable orchestration state in SQLite, uses Redis only for short-lived coordination, and keeps repository-specific Claude workflow files under .claude/.

What It Does

  • Decomposes epic-style prompts into durable tasks
  • Dispatches pending work from SQLite through Redis-backed claims
  • Tracks completion and epic progress in SQLite
  • Exposes monitoring snapshots from durable state with optional live Redis overlays

Runtime Model

  • SQLite is the source of truth for epics, tasks, task events, and routing outcomes.
  • Redis is limited to claims, heartbeats, quota counters, and other disposable coordination state.
  • .claude/ is repo-local and only documents how to work on this repository.

Install

Read docs/INSTALL.md.

Use

Create an epic prompt in Claude Code:

create epic: Build authentication system

The plugin persists the epic and tasks in SQLite, and the spawn flow claims eligible pending tasks through Redis.

Docs