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
- You create a plan — Define objectives, projects, and tasks in Kindship
- Agent fetches work — The CLI provides the next task to your coding agent
- Agent executes — Your agent works autonomously on the task
- Agent reports back — The CLI reports completion and fetches the next task
Commands
| Command | Description |
|---|---|
kindship login | Authenticate with Kindship |
kindship logout | Log out and revoke token |
kindship whoami | Show current user and agent |
kindship setup | Initialize repository with agent binding |
kindship status | Show repository and agent status |
kindship plan submit | Submit a plan file |
kindship plan list | List current plans and tasks |
kindship run next | Get the next available task |
kindship run complete | Mark current task as complete |
kindship version | Show CLI version |
Learn More
- Authentication Guide — Detailed auth flow and token management
- Plan Format — How to structure plans for submission
- Claude Code Integration — Setting up hooks and skills