gh-aw-workflow-authoring
Installation
SKILL.md
✍️ GitHub Agentic Workflows - Workflow Authoring Skill
📋 Purpose
Master the art of authoring GitHub Agentic Workflows - creating AI-powered automation using natural language markdown instead of complex YAML. This skill provides comprehensive expertise in workflow design, natural language instructions, configuration, and best practices for effective agentic automation.
🎯 Core Concepts
What Makes Agentic Workflows Different?
Traditional GitHub Actions:
# Complex conditional logic
if: |
contains(github.event.issue.labels.*.name, 'bug') &&
!contains(github.event.issue.labels.*.name, 'wontfix') &&
github.event.issue.state == 'open'
run: echo "Process bug"