team-coordination

Coordinates shared state, todo claiming, and handoffs across multiple team coding sessions.

Updated Jan 16, 2026
One-click install
npx skills add https://github.com/dudqks0319-cpu/antigravity-skills --skill team-coordination-dudqks0319-cpu
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: team-coordination
Source: https://github.com/dudqks0319-cpu/antigravity-skills/tree/main/team-coordination
Command: npx skills add https://github.com/dudqks0319-cpu/antigravity-skills --skill team-coordination-dudqks0319-cpu

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? When multiple developers run parallel AI-assisted coding sessions on one codebase, they collide on files, duplicate work, and lose track of decisions. This Skill provides a shared state structure and workflow so every session knows who is working on what before touching code. ## Core Features & Use Cases - Shared Team State: Maintains _project_specs/team/state.md tracking active sessions, claimed todos, recent completions, and conflict areas. - Todo Claiming & Handoffs: Annotates todos with claim ownership and generates structured handoff documents when passing work between contributors. - Decision Syncing: Centralizes architectural decisions in a shared decisions.md so all sessions follow consistent choices. - Use Case: Alice starts a session, pulls the repo, reads team state, sees Bob claimed the checkout fix, claims the auth todo instead, and pushes her state update before coding. ## Quick Start Ask the assistant to check the team state file, show who is working on what, and help you claim an unclaimed todo before starting work.

Frequently Asked Questions about team-coordination

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I coordinate multiple developers using AI coding assistants on one repo?▼

Create a shared _project_specs/team directory with state.md and contributors.md files tracked in git. Each session reads the state file at start, claims todos with annotations, and pushes state updates so other sessions stay aware of active work.

How do I prevent two developers from editing the same files?▼

Track files touched per active session in the team state.md file and check it before modifying code. If a conflict area overlaps, coordinate with the other contributor first and log the overlap in the Conflicts to Watch section.

How do I hand off unfinished work to another developer?▼

Create a handoff markdown file in _project_specs/team/handoffs describing status, completed work, remaining tasks, key decisions, and files to start with. Commit and push it so the receiving developer's next session can pick up context immediately.

Does this approach work without a real-time server or database?▼

Yes, coordination relies entirely on markdown files committed to the git repository. Sessions sync by pulling before starting and pushing state updates every one to two hours, so no external service is required.

What are the limitations of file-based team coordination?▼

State can become stale between pushes, and simultaneous edits to state.md may cause merge conflicts. It works best for small teams with disciplined pull-and-push habits rather than large teams needing real-time locking.