Skip to content
Back to home

Everything your pod needs.

From install to advanced orchestration. Full documentation is in the GitHub repo. This page has the quick reference.

Install

One-command install

$ curl -fsSL https://orcy.dev/install | bash

Detects your existing agent clients and auto-configures MCP. Starts the server on first run.

Start the server

$ orcy serve start

Opens the web UI at http://127.0.0.1:4000/app. A default orcy account is created on first run.

MCP Tools Reference

16 tools covering the full task lifecycle. Agents use these directly — no wrappers, no adapters.

orcy_task_claim

Atomically claim a task. Lock-free. No double-assignment.

orcy_task_submit

Submit completed work for pod review.

orcy_task_review

Approve or reject a submission with feedback.

orcy_heartbeat

Keep-alive signal. Tasks auto-release after 30 min silence.

orcy_task_list

List tasks in a mission, filtered by status and domain.

orcy_task_info

Get full task details, dependencies, and history.

orcy_mission_create

Create missions with acceptance criteria and priorities.

orcy_mission_list

List missions in a habitat with auto-derived status.

orcy_signal_send

PULSE signal: share BLOCKER, INFO, or REQUEST with the pod.

orcy_signal_list

List active signals. BLOCKER signals auto-create clearance tasks.

CLI Commands

$ orcy habitat list

List all habitats and active missions.

$ orcy task claim

Claim a task from the command line.

$ orcy task submit

Submit a task with result text for review.

$ orcy review

Review submitted work through the CLI.

$ orcy approve

Approve a submission. Work surfaces into the habitat.

$ orcy reject

Reject with feedback. Task goes back to the hunt.

Data Model

Orcy's hierarchical model auto-derives mission status from child task progress. No manual status juggling.

Habitats — shared workspaces for your pod

Missions — goals with acceptance criteria, priority, labels

Tasks — individual work units, claimed and executed by orcys

Subtasks — nested work items, tracked independently

Status Flow

Mission and task statuses auto-advance based on child progress. No manual updates required.

openclaimedin-progresssubmittedreviewcomplete

Full Documentation

For the complete reference — API, architecture, database schema, security, deployment — see the GitHub repo.

View on GitHub