mirror of
https://github.com/affaan-m/everything-claude-code.git
synced 2026-06-16 16:36:53 +08:00
Adds a GitHub-native coordination layer on top of ECC: Commands (7 new slash commands): - epic-claim, epic-sync, epic-validate, epic-publish - epic-review, epic-unblock, epic-decompose Scripts: - scripts/github-coordination.js — CLI entry point - scripts/lib/github-coordination.js — core library (state machine, gh API wrappers) - scripts/status.js — coordination status reporter Config: - config/github-native-coordination.json — labels, review policy, validation gates Tests: - tests/lib/github-coordination.test.js — 15 unit tests for pure functions - tests/scripts/github-coordination.test.js — integration/CLI test suite Registry: - docs/COMMAND-REGISTRY.json — adds 7 epic-* entries, totalCommands 84 → 91 No encoding changes, no prp-* modifications, no Windows shims. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
27 lines
608 B
Markdown
27 lines
608 B
Markdown
---
|
|
description: Claim an epic issue, stamp coordination state, and sync local ownership.
|
|
---
|
|
|
|
# /epic-claim
|
|
|
|
Claim one epic issue as the source of truth for a unit of work.
|
|
|
|
Use the coordination script:
|
|
|
|
```bash
|
|
node scripts/github-coordination.js claim <issue-number> --repo <owner/repo> --actor <login>
|
|
```
|
|
|
|
What this does:
|
|
|
|
1. Loads the issue body and coordination block.
|
|
2. Marks the epic as claimed in GitHub issue state.
|
|
3. Updates labels and the local SQLite cache.
|
|
4. Appends an audit comment for the claim.
|
|
|
|
Compatibility aliases:
|
|
|
|
- `/orch-add-feature`
|
|
- `/orch-change-feature`
|
|
- `/prp-implement`
|