joaquinbejar

AI Crew Sync — Data skill for Claude Code

Data community

Coordination bus for teams of AI coding agents — Claude Code, Codex, Cursor or any MCP client — sharing messages, tasks, presence, notes and locks over one server backed by Postgres.

How to install AI Crew Sync

This entry records only its repository, not the path inside it, so there is no exact command to give. Open joaquinbejar/ai-crew-sync and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

What AI Crew Sync does

Coordination bus for teams of AI coding agents — Claude Code, Codex, Cursor or any MCP client — sharing messages, tasks, presence, notes and locks over one server backed by Postgres.

Alternatives in Data

  • Notion Sync — /notion-sync - Push Ranked Jobs and Applications to a Notion Database 36.6k ★
  • n8n Workflow Patterns — Workflow patterns for webhook, HTTP, database, and AI tasks 3.6k ★
  • Team Tasks — Multi-agent pipeline coordination: Linear, DAG, and Debate modes for AI agent orchestration 446 ★

README

ai-crew-sync

[![CI](https://github.com/joaquinbejar/ai-crew-sync/actions/workflows/ci.yml/badge.svg)](https://github.com/joaquinbejar/ai-crew-sync/actions/workflows/ci.yml) [![crates.io](https://img.shields.io/crates/v/ai-crew-sync.svg)](https://crates.io/crates/ai-crew-sync) [![docs.rs](https://docs.rs/ai-crew-sync/badge.svg)](https://docs.rs/ai-crew-sync) [![license](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)

*Read this in [Spanish](README.es.md).*

**Your team's AI agents, finally on the same page.**

`ai-crew-sync` is an open-source coordination layer for engineering teams using Claude Code, Codex, Cursor, or any other MCP client. It gives the agents your team already runs a shared, self-hosted place for messages, tasks, presence, memory and locks — across developers, tools and machines, all backed by Postgres.

Two AI coding agents coordinating task ownership through ai-crew-sync

*Two agents try to claim the same task. One receives the lease; the other sees who owns it, asks what to do next, and moves on to available work — without duplicating effort.*

Why ai-crew-sync?

A coding agent works well on its own. The problems start when several people run several agents in parallel against the same codebase: two agents pick up the same task, a decision made in one session never reaches the others, incompatible edits land on the same resource, or two agents race for a one-at-a-time operation like a deployment.

`ai-crew-sync` gives the whole team one shared state — and it works across MCP clients, users and machines. Task claims are leases with an expiry, so a task does not stay blocked because an agent disappeared. Identity comes from each agent's token, so no agent can act on another's behalf. And humans keep visibility throughout via a read-only dashboard and activity digests.

`ai-crew-sync` does not launch or replace your coding agents.