← ClaudeAtlas

sync-issueslisted

Sync sprint issues to GitHub Issues
lwalden/AIAgentMinder · ★ 4 · Code & Development · score 72
Install: claude install-skill lwalden/AIAgentMinder
# /aiagentminder:sync-issues - Sync Sprint Issues to GitHub Push the current sprint's issues to GitHub Issues for visibility outside Claude Code. Run this after sprint planning is approved, or at any point to bring GitHub Issues in sync with the current sprint state. --- ## Prerequisites - A GitHub remote must be configured (`git remote -v` shows an `origin` pointing to a GitHub repo) - `gh` CLI must be installed and authenticated (`gh auth status`) - An active sprint must exist in `SPRINT.md` (`**Status:** in-progress` or `proposed`) --- ## Step 1: Validate Prerequisites ```bash git remote -v gh auth status ``` - If no GitHub remote: stop. "No GitHub remote found. Add one with `git remote add origin <url>` first." - If `gh` not authenticated: stop. "GitHub CLI not authenticated. Run `gh auth login` first." - If no SPRINT.md or no active sprint: stop. "No active sprint found. Run a sprint first, then sync." --- ## Step 2: Read Current Sprint Read `SPRINT.md`. Extract: - Sprint number (e.g., `S1`) - Sprint goal - Each issue: ID, title, type, risk flag, status --- ## Step 3: Check Existing GitHub Issues ```bash gh issue list --label "aiagentminder" --json number,title,state,labels --limit 100 ``` Build a map of existing issues by their sprint ID label (e.g., label `S1-001`). --- ## Step 4: Create or Update Issues For each sprint issue: **If no matching GitHub issue exists** (no issue with label matching the sprint issue ID): ```bash gh issue create \ --ti