Agentplane is an open-source agent orchestration harness and execution framework developed by Basilisk Labs. It is designed to coordinate automated software development workflows, manage task artifacts, and bridge external AI coding agents with local source code repositories. In daily use, Agentplane operates as a task-driven harness where tasks are assigned discrete IDs and managed through structured state files in a `.agentplane` directory. The framework standardizes how context is ingested from the codebase, formats prompts and projection context, and captures external agent outputs for automated application and verification. What differentiates Agentplane is its focus on reproducible task artifact tracking and modular agent recipes. Rather than acting strictly as a single interactive LLM chat terminal, Agentplane standardizes agent recipes and plugins (such as Hermes integrations) to orchestrate multi-step code execution, verification runs, and artifact logging in version-controlled projects. Agentplane is distributed as an open-source project hosted on GitHub, with configuration managed via repository-level dotfiles and modular recipes.
Tags: agent harness, ai agent, cli, coding agent, developer tools, OpenSource
agentplane-recipes) to define reproducible agent workflow steps. - Context projection engine — Ingests and structures repository context to feed relevant file states into agent prompts. - Integration plugins — Provides dedicated plugins (such as the Hermes agentplane plugin) to interface with third-party agent environments. - Git-integrated workflow — Binds task states and verification records directly to standard Git commits and pull requests.Agentplane is built for software engineers and DevOps teams building structured, multi-agent development pipelines that require strict artifact tracking and recipe reproducibility. It is less suitable for developers looking for a basic conversational autocomplete chatbot or lightweight single-file editor.
bash git clone --recurse-submodules https://github.com/basilisk-labs/agentplane.git cd agentplane npm installbash # Build the project npm run build # Initialize project workspace tracking mkdir -p .agentplanebash # Example running a task execution cycle node dist/index.js task run --id TASK-101Part of CLI Coding Agents
Categories: AI Coding Agents, Code Assistants, Developer Tools