Kindship CLI

Command-line interface for orchestrating AI coding agents. Make Claude Code, Gemini CLI, Codex, and OpenCode fully autonomous.

The Kindship CLI is an orchestrator for AI coding agents. It enables autonomous workflows by connecting your favorite coding agent to Kindship's planning and execution system.

Supported Agents

  • Claude Code — Anthropic's CLI for Claude
  • Gemini CLI — Google's Gemini coding assistant
  • Codex — OpenAI's coding agent
  • OpenCode — Open-source coding agent

Installation

macOS / Linux

curl -fsSL https://kindship.ai/install.sh | sh

Homebrew

brew install kindship-ai/tap/kindship

Go

go install github.com/kindship-ai/kindship-cli@latest

Quick Start

1. Authenticate

kindship login

This opens your browser for authentication. Once complete, your credentials are stored securely in ~/.kindship/config.json.

2. Set up a repository

Navigate to your project and run:

kindship setup

This links the repository to a Kindship agent and installs Claude Code hooks.

3. Submit a plan

Create a plan and submit it:

kindship plan submit my-plan.md

4. Execute tasks

Your agent can now fetch and execute tasks autonomously:

kindship run next      # Get next available task
kindship run complete  # Mark current task complete

How It Works

  1. You create a plan — Define objectives, projects, and tasks in Kindship
  2. Agent fetches work — The CLI provides the next task to your coding agent
  3. Agent executes — Your agent works autonomously on the task
  4. Agent reports back — The CLI reports completion and fetches the next task

Commands

CommandDescription
kindship loginAuthenticate with Kindship
kindship logoutLog out and revoke token
kindship whoamiShow current user and agent
kindship setupInitialize repository with agent binding
kindship statusShow repository and agent status
kindship plan submitSubmit a plan file
kindship plan listList current plans and tasks
kindship run nextGet the next available task
kindship run completeMark current task as complete
kindship versionShow CLI version

Learn More