Orchestrate a crew of specialist AI agents in one local-first workspace. Each role on its best model, with memory and skills that compound. Free, MIT.
$ npx -y skills add getcrew44/crew44 --agent claude-code
Run the curl in your terminal, the rest in Claude Code.
Repo: getcrew44/crew44
What's inside
Download ยท Website ยท What's new
Crew44 turns the AI agents you already run โ Claude Code, Codex, Gemini, Cursor, and more โ into a coordinated team. Instead of one generalist agent re-explaining context to itself all day, you assemble specialists, bind each to the model that wins at its job, and let them hand work off to each other inside one shared workspace.
Everything runs on your machine. State is plain files under ~/.crew44/. No cloud account, no subscription, no telemetry โ the only network traffic is whatever your underlying coding agent already makes.
https://github.com/user-attachments/assets/ce6e5293-6c58-4c37-8e00-74d654d2277c
Grab a signed desktop build for your platform โ free, no account required:
| Platform | Format |
|---|---|
| macOS (Apple Silicon) | .dmg |
| Windows (x64) | .exe installer |
| Linux (ARM64) | .AppImage / .deb |
Prefer to build it yourself? See Getting started.
| The old way โ one agent | With Crew44 โ a crew of specialists |
|---|---|
| A new contractor every morning: never seen your repo, never learned your conventions. | Per-project memory. Monday's fix is in the crew's muscle memory by Thursday. |
| Skills never compound โ whatever it figured out is gone by next task. | Skills that compound. Capture a workflow once as SKILL.md; every agent you attach it to gets it on every turn, across providers. |
| One generalist plans, builds, and reviews โ no deep expertise in any role. | Specialists in parallel. Planner drafts while builder codes while reviewer checks. Handovers ship the baton, not the whole context. |
| Locked to a single model: pays Opus rates for a rename, runs a fast model on a hard call. | The right model per role. Opus plans, GPT-5.5 codes, a local model reviews โ swap per task, not per app. |
Crew44 detects and routes to any of these installed on your machine:
Claude Code ยท Codex ยท Cursor Agent ยท Gemini CLI ยท Hermes ยท Kimi ยท OpenCode ยท OpenClaw ยท Pi ยท Qoder ยท Qwen Code
The same skills folder runs across every provider, so you're never locked in. Have another CLI? The runtime layer is a small Go interface โ add an adapter under daemon/internal/backendagent/ and it shows up in the picker.
| Concept | What it is |
|---|---|
| Runtime | A coding-agent CLI on disk (Claude, Codex, Cursor, โฆ) discovered by scanning. |
| Agent | A named persona bound to one runtime + model, with an instruction and attached skills. |
| Skill | A file-based capability (SKILL.md + assets) injected into the runtime session when its agent runs. |
| Project | A working directory plus the chats that belong to it. Stored under Documents/Crew44/ or a folder you pick. |
| Chat | A turn-by-turn thread. One in-flight response at a time; events are an append-only events.jsonl. |
| Worktree | An optional isolated git checkout for a chat. Toggle it on a new task and the crew works on its own crew/โฆ branch without touching your working tree. |
| Handover | A marker an agent emits to pass the turn to a teammate, with a one-line brief. |
| Goal | An optional verifiable outcome for a task. The crew scopes it into a locked criteria checklist, and an independent verifier โ fresh session, no chat history โ must confirm every criterion before you sign off. |
The default crew ships with a Partner, an Engineer, a Product Lead, and a Designer โ each owning a role, a model, and its own skills folder.
โโโโโโโโโโโโโโโโโโโ WebSocket JSON-RPC โโโโโโโโโโโโโโโโโโโโ spawn โโโโโโโโโโโโโโโโโโโ
โ Electron / UI โ โโโโโโโโโโโโโโโโโโโโโบ โ Go daemon โ โโโโโโโโโโโบ โ agent CLIs โ
โ React 19 โ โ 127.0.0.1 โ โ (claude, codex,โ
โโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโ โ cursor, โฆ) โ
โ โโโโโโโโโโโโโโโโโโโ
โผ
~/.crew44/ (plain-file state)
daemon/. Owns runtime discovery, agent/skill/chat state, and the JSON-RPC + event-stream surface. Auth is a per-launch bearer token; only /health is unauthenticated.src/. Routes for Crew (agents, skills, runtimes), Tasks (chat threads with live streaming), New Task, Auto (suggestions), and Onboarding.packages/mobile/ pairs over an end-to-end encrypted Noise tunnel through a small relay, so you can read or nudge a running crew from your phone.127.0.0.1. Crew44 itself does not call out to any remote service.claude, codex, โฆ) makes on its own โ including the on-demand headless browser, which fetches its Playwright package and Chromium via npm and visits the URLs the agent navigates to.claude, codex, cursor, โฆ)npm install
npm run dev
This builds the Go daemon, starts Vite, launches Electron, and connects the renderer once the daemon reports healthy.
.
โโโ electron/ Electron main process, preload, app assets
โโโ src/ React renderer
โโโ packages/mobile/ Expo mobile app
โโโ daemon/ Go module
โ โโโ cmd/crew44-daemon daemon entrypoint
โ โโโ internal/ app, rpc, httpapi, store, runtime, agent adapters
โ โโโ test-utils/
โโโ docs/ manual e2e harnesses + design notes
โโโ public/ renderer static assets
npm run dev # development app
npm run build # renderer build + local app
npm run web:dev # daemon + bare Vite development server
npm run test # Go tests + renderer tests + mobile tests
npm run clean # remove local build artifacts
Daemon configuration via env vars:
| Variable | Default | Description |
|---|---|---|
HOST / CREW44_DAEMON_HOST | 127.0.0.1 | TCP listen host. |
PORT / CREW44_DAEMON_PORT | 8080 | TCP listen port. |
AUTH_TOKEN / CREW44_AUTH_TOKEN | empty | WebSocket bearer subprotocol token. Empty = dev mode. |
CREW44_STATE_DIR | ~/.crew44 | Root directory for persisted state. |
When auth is enabled, /rpc requires WebSocket subprotocols:
new WebSocket("ws://127.0.0.1:8080/rpc", [
"crew44.rpc.v1",
`crew44.bearer.${token}`,
])
MIT ยฉ 2026
.github/
workflows/
ci.yml
desktop-release.yml
.gitignore
.npmrc.example
CHANGELOG.md
daemon/
cmd/
crew44-daemon/
buildinfo.go
config.go
main_test.go
main.go
run.go
crew44-relay/
main.go
go.mod
go.sum
internal/
app/
app.go
chat_title_test.go
chat_title.go
chat.go
errors.go
goal_gaps_test.go
goal_test.go
goal.go
handover.go
onboarding.go
optimizer_test.go
optimizer.go
projectworkspace_test.go
projectworkspace.go
recovery_test.go
recruit_test.go
recruit.go
worktree_test.go
backendagent/
agent.go
claude_test.go
claude.go
codex_test.go
codex.go
copilot.go
cursor_invocation_other.go
cursor_invocation_windows.go
cursor_invocation.go
cursor.go
gemini.go
hermes.go
kimi.go
models_test.go
models.go
openclaw.go
opencode.go
pi.go
proc_other.go
proc_windows.go
qoder.go
qwen.go
stderr_tail.go
version.go
broker/
broker.go
httpapi/
server.go
transport_test.go
id/
id.go
mention/
mention_test.go
mention.go
model/
agent_description_test.go
agent_description.go
app_state.go
attachments.go
chat_title_test.go
chat_title.go
goal_gaps_test.go
goal_test.go
goal.go
handover_test.go
handover.go
summary_test.go
summary.go
types.go
optimizer/
manager_test.go
manager.go
prompt.go
safety_test.go
safety.go
scanner_test.go
scanner.go
scheduler_test.go
scheduler.go
store_test.go
store.go
types.go
presets/
defaultcrew/
agents/
coding.md
designer.md
partner.md
product.md
manifest.json
skills/
coding/
brainstorming/
scripts/
frame-template.html
helper.js
server.cjs
start-server.sh
stop-server.sh
SKILL.md
spec-document-reviewer-prompt.md
visual-companion.md
executing-plans/
SKILL.md
finishing-a-development-branch/
SKILL.md
receiving-code-review/
SKILL.md
requesting-code-review/
code-reviewer.md
SKILL.md
systematic-debugging/
condition-based-waiting-example.ts
condition-based-waiting.md
CREATION-LOG.md
defense-in-depth.md
find-polluter.sh
root-cause-tracing.md
SKILL.md
test-academic.md
test-pressure-1.md
test-pressure-2.md
test-pressure-3.md
test-driven-development/
SKILL.md
testing-anti-patterns.md
using-git-worktrees/
SKILL.md
using-superpowers/
SKILL.md
verification-before-completion/
SKILL.md
writing-plans/
plan-document-reviewer-prompt.md
SKILL.md
writing-skills/
anthropic-best-practices.md
examples/
CLAUDE_MD_TESTING.md
graphviz-conventions.dot
persuasion-principles.md
render-graphs.js
SKILL.md
testing-skills-with-subagents.md
designer/
accessibility-review/
SKILL.md
design-critique/
SKILL.md
design-handoff/
SKILL.md
interaction-review/
SKILL.md
ux-copy/
SKILL.md
visual-system-review/
SKILL.md
partner/
problem-framing/
SKILL.md
session-skill-mining/
SKILL.md
product/
acquisition-channel-advisor/
examples/
conversation-flow.md
SKILL.md
ai-shaped-readiness-advisor/
SKILL.md
business-health-diagnostic/
SKILL.md
company-research/
examples/
sample.md
SKILL.md
template.md
context-engineering-advisor/
SKILL.md
customer-journey-map/
examples/
meta-product-manager-skills.md
sample.md
SKILL.md
template.md
customer-journey-mapping-workshop/
SKILL.md
discovery-interview-prep/
SKILL.md
discovery-process/
examples/
sample.md
SKILL.md
template.md
eol-message/
examples/
sample.md
SKILL.md
template.md
epic-breakdown-advisor/
SKILL.md
epic-hypothesis/
examples/
sample.md
SKILL.md
template.md
feature-investment-advisor/
examples/
conversation-flow.md
SKILL.md
finance-based-pricing-advisor/
SKILL.md
finance-metrics-quickref/
SKILL.md
jobs-to-be-done/
examples/
sample.md
SKILL.md
template.md
lean-ux-canvas/
examples/
sample.md
SKILL.md
template.md
opportunity-solution-tree/
examples/
sample.md
SKILL.md
template.md
organic-growth-advisor/
examples/
sample.md
SKILL.md
template.md
pestel-analysis/
examples/
sample.md
SKILL.md
template.md
pol-probe/
pol-probe-advisor/
SKILL.md
examples/
sample.md
SKILL.md
template.md
positioning-statement/
examples/
sample.md
SKILL.md
template.md
positioning-workshop/
SKILL.md
prd-development/
examples/
sample.md
SKILL.md
template.md
press-release/
examples/
sample.md
SKILL.md
template.md
prioritization-advisor/
SKILL.md
problem-framing-canvas/
examples/
sample.md
SKILL.md
template.md
problem-statement/
examples/
sample.md
SKILL.md
template.md
product-strategy-session/
examples/
sample.md
SKILL.md
template.md
proto-persona/
examples/
sample.md
SKILL.md
template.md
recommendation-canvas/
examples/
sample.md
SKILL.md
template.md
roadmap-planning/
examples/
sample.md
SKILL.md
template.md
saas-economics-efficiency-metrics/
examples/
cash-trap.md
healthy-unit-economics.md
SKILL.md
template.md
saas-revenue-growth-metrics/
examples/
healthy-saas.md
warning-signs.md
SKILL.md
template.md
storyboard/
examples/
sample.md
SKILL.md
template.md
tam-sam-som-calculator/
examples/
sample.md
scripts/
market-sizing.py
SKILL.md
template.md
user-story/
user-story-mapping/
user-story-mapping-workshop/
SKILL.md
template.md
examples/
sample.md
SKILL.md
template.md
user-story-splitting/
examples/
sample.md
SKILL.md
template.md
examples/
sample.md
scripts/
user-story-template.py
SKILL.md
template.md
workshop-facilitation/
SKILL.md
presets_test.go
presets.go
README.md
reset.go
seed.go
prompt/
goal_test.go
goal.go
system_test.go
system.go
recruit/
archive_test.go
archive.go
client_test.go
client.go
github.go
glob.go
schema_alias.go
types.go
relay/
remote_addr_test.go
remote_addr.go
server_test.go
server.go
remote/
keys.go
manager.go
noise_transport.go
noise_vectors_test.go
relay_client.go
remote_integration_test.go
store.go
types.go
rpc/
chat_events.go
chat_methods_test.go
jsonrpc.go
methods_test.go
methods.go
optimizer.go
... 280 moreFAQ
crew44 is a Claude Code plugin with 62 hand-picked skills for development work, indexed on Flowy. Install it with the command on its page. It includes brainstorming, executing-plans, finishing-a-development-branch. Its skills do not fire on their own yet. Request auto-invocation to have Flowy route them as you prompt. Free and open source.