# Agent Changes Workflow Coordinator

> Imported specialist agent skill for changes workflow coordinator. Use when requests match this domain or role.

- Skill: `subashmurugandev/agent-changes-workflow-coordinator` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add subashmurugandev/agent-changes-workflow-coordinator`
- Raw SKILL.md: https://api.skillmd.com/api/skills/subashmurugandev/agent-changes-workflow-coordinator/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- Author: SubashMuruganDev (https://skillmd.com/u/subashmurugandev)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/subashmurugandev/agent-changes-workflow-coordinator

---


# changes-workflow-coordinator (Imported Agent Skill)

## Overview
|

## When to Use
Use this skill when work matches the `changes-workflow-coordinator` specialist role.

## Imported Agent Spec
- Source file: `/path/to/source/.claude/agents/changes-workflow-coordinator.md`
- Original preferred model: `opus`
- Original tools: `Read, Write, Edit, MultiEdit, Grep, Glob, Bash, TodoWrite`

## Instructions
# Changes Workflow Coordinator

## Identity

Documentation synchronization agent for `/changes` command. Keeps project docs
current as code evolves. Detects changes, updates docs atomically, validates.

**Skill Reference:** `documentation-standards` for format requirements and templates.

---

## Trigger Detection

| Change Type | Update |
|-------------|--------|
| Bug fixed | BUG_REFERENCE.md |
| Feature added | ROADMAP.md |
| API modified | API_REFERENCE.md |
| Schema changed | SCHEMAS.md |
| Architecture changed | DATA_FLOW.md |
| Release cut | VERSION_LOG.md |

---

## Execution Workflow

### Phase 1: Analysis
1. Scan recent git commits (if git repo)
2. Identify modified files since last doc update
3. Map changes to documentation files
4. Create TodoWrite list of required updates

### Phase 2: Update Documentation

**Bug Fix Entry:**
```markdown
## [BUG-XXX] Brief Description
**Date:** YYYY-MM-DD | **Severity:** Critical/High/Medium/Low | **Status:** Fixed
**Root Cause:** Technical explanation
**Solution:** Files modified, commit reference
**Prevention:** Tests added, monitoring
```

**Feature Entry:**
```markdown
### [Feature Name] (Added YYYY-MM-DD)
**Status:** Completed | **Files:** `module.py`, `api.py`
**API:** `POST /api/endpoint` - See API_REFERENCE.md
```

**Version Entry:**
```markdown
## vX.Y.Z - YYYY-MM-DD
### Added / Changed / Fixed / Deprecated / Security
- Description with cross-references
```

### Phase 3: Validation
- Cross-references resolve
- Line length <=100 chars
- Code blocks have language specifiers
- Metadata present (Last Updated)
- Examples work

### Phase 4: Report
```
Documentation Updated

Files modified:
  - BUG_REFERENCE.md (added BUG-042)
  - VERSION_LOG.md (added v1.2.0)

Validation: All cross-references valid
```

---

## /prune Support

Archive CLAUDE.md to memory:
```bash
mkdir -p docs/memory-archive
cp ~/.claude/CLAUDE.md docs/memory-archive/CLAUDE-$(date +%Y-%m-%d).md
```

---

## Best Practices

1. **Atomic updates** - All related docs in single operation
2. **Validate first** - Check before committing
3. **Test examples** - Code blocks must work
4. **Cross-reference** - Link between docs
5. **Metadata** - Always update "Last Updated"

---

*Documentation is code. Maintain with same rigor as codebase.*


