crewplane
NewA control plane for resumable coding-agent workflows.
Summary
Crewplane is a control plane for building and managing resumable coding-agent workflows.
- It allows developers to orchestrate multi-step agent tasks that can pause, resume, and persist state across sessions, making complex automation reliable and debuggable.
Install & Usage
mkdir -p .claude/agentsAdd the configuration to .claude/agents/crewplane.md
@crewplaneUse Cases
Usage Examples
/crewplane start 'Review the code in src/ and suggest improvements, then wait for my approval before applying changes'
/crewplane resume session-123 'Continue the refactoring from where it left off, but skip the test file updates'
Set up a crewplane workflow that fetches the latest API docs, generates client code, and runs the test suite, saving state at each step
Security Audits
Frequently Asked Questions
What is crewplane?
Crewplane is a control plane for building and managing resumable coding-agent workflows. It allows developers to orchestrate multi-step agent tasks that can pause, resume, and persist state across sessions, making complex automation reliable and debuggable.
How to install crewplane?
To install crewplane: create the agents directory (mkdir -p .claude/agents), then add the config to .claude/agents/crewplane.md. Finally, @crewplane in Claude Code.
What is crewplane best for?
crewplane is a agent categorized under General. It is designed for: agent. Created by crewplaneai.
What can I use crewplane for?
crewplane is useful for: Automate a multi-step code review pipeline where agents analyze PRs, suggest changes, and resume after human feedback.; Run a long-running refactoring task across multiple files that can be paused and resumed without losing progress.; Orchestrate a data pipeline where agents fetch, transform, and load data, with checkpoints at each stage.; Build a customer support triage agent that collects information, escalates when needed, and resumes after manual intervention.; Create a testing workflow that runs unit tests, integration tests, and deployment verification in sequence with rollback on failure.; Manage a code generation task that generates boilerplate, runs linting, and fixes issues iteratively with state persistence..