A ready-to-deploy CrewAI research crew. Clone it, set your key, deploy — done.
git clone https://github.com/Crewship/crewai-quickstart.git
cd crewai-quickstart
# Install the Crewship CLI tool
curl -fsSL crewship.dev/install | bashcrewship env set OPENAI_API_KEY=sk-...Using a different provider? Change the
llmfield inconfig/agents.yamland set the matching key instead — e.g.ANTHROPIC_API_KEYfor Claude,GROQ_API_KEYfor Groq (free tier), or no key at all for Ollama.
crewship deployThat's it. Your research crew is live.
This template ships a two-agent research crew powered by GPT-4o mini:
- Researcher — finds the latest info on a topic
- Reporting Analyst — turns raw research into a polished markdown report
The default topic is "AI agents in production". Change it in src/crewship_quickstart/main.py.
cp .env.example .env # add your OPENAI_API_KEY
crewai run- Agents →
src/crewship_quickstart/config/agents.yaml - Tasks →
src/crewship_quickstart/config/tasks.yaml - Crew logic →
src/crewship_quickstart/crew.py