Crewship currently supports CrewAI, LangGraph, and LangGraph.js. If you already have a project in one of these frameworks, you can deploy it on Crewship.If you want to deploy an agent built with a framework that we don’t (yet) support, please send us a message at [email protected] so we can prioritize it!Initialize a crewship.toml file in your project:
crewship init
This auto-detects your framework and entrypoint:
CrewAI
LangGraph
LangGraph.js
🔍 Initializing Crewship project in /path/to/my_crew Found pyproject.toml, reading project info... Detected CrewAI project Detected entrypoint: my_crew.crew:MyCrew✅ Created crewship.toml
🔍 Initializing Crewship project in /path/to/my_agent Found langgraph.json, reading project info... Detected LangGraph project Detected entrypoint: src.my_agent.graph:graph✅ Created crewship.toml
🔍 Initializing Crewship project in /path/to/my_agent Found langgraph.json, reading project info... Detected LangGraph.js project Detected entrypoint: ./src/graph.ts:graph✅ Created crewship.toml
The init command automatically finds your entrypoint. You can also create crewship.toml manually — see the configuration reference.