Documentation Index
Fetch the complete documentation index at: https://docs.crewship.ai/llms.txt
Use this file to discover all available pages before exploring further.
Templates
Crewship provides two types of templates: crew templates (pre-configured teams with agents) and workflow templates (reusable mission execution patterns).Crew Templates
Crew templates create a complete team in one step — a crew with pre-configured agents, roles, system prompts, and skill assignments. Deploy withcrewship template deploy <slug> or the Settings UI.
Seed Data Crews
The built-in seed data (cmd/crewship/seeddata/) provides four crew templates:
- Engineering
- Quality
- DevOps
- Research
Slug:
Skills: network-probe, script-runner, file-crafter, web-scraper, system-inspector
engineering | Icon: terminal | Color: Blue| Agent | Role | Agent Role | Profile | Adapter |
|---|---|---|---|---|
| Tomas | Technical Architect | LEAD | FULL | CLAUDE_CODE |
| Viktor | Backend Engineer | AGENT | CODING | CLAUDE_CODE |
| Nela | Frontend Engineer | AGENT | CODING | CLAUDE_CODE |
| Martin | Infrastructure Engineer | AGENT | CODING | CLAUDE_CODE |
Agent Configuration
Each seed agent has these settings:| Setting | Default Value |
|---|---|
| LLM Provider | ANTHROPIC |
| LLM Model | claude-haiku-4-5 |
| Memory Enabled | true |
| CLI Adapter | CLAUDE_CODE |
| Timeout (LEAD) | 3600 seconds (1 hour) |
| Timeout (AGENT) | 1800-2400 seconds (30-40 min) |
System Prompts
Each agent has a dedicated system prompt file incmd/crewship/seeddata/prompts/{slug}.md. These prompts define the agent’s persona, expertise areas, communication style, and behavioral guidelines.
Workflow Templates
Workflow templates define reusable execution patterns for missions. They are defined ininternal/orchestrator/workflow.go and available via the sidecar at GET /mission/templates.
Built-in Templates
Sequential
Tasks execute one after another in order. Each step depends on the previous one.
Parallel
All tasks run simultaneously, then results are aggregated by a lead agent.
Dev-Test Loop
Developer implements, tester reviews. On failure, loops back (max 3 iterations). This is the Ralph Loop pattern.
Pipeline
Sequential preparation, parallel work streams, final aggregation by lead.
Template Step Structure
Each template step defines:Using Templates
Lead agents can reference templates when creating missions via the sidecar:Credential Templates
The seed data also includes credential templates incmd/crewship/seeddata/credentials.go:
Anthropic Credential
TheResolveAnthropicCredential function auto-detects the credential type:
| Prefix | Type | Env Var Name |
|---|---|---|
sk-ant-oat | AI_CLI_TOKEN | CLAUDE_CODE_OAUTH_TOKEN |
| Other | API_KEY | ANTHROPIC_API_KEY |
Google Credential
Optional Google credentials fromSEED_GOOGLE_EMAIL and SEED_GOOGLE_PASSWORD environment variables, stored as a JSON object under the SECRET type.