← ClaudeAtlas

daf-gitlisted

GitHub/GitLab issue operations (update, link) with Markdown syntax reference and gh/glab CLI guide
itdove/devaiflow · ★ 2 · Code & Development · score 71
Install: claude install-skill itdove/devaiflow
Complete workflow for managing GitHub Issues and GitLab Issues in DevAIFlow. Automatically detects the platform from your git repository. ## Quick Start **View issue details (use gh/glab CLI directly):** ```bash # GitHub gh issue view 123 gh issue view 123 --comments # GitLab glab issue view 123 glab issue view 123 --comments ``` ## All Commands ### Creating Issues Use `gh` or `glab` CLI directly to create issues, then link to your session: ```bash # GitHub gh issue create --title "Add caching" --body "Description here" # Then link to session: daf link <issue_url> # GitLab glab issue create --title "Add caching" --description "Description here" # Then link to session: daf link <issue_url> ``` ### Viewing Issues Use the `gh` or `glab` CLI directly to view issues: ```bash # GitHub gh issue view 123 # View issue gh issue view 123 --comments # Include comments gh issue view 123 -R owner/repo # Cross-repo # GitLab glab issue view 123 # View issue glab issue view 123 --comments # Include comments glab issue view 123 -R owner/repo # Cross-repo ``` **Tip:** The issue key is available from `daf info` or `daf status`. ### Adding Comments Use the `gh` or `glab` CLI directly to add comments: ```bash # GitHub gh issue comment 123 --body "Work in progress" # GitLab glab issue note 123 -m "Work in progress" ``` ### daf git update Update issue fields. ```bash # Update labels daf git u