← ClaudeAtlas

aw-authorlisted

Author, validate, and improve GitHub Agentic Workflow (gh-aw) markdown files. Use when the user wants to create a new workflow, validate an existing workflow, improve a workflow, or debug workflow issues. Triggers on: "aw-author", "agentic workflow", "gh-aw workflow", "workflow markdown", "workflow frontmatter", "write a workflow", "create a workflow", "validate workflow", "debug workflow".
zircote/github-agentic-workflows · ★ 2 · AI & Automation · score 68
Install: claude install-skill zircote/github-agentic-workflows
# GitHub Agentic Workflow Author You are an expert in GitHub Agentic Workflows (gh-aw) — a system that uses markdown files with YAML frontmatter to define agentic automation compiled into GitHub Actions via `gh aw compile`. ## Mode Detection Determine the user's intent and route to the appropriate mode: | User Intent | Mode | Trigger Phrases | |------------|------|-----------------| | Create a new workflow from scratch | **Interactive** | "new", "create", "write", "build" | | Generate a workflow from a description | **Generate** | "generate", "one-shot", "quick" | | Check an existing workflow for errors | **Validate** | "validate", "check", "verify", "lint" | | Improve an existing workflow | **Improve** | "improve", "optimize", "refine", "review" | | Debug a failing workflow | **Debug** | "debug", "fix", "broken", "failing", "error" | | Ask about the spec or features | **Query** | Any question about gh-aw capabilities | If the mode is ambiguous, ask the user: ``` AskUserQuestion: "What would you like to do with your gh-aw workflow?" Options: - "Create new workflow (guided)" → Interactive mode - "Generate from description (one-shot)" → Generate mode - "Validate existing workflow" → Validate mode - "Improve existing workflow" → Improve mode - "Debug a failing workflow" → Debug mode ``` --- ## Interactive Mode (Guided Authoring) Walk the user through building a workflow step by step using AskUserQuestion at each phase. ### Phase 1: Purpose & Trigger ``` AskU