KiroCrew is an open-source agent harness and orchestrator developed by the kirodotdev team. Built as a persistent, self-learning agent execution framework, it runs directly on local developer machines or remotely on dedicated infrastructure to coordinate multi-step coding workflows. In day-to-day development, KiroCrew orchestrates agent tasks across codebases while maintaining execution history, workspace state, and tool configurations inside a local directory (`~/.kiro/crew`). The harness includes structured tool approval mechanisms and execution gates that ensure safety when running terminal commands or applying file diffs across tasks. What sets KiroCrew apart from single-turn terminal assistants is its focus on continuous operation and persistent agent lifecycles. Rather than executing isolated command loops, it provides structured specification tracking, containerized deployment options via GHCR Docker images, and an extensible approval layer for backend-governed tool invocation. KiroCrew is developed as an open-source project on GitHub with active community contributions, offering free self-hosted execution across Linux, macOS, and containerized environments.
Tags: ai agent, cli, code assistant, coding agent, developer tools, OpenSource
~/.kiro/crew. - Flexible hosting — Deploys natively on local developer workstations or remotely on dedicated compute hardware. - Tool approval layer — Enforces backend-driven verification gates and review policies before running automated actions. - Containerized distribution — Supports quick deployment via Docker images hosted on GitHub Packages (GHCR). - Spec-driven task execution — Integrates with .kiro project specifications to guide agents through complex workflows..kiro directory into KiroCrew, allowing the orchestrator to track task progression, manage state, and execute discrete implementation phases.KiroCrew is aimed at software engineers, DevOps practitioners, and systems teams seeking a self-hosted, persistent agent harness with strong governance over tool execution. It is less suitable for users looking for a lightweight, single-prompt shell helper that requires zero configuration or background state management.
bash # Download and install the binary curl -fsSL https://download.crew.kiro.dev | bash # Alternatively, pull the official container image docker pull ghcr.io/kirodotdev/kirocrew:latestbash # Initialize KiroCrew in the current directory kirocrew init # Verify your configuration and state directory ls -la ~/.kiro/crewbash # Launch KiroCrew to implement a task defined in your project spec kirocrew run "Scaffold authentication middleware based on .kiro/spec.md"Part of CLI Coding Agents
Categories: AI Coding Agents, Code Assistants, Developer Tools