Skip to main content

When not to use Crewship

Crewship is an orchestration and governance layer for bounded agent work. It is a poor fit when the orchestration cost or uncertainty is greater than the task. Two product examples make the boundary concrete:
  • A dependency-upgrade routine is a good fit when it opens a bounded issue, runs the repository checks, and stops for a major-version decision. It is a poor fit when you want it to merge arbitrary upgrades directly to production with no branch protection.
  • A credential-aware integration task is a good fit when the agent needs a narrowly assigned token for one run and a human can approve escalation. It is a poor fit when the requirement is to copy a long-lived secret into chat history or a shared repository.
Use Crewship when an agent can make progress in a bounded workspace, the outcome can be checked, and a human or policy can own the decision when the work crosses a trust boundary. Start with First projects and stop after the rung that proves your use case.