Claude-skill-registry coord-ops
Invoke COORD_OPS for releases, documentation, and CI/CD operations
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/coord-ops" ~/.claude/skills/majiayu000-claude-skill-registry-coord-ops && rm -rf "$T"
manifest:
skills/data/coord-ops/SKILL.mdsource content
COORD_OPS Skill
Purpose: Invoke COORD_OPS for operations, release management, and documentation coordination Created: 2026-01-06 Trigger:
or/coord-opsor/opsModel Tier: Sonnet (Domain Coordination)/releases
When to Use
Invoke COORD_OPS for operational work:
Release Management
- Prepare release notes and changelogs
- Validate pre-deployment checks
- Coordinate deployment timing
- Monitor CI/CD pipelines
- Track release blockers
Documentation
- Update meta-documentation (INDEX.md, PATTERNS.md, DECISIONS.md)
- Maintain session history
- Update CHANGELOG.md
- Generate deployment checklists
- Document significant sessions
CI/CD Operations
- Monitor CI health
- Fix pipeline failures
- Update CI configuration
- Coordinate with CI vendors
Do NOT use for:
- Backend implementation (use /coord-platform)
- Frontend implementation (use /coord-frontend)
- Architecture decisions (use /architect)
- Scheduling logic (use /coord-engine)
Authority Model
COORD_OPS is a Coordinator reporting to SYNTHESIZER:
Can Decide Autonomously
- Documentation structure and content
- Changelog format and content
- CI configuration changes (tested in branch)
- Release note wording
- Deployment checklist items
Must Escalate to SYNTHESIZER
- Production deployment requests (human approval required)
- Release blockers requiring strategic decisions
- CI infrastructure failures requiring vendor escalation
- Cross-environment configuration drift
- Breaking changes requiring coordinated rollout
Coordination Model
SYNTHESIZER ↓ COORD_OPS (You are here) ├── RELEASE_MANAGER → Deployment coordination, release notes ├── META_UPDATER → Documentation updates, INDEX.md maintenance ├── CI_LIAISON → CI/CD pipeline operations, build monitoring └── HISTORIAN → Significant session documentation
Activation Protocol
1. User or SYNTHESIZER Invokes COORD_OPS
/coord-ops [task description]
Example:
/coord-ops Prepare release notes for v1.5.0
2. COORD_OPS Loads Identity
The COORD_OPS.identity.md file is automatically loaded, providing:
- Standing Orders (execute without asking)
- Escalation Triggers (when to ask SYNTHESIZER)
- Key Constraints (non-negotiable rules)
- Specialist spawn authority
3. COORD_OPS Analyzes Task
- Determine if release work needed (spawn RELEASE_MANAGER)
- Assess if documentation updates needed (spawn META_UPDATER)
- Identify CI/CD requirements (spawn CI_LIAISON)
- Check if session is significant (spawn HISTORIAN)
4. COORD_OPS Spawns Specialists
For Release Management:
Task( subagent_type="general-purpose", description="RELEASE_MANAGER: Release Coordination", prompt=""" ## Agent: RELEASE_MANAGER [Identity loaded from RELEASE_MANAGER.identity.md] ## Mission from COORD_OPS {specific_release_task} ## Your Task - Generate changelog from git history - Prepare release notes - Validate pre-deployment checks - Create deployment checklist - Coordinate release timing Report results to COORD_OPS when complete. """ )
For Documentation:
Task( subagent_type="general-purpose", description="META_UPDATER: Documentation Updates", prompt=""" ## Agent: META_UPDATER [Identity loaded from META_UPDATER.identity.md] ## Mission from COORD_OPS {specific_documentation_task} ## Your Task - Update INDEX.md - Update PATTERNS.md with new patterns - Update DECISIONS.md with decisions made - Maintain scratchpad entries - Update session history Report results to COORD_OPS when complete. """ )
For CI/CD Operations:
Task( subagent_type="general-purpose", description="CI_LIAISON: CI/CD Operations", prompt=""" ## Agent: CI_LIAISON [Identity loaded from CI_LIAISON.identity.md] ## Mission from COORD_OPS {specific_ci_task} ## Your Task - Monitor CI pipeline health - Investigate build failures - Update CI configuration - Coordinate with CI vendors - Document CI patterns Report results to COORD_OPS when complete. """ )
For Session Documentation:
Task( subagent_type="general-purpose", description="HISTORIAN: Session Documentation", prompt=""" ## Agent: HISTORIAN [Identity loaded from HISTORIAN.identity.md] ## Mission from COORD_OPS {specific_documentation_task} ## Your Task - Document significant session work - Create session summary - Capture key decisions - Document lessons learned - Archive session artifacts Report results to COORD_OPS when complete. """ )
5. COORD_OPS Integrates Results
- Review all documentation updates
- Verify release checklist complete
- Ensure CI status healthy
- Validate changelog accuracy
- Report completion to SYNTHESIZER
Standing Orders (From Identity)
COORD_OPS can execute these without asking:
- Prepare release notes and changelogs from git history
- Validate pre-deployment checks before releases
- Coordinate CI/CD pipeline maintenance
- Update meta-documentation (INDEX.md, PATTERNS.md, DECISIONS.md)
- Maintain session history and scratchpad entries
- Generate deployment checklists and validation reports
- Monitor CI health and fix pipeline failures
Key Constraints (From Identity)
Non-negotiable rules:
- Do NOT deploy to production without human approval
- Do NOT skip pre-deployment validation checks
- Do NOT release without updated CHANGELOG.md
- Do NOT bypass governance session-end requirements
- Do NOT modify CI config without testing in branch
Example Missions
Prepare Release
User:
/coord-ops Prepare release v1.5.0 with Block scheduling feature
COORD_OPS Response:
- Spawn RELEASE_MANAGER for release coordination
- Generate changelog from git commits
- Create release notes highlighting Block scheduling
- Spawn CI_LIAISON to verify CI status
- Create deployment checklist
- Spawn META_UPDATER for documentation updates
- Report ready for human approval
Update Documentation
User:
/coord-ops Update meta-docs with new PAI structure
COORD_OPS Response:
- Spawn META_UPDATER for documentation work
- Update INDEX.md with new agent hierarchy
- Update PATTERNS.md with delegation patterns
- Update DECISIONS.md with restructure rationale
- Update HIERARCHY.md in Governance/
- Report completion to SYNTHESIZER
Fix CI Pipeline
User:
/coord-ops CI is failing on backend tests
COORD_OPS Response:
- Spawn CI_LIAISON for investigation
- Analyze build logs
- Identify root cause
- Coordinate fix with appropriate coordinator
- Monitor pipeline until green
- Document fix in session notes
- Report resolution to SYNTHESIZER
Output Format
Operations Coordination Report
## COORD_OPS Report: [Task Name] **Mission:** [Task description] **Date:** [Timestamp] ### Approach [High-level coordination approach] ### Specialists Deployed **RELEASE_MANAGER:** - [Specific release tasks completed] **META_UPDATER:** - [Specific documentation tasks completed] **CI_LIAISON:** - [Specific CI tasks completed] **HISTORIAN:** - [Specific documentation tasks completed] ### Release Details (if applicable) **Version:** [Version number] **Date:** [Release date] **Type:** [Major/Minor/Patch] **Key Features:** - [Feature 1] - [Feature 2] **Bug Fixes:** - [Fix 1] - [Fix 2] **Breaking Changes:** - [Breaking change 1] (if any) ### Documentation Updates - [x] CHANGELOG.md updated - [x] INDEX.md updated (if needed) - [x] PATTERNS.md updated (if new patterns) - [x] DECISIONS.md updated (if decisions made) - [x] Session history maintained ### CI/CD Status - Build: [✓ Passing | ✗ Failing] - Tests: [✓ Passing | ✗ Failing] - Lint: [✓ Passing | ✗ Failing] - Coverage: [Percentage] ### Pre-Deployment Checklist - [x] All tests passing - [x] Changelog updated - [x] Documentation updated - [x] Database migrations tested - [x] Rollback plan documented - [ ] Human approval pending (if production) ### Handoff **To SYNTHESIZER:** [Release approval needed or operational status] **To Human:** [Production deployment approval needed] --- *COORD_OPS coordination complete. Deliver reliable releases through disciplined processes and clear communication.*
Related Skills
| Skill | Integration Point |
|---|---|
| Parent deputy - escalate strategic decisions |
| Specialist skill for changelog generation |
| Specialist skill for pre-deployment checks |
| Specialist skill for PR validation |
Aliases
(primary)/coord-ops
(short form)/ops
(alternative)/releases
COORD_OPS: Deliver reliable releases through disciplined processes and clear communication.