/doc-sync
Use when a project has linked documentation artifacts (PRDs, presentations, meeting notes, architecture maps) that must stay synchronized. Detects which source files changed, identifies downstream documents needing updates, reads new content, and proposes specific edits with
$ npx -y skills add coco-research/coco --skill doc-sync --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/doc-sync
Context preview
The summary Claude sees to decide when to auto-load this skill.
Use when a project has linked documentation artifacts (PRDs, presentations, meeting notes, architecture maps) that must stay synchronized. Detects which source files changed, identifies downstream documents needing updates, reads new content, and proposes specific edits with
SKILL.md
doc-sync.SKILL.mdname: pmstudio-sync
description: Use when a project has linked documentation artifacts (PRDs, presentations, meeting notes, architecture maps) that must stay synchronized. Detects which source files changed, identifies downstream documents needing updates, reads new content, and proposes specific edits with diffs before applying. Also use when a .sync-report.md exists in the project or user says "process sync report".
domain: pm
Doc Sync — Cascading Document Updater
What This Skill Does
Maintains consistency across a documentation ecosystem where one source change (e.g., a new meeting note) should cascade updates to multiple downstream documents (PRD, presentation, project memory).
**This is NOT a background watcher.** This skill is the Claude-side processor that: 1. Reads a sync report or detects changes directly 2. Extracts actionable content from new/modified source files 3. Proposes specific edits to each downstream target 4. Applies changes only after user approval
Prerequisites
Infrastructure (one-time setup)
The persistent detection layer runs outside Claude Code via `/project-sync init`:
| Component | Path | Purpose | |-----------|------|---------| | Orchestrator | `~/.claude/scripts/project-sync-orchestrator.sh` | Email search + file detection + report generation | | launchd agent | `~/Library/LaunchAgents/com.claude.project-sync.<name>.plist` | Background scheduler (every 2 hours) | | State dir | `~/.claude/state/<project-name>/` | Logs, timestamps, cached config (outside OneDrive) |
Per-Project Config
Each project needs `.sync-watch.json` in its root:
{
"project_name": "My Project",
"watch_dirs": ["docs/meeting-notes", "docs/research"],
"target_docs": {
"tier1": [
{
"path": "docs/PRD.html",
"name": "Product Requirements",
"update_from": ["meeting-notes", "research"],
"what": "Requirements, user stories, decisions"
}
],
"tier2": [
{
"path": "docs/presentation.html",
"name": "Stakeholder Deck",
"update_from": ["meeting-notes"],
"what": "Stakeholder updates, timeline changes"
}
]
},
"ignore_patterns": [".*", "*.tmp", "~$*"],
"file_types": [".md", ".html", ".docx", ".xlsx", ".pdf"]
}Invocation
Automatic (via session hook)
When you start a Claude Code session in a watched project with pending changes:
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
SYNC WATCHER ► 3 new/modified file(s) detected
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Say "process sync report" to review and apply updates.
Manual
- `/doc-sync` — check for changes now and process
- `/doc-sync path/to/new-file.md` — process a specific source file
- `process sync report` — process a pending `.sync-report.md`
Process
Step 1: Detect Changes
**If `.sync-report.md` exists:** Read it — it lists all changed files with timestamps.
**If no report (manual invocation):**
!`bash ~/.claude/scripts/project-sync-orchestrator.sh "$(pwd)"`
Then read the generated `.sync-report.md` (written to project root or `~/.claude/state/<project-name>/sync-report.md`).
**If a specific file was passed as `$ARGUMENTS`:** Use that file as the sole source.
**If no changes detected:** Report "All documents are in sync." and stop.
Step 2: Read Source Files
For each new/modified file detected:
1. **Skip binaries** (`.docx`, `.xlsx`, `.pptx`, `.pdf`) — note them but don't read. Tell user: "Binary file detected — paste key content or convert to text." 2. **Read text files** (`.md`, `.html`) in full 3. **Extract structured data** from each:
For each source file, extract:
- NEW STAKEHOLDERS: Name, Role, Email, Group
- NEW DECISIONS: What was decided, by whom, date, impact
- NEW REQUIREMENTS: Functional/non-functional, priority, acceptance criteria
- NEW ACTION ITEMS: Owner, deadline, status
- NEW ARCHITECTURE: Design changes, module updates, integration changes
- NEW RISKS: Description, impact, mitigation
- VERSION CHANGES: What changed from previous version
Step 3: Read Config & Map Dependencies
Read `.sync-watch.json` to determine which target docs need which types of updates.
For each target doc in `tier1` and `tier2`:
- Check if any source file matches its `update_from` patterns
- If yes → read the target doc to understand current state
- Identify exactly WHERE in the target doc the new content should go
Step 4: Propose Updates
Present a structured proposal — DO NOT edit anything yet:
## Sync Proposal
### Source: Meeting-Notes-2026-03-17.md
**New content extracted:**
- 2 new stakeholders (Jane Doe, John Smith)
- 1 decision (moved go-live to Q4)
- 3 action items
### Updates Needed:
**1. PRD.html** (Tier 1)
- Section 05 Stakeholders: Add Jane Doe (Tax Director), John Smith (IT Lead)
- Section 12 Timeline: Update go-live from Q3 → Q4
- Change log: Add v1.1 entry
- [Show exact diff preview for each change]
**2. Presentation.html** (Tier 1)
- Slide 7 (Team): Add 2 stakeholder cards
- Slide 12 (Timeline): Update milestone date
- [Show exact diff preview]
**3. CLAUDE.local.md** (Tier 1)
- Recent Changes: Add dated entry
- [Show exact content to append]
**4. Stakeholder-Directory.xlsx** (Tier 2)
- SKIP — binary file, manual update needed
Step 5: Get Approval
Ask user:
- "Apply all updates?" → proceed with all
- "Apply selectively?" → let user pick which targets
- "Skip for now?" → clean up report, do nothing
- User may also request modifications to the proposal
Step 6: Apply Updates
For each approved target: 1. **Read the target file** (always re-read before editing — it may have changed) 2. **Apply edits** using the Edit tool (not Write — preserve unchanged content) 3. **Verify** the edit was applied correctly 4. **Log** what was changed
Step 7: Clean Up & Update Memory
After all edits applied: 1. **Delete `.sync-report.md`** (consumed) 2. **Update `_temp/.last-syn
Read more
name: pmstudio-sync description: Use when a project has linked documentation artifacts (PRDs, presentations, meeting notes, architecture maps) that must stay synchronized. Detects which source files changed, identifies downstream documents needing updates, reads new content, and proposes specific edits with diffs before applying. Also use when a .sync-report.md exists in the project or user says "process sync report". domain: pm
Doc Sync — Cascading Document Updater
What This Skill Does
Maintains consistency across a documentation ecosystem where one source change (e.g., a new meeting note) should cascade updates to multiple downstream documents (PRD, presentation, project memory).
**This is NOT a background watcher.** This skill is the Claude-side processor that: 1. Reads a sync report or detects changes directly 2. Extracts actionable content from new/modified source files 3. Proposes specific edits to each downstream target 4. Applies changes only after user approval
Prerequisites
Infrastructure (one-time setup)
The persistent detection layer runs outside Claude Code via `/project-sync init`:
| Component | Path | Purpose | |-----------|------|---------| | Orchestrator | `~/.claude/scripts/project-sync-orchestrator.sh` | Email search + file detection + report generation | | launchd agent | `~/Library/LaunchAgents/com.claude.project-sync.<name>.plist` | Background scheduler (every 2 hours) | | State dir | `~/.claude/state/<project-name>/` | Logs, timestamps, cached config (outside OneDrive) |
Per-Project Config
Each project needs `.sync-watch.json` in its root:
{
"project_name": "My Project",
"watch_dirs": ["docs/meeting-notes", "docs/research"],
"target_docs": {
"tier1": [
{
"path": "docs/PRD.html",
"name": "Product Requirements",
"update_from": ["meeting-notes", "research"],
"what": "Requirements, user stories, decisions"
}
],
"tier2": [
{
"path": "docs/presentation.html",
"name": "Stakeholder Deck",
"update_from": ["meeting-notes"],
"what": "Stakeholder updates, timeline changes"
}
]
},
"ignore_patterns": [".*", "*.tmp", "~$*"],
"file_types": [".md", ".html", ".docx", ".xlsx", ".pdf"]
}Invocation
Automatic (via session hook)
When you start a Claude Code session in a watched project with pending changes:
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ SYNC WATCHER ► 3 new/modified file(s) detected ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Say "process sync report" to review and apply updates.
Manual
- `/doc-sync` — check for changes now and process
- `/doc-sync path/to/new-file.md` — process a specific source file
- `process sync report` — process a pending `.sync-report.md`
Process
Step 1: Detect Changes
**If `.sync-report.md` exists:** Read it — it lists all changed files with timestamps.
**If no report (manual invocation):**
!`bash ~/.claude/scripts/project-sync-orchestrator.sh "$(pwd)"`
Then read the generated `.sync-report.md` (written to project root or `~/.claude/state/<project-name>/sync-report.md`).
**If a specific file was passed as `$ARGUMENTS`:** Use that file as the sole source.
**If no changes detected:** Report "All documents are in sync." and stop.
Step 2: Read Source Files
For each new/modified file detected:
1. **Skip binaries** (`.docx`, `.xlsx`, `.pptx`, `.pdf`) — note them but don't read. Tell user: "Binary file detected — paste key content or convert to text." 2. **Read text files** (`.md`, `.html`) in full 3. **Extract structured data** from each:
For each source file, extract: - NEW STAKEHOLDERS: Name, Role, Email, Group - NEW DECISIONS: What was decided, by whom, date, impact - NEW REQUIREMENTS: Functional/non-functional, priority, acceptance criteria - NEW ACTION ITEMS: Owner, deadline, status - NEW ARCHITECTURE: Design changes, module updates, integration changes - NEW RISKS: Description, impact, mitigation - VERSION CHANGES: What changed from previous version
Step 3: Read Config & Map Dependencies
Read `.sync-watch.json` to determine which target docs need which types of updates.
For each target doc in `tier1` and `tier2`:
- Check if any source file matches its `update_from` patterns
- If yes → read the target doc to understand current state
- Identify exactly WHERE in the target doc the new content should go
Step 4: Propose Updates
Present a structured proposal — DO NOT edit anything yet:
## Sync Proposal ### Source: Meeting-Notes-2026-03-17.md **New content extracted:** - 2 new stakeholders (Jane Doe, John Smith) - 1 decision (moved go-live to Q4) - 3 action items ### Updates Needed: **1. PRD.html** (Tier 1) - Section 05 Stakeholders: Add Jane Doe (Tax Director), John Smith (IT Lead) - Section 12 Timeline: Update go-live from Q3 → Q4 - Change log: Add v1.1 entry - [Show exact diff preview for each change] **2. Presentation.html** (Tier 1) - Slide 7 (Team): Add 2 stakeholder cards - Slide 12 (Timeline): Update milestone date - [Show exact diff preview] **3. CLAUDE.local.md** (Tier 1) - Recent Changes: Add dated entry - [Show exact content to append] **4. Stakeholder-Directory.xlsx** (Tier 2) - SKIP — binary file, manual update needed
Step 5: Get Approval
Ask user:
- "Apply all updates?" → proceed with all
- "Apply selectively?" → let user pick which targets
- "Skip for now?" → clean up report, do nothing
- User may also request modifications to the proposal
Step 6: Apply Updates
For each approved target: 1. **Read the target file** (always re-read before editing — it may have changed) 2. **Apply edits** using the Edit tool (not Write — preserve unchanged content) 3. **Verify** the edit was applied correctly 4. **Log** what was changed
Step 7: Clean Up & Update Memory
After all edits applied: 1. **Delete `.sync-report.md`** (consumed) 2. **Update `_temp/.last-syn
Meet Coco. A superintelligent agent framework powered by an advisory board of 389 world-class minds. Scale your AI assistant into a complete engineering department with 142 skills, 277 commands, and persistent state. Universal compatibility. Local privacy. Free and open source.
Repo: coco-research/coco
Other skills on coco.
- /create-rule
Create Cursor rules for persistent AI guidance. Use when the user wants to create a rule, add coding standards, set up project conventions, configure file-specific patterns, create RULE.md files, or asks about .cursor/rules/ or AGENTS.md.
Open skill - /create-skill
Guides users through creating effective Agent Skills for Cursor. Use when the user wants to create, write, or author a new skill, or asks about skill structure, best practices, or SKILL.md format.
Open skill - /create-subagent
Create custom subagents for specialized AI tasks. Use when the user wants to create a new type of subagent, set up task-specific agents, configure code reviewers, debuggers, or domain-specific assistants with custom prompts.
Open skill - /migrate-to-skills
Convert 'Applied intelligently' Cursor rules (.cursor/rules/*.mdc) and slash commands (.cursor/commands/*.md) to Agent Skills format (.cursor/skills/). Use when the user wants to migrate rules or commands to skills, convert .mdc rules to SKILL.md format, or consolidate commands
Open skill - /update-cursor-settings
Modify Cursor/VSCode user settings in settings.json. Use when the user wants to change editor settings, preferences, configuration, themes, font size, tab size, format on save, auto save, keybindings, or any settings.json values.
Open skill - /agent-lightning
Train and optimize AI agents using Microsoft's Agent Lightning framework with reinforcement learning. Use when setting up agent training, instrumenting agents with tracing, configuring LightningStore, implementing reward functions, or optimizing prompts with RL/APO algorithms.
Open skill

