Agent orchestration
tool.

Multi-stage pipelines, git worktree isolation, kanban board.

Paste this into Claude Code, Pi, or any AI agent:

Help me install and set up Kontora: llms.txt
$ brew install kontora
$ go install github.com/worksonmyai/kontora/cmd/kontora@latest
Kontora web dashboard showing kanban board with tickets
Step 01

Write a ticket

Markdown file with a title and description. Kontora picks it up automatically.

Step 02

Pipeline runs agents

Implement → Review → Commit. Orchestrated autonomously.

Step 03

Get results

PRs ready for review. Full audit logs provided per execution.

Core Capabilities

Architecture

Multi-stage pipelines

Chain stages with per-stage retry, rollback, and failure policies. Implement, review, fix, commit, each with its own agent.

Isolation

Git worktree isolation

Every ticket runs in a dedicated worktree. Agents never conflict with each other or your working tree.

Interoperability

Any CLI agent

Claude Code, Pi, or anything with a CLI. Define agents as a binary and args in YAML.

Observability

Web dashboard & TUI

Kanban board in the browser or terminal. Attach to running agent tmux sessions in real time.

Define your workflow in YAML

config.yaml
pipelines:
  implement-review-commit:
    - stage: implement
      agent: claude
      on_success: next
      on_failure: pause
    - stage: review
      agent: claude
      on_success: next
      on_failure: retry
      max_retries: 1
    - stage: commit
      agent: claude
      on_success: done
      on_failure: retry

Quick start

1$ kontora start
2$ kontora new 'Add a health check endpoint'
3$ kontora attach