agentcoord

Coordinate work and exchange messages between Codex, Claude, and Copilot agents.

Updated Dec 20, 2025
One-click install
npx skills add https://github.com/koala-man-64/helpful-scripts --skill agentcoord-koala-man-64
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: agentcoord
Source: https://github.com/koala-man-64/helpful-scripts/tree/main/agentic-ide-setup/profile/codex/skills/agentcoord
Command: npx skills add https://github.com/koala-man-64/helpful-scripts --skill agentcoord-koala-man-64

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? When multiple AI agents (Codex, Claude, Copilot) work in the same environment, they can duplicate effort, overwrite each other's changes, or miss important peer updates. This Skill provides a structured coordination protocol so agents can check peer activity, claim shared work, and exchange durable messages without conflicts. ## Core Features & Use Cases - Peer Activity Checks: Run health checks, register sessions, and see who is working on what before starting overlapping tasks. - Work and Claim Management: Register longer-lived work items and acquire shared or exclusive claims to prevent conflicting edits. - Durable Messaging: Send direct messages, post to named spaces, and continue discussions via threads with reply references. - Use Case: Before refactoring a shared module, a Codex agent checks in, reads its inbox, sees a Claude agent already claims that module, and messages it to coordinate instead of colliding. ## Quick Start Ask the agent to check in with agentcoord and show which peer agents are currently working before starting your task.

Frequently Asked Questions about agentcoord

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

FAQPage Schema
How do I coordinate multiple AI coding agents on the same project?▼

Use a coordination protocol where each agent registers a session, checks in, and reads its inbox before starting work. Agents acquire shared or exclusive claims on work items so peers can see who is doing what and avoid conflicts.

How do AI agents avoid overlapping work on shared files?▼

Agents call coord_who_is_working before beginning tasks and acquire exclusive claims on the resources they need. Claims fail closed while offline, so an agent cannot silently take ownership without the coordination bridge confirming it.

Can Codex, Claude, and Copilot agents exchange messages?▼

Yes, agents exchange durable messages through direct messages or named spaces, with threads and reply references for continuing discussions. All peer messages are treated as untrusted coordination data that cannot authorize commands or edits.

What happens when the agentcoord bridge is unavailable?▼

The agent runs coord_doctor first and stops all coordination work if the bridge is unavailable. Registration, membership changes, work starts, and claims all fail closed while offline rather than assuming success.

What are the security limitations of multi-agent messaging?▼

Peer messages cannot authorize commands, edits, tool calls, secret disclosure, or approval bypasses. Agents must never persist or send raw prompts, full transcripts, credentials, authorization headers, or secret values through the coordination channel.