What problem does it solve? When working in a shared workspace, uncoordinated file writes, test runs, and commits create conflicts and messy history. This Skill defines an action-driven sync protocol so every operation follows the right coordination steps, whether you work solo or alongside other agents. ## Core Features & Use Cases - Risk-based action protocol: Classifies actions as low, medium, high, or breaking risk and maps each to the correct sequence of sync_get_context, sync_declare_intent, sync_broadcast, and sync_report_status calls. - Tool discovery via get_tools: Returns the right tools and protocol for scenarios like session_start, file_write, test_run, close_session, and multi_agent. - Conflict-aware writes: Before modifying files, checks workspace context and declares intent so concurrent agents avoid collisions. - Use Case: Before refactoring a database layer in a Canopy workspace, declare a coarse mission, execute the edits, then report a stable status so the session history stays clean for the next agent. ## Quick Start Ask the agent to check for conflicts and declare intent before modifying files in the Canopy workspace, then report status when the task is complete.