askill
github-workflow

github-workflowSafety 90Repository

Manages GitHub workflow including issues, PRs, labels, and reviews. Use when working with GitHub issues, creating PRs, or coordinating reviews.

1 stars
1.2k downloads
Updated 2/16/2026

Package Files

Loading files...
SKILL.md

GitHub Workflow Skill

Guidance for managing the development workflow through GitHub.

Issue State Labels

LabelDescriptionWhen to Apply
readyNo blocking dependenciesIssue can be picked up
in-progressCurrently being implementedDeveloper starts work
blockedWaiting on dependenciesHas unresolved blockers
needs-reviewPR open, awaiting reviewsPR created
gh issue edit {n} --add-label "in-progress" --remove-label "ready"
gh issue edit {n} --add-label "needs-review" --remove-label "in-progress"

Dependency Tracking

In issue body:

## Dependencies
Depends on #12 (User authentication)
Depends on #15 (Database schema)

Parse dependencies:

gh issue view {n} --json body --jq '.body' | grep -oE "Depends on #[0-9]+" | grep -oE "[0-9]+"
gh issue view {dep} --json state --jq '.state'

Agent Identification

All GitHub interactions must include an agent identifier header.

Format: **[Agent Name]** at the start of every issue body, PR description, and comment.

Standardized Review Comments

Since all agents share the same GitHub user, reviews use standardized comments:

Approval:

✅ APPROVED - [Role]
[Summary]

Changes Requested:

❌ CHANGES REQUESTED - [Role]
[Issues to address]

Required Reviews Per PR

ReviewWhen Required
ArchitectAlways
DesignerIf UI changes
TesterAlways

Review Templates

Architect

gh pr comment {n} --body "**[Architect]**

✅ APPROVED - Architect

Clean architecture. LGTM."

Designer

gh pr comment {n} --body "**[Designer]**

✅ APPROVED - Designer

UI looks good. Accessibility met."

# Or if not applicable:
gh pr comment {n} --body "**[Designer]** N/A - No UI changes."

Tester

gh pr comment {n} --body "**[Tester]**

✅ APPROVED - Tester

**Tests:** All passing
**Manual:** Completed

Ready for merge."

Product Owner (Merge)

gh pr comment {n} --body "**[Product Owner]**

All required reviews complete:
- ✅ Architect
- ✅ Tester

Proceeding with merge."

gh pr merge {n} --squash --delete-branch

PR Approval Verification

Before merge:

  1. ✅ APPROVED - Architect present
  2. ✅ APPROVED - Tester present
  3. ✅ APPROVED - Designer present (if UI)
  4. No outstanding ❌ CHANGES REQUESTED
  5. CI/tests passing
gh pr view {n} --comments  # Check for approval comments

Labels

Priority

LabelDescription
priority:highWork first
priority:mediumNormal
priority:lowWork last

Type

LabelDescription
featureNew functionality
bugBug fix
enhancementImprovement

Common Commands

# Issues
gh issue list --state open --label "ready"
gh issue view {n}
gh issue edit {n} --add-label "in-progress"

# PRs
gh pr create --title "..." --body "..."
gh pr view {n} --comments
gh pr merge {n} --squash --delete-branch

# Milestones
gh issue edit {n} --milestone "v1.0"

Install

Download ZIP
Requires askill CLI v1.0+

AI Quality Score

73/100Analyzed 2/25/2026

Well-structured GitHub workflow reference skill with comprehensive label definitions, CLI commands, and review templates. Provides practical actionable guidance with clear tables and code examples. Somewhat project-specific due to review roles, but core content is high-quality technical reference. Location in .automatasaurus folder suggests internal tool config."

90
84
55
78
82

Metadata

Licenseunknown
Version-
Updated2/16/2026
Publishershwilliamson

Tags

ci-cddatabasegithubgithub-actions