# Source Command Issues

> Process and clear GitHub Issues - review, fix, close

- Skill: `sylphxai/source-command-issues` (Agent Skill)
- Install (CLI): `npx skillmds@latest add sylphxai/source-command-issues`
- Raw SKILL.md: https://api.skillmd.com/api/skills/sylphxai/source-command-issues/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: SylphxAI (https://skillmd.com/u/sylphxai)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/sylphxai/source-command-issues

---


# source-command-issues

Use this skill when the user asks to run the migrated source command `issues`.

## Command Template

# Issues: GitHub Issue Processing

Process all open GitHub Issues until the list is clear.

## Process

### Phase 1: List Issues

```bash
gh issue list --state open
```

### Phase 2: For Each Issue

1. Read the issue details: `gh issue view <number>`
2. Understand the problem — what is being reported?
3. Investigate the codebase — find the root cause
4. Fix the issue — address root cause, not symptom
5. Write tests to prevent regression
6. Commit with reference: `fix: description (closes #<number>)`
7. Push immediately

### Phase 3: Close and Report

After fix is pushed:
1. Comment on the issue with solution summary
2. Close the issue: `gh issue close <number>`
3. Move to next issue

## Rules

* Every issue must be addressed — no omissions
* Fix root cause, not symptoms
* Scan for similar issues after each fix
* Write tests for every fix
* Commit atomically with issue reference
* Push immediately after each fix

## Exit Condition

All open issues are closed.

