$npx -y skills add github/awesome-copilot --skill agentic-workflowsRoute gh-aw workflow design/create/debug/upgrade requests to the right prompts.
| 1 | # Agentic Workflows Router |
| 2 | |
| 3 | Use this skill when a user asks to design, create, update, debug, or upgrade GitHub Agentic Workflows in this repository. |
| 4 | |
| 5 | This skill is a dispatcher: identify the task type, load the matching workflow prompt/skill file, and follow it directly. Keep responses concise and ask a clarifying question if the correct prompt is unclear. |
| 6 | |
| 7 | Read only the files you need: |
| 8 | Load these files from `github/gh-aw` (they are not available locally). |
| 9 | - `.github/aw/agentic-chat.md` |
| 10 | - `.github/aw/agentic-workflows-mcp.md` |
| 11 | - `.github/aw/asciicharts.md` |
| 12 | - `.github/aw/campaign.md` |
| 13 | - `.github/aw/charts-trending.md` |
| 14 | - `.github/aw/charts.md` |
| 15 | - `.github/aw/cli-commands.md` |
| 16 | - `.github/aw/context.md` |
| 17 | - `.github/aw/create-agentic-workflow.md` |
| 18 | - `.github/aw/create-shared-agentic-workflow.md` |
| 19 | - `.github/aw/debug-agentic-workflow.md` |
| 20 | - `.github/aw/dependabot.md` |
| 21 | - `.github/aw/deployment-status.md` |
| 22 | - `.github/aw/experiments.md` |
| 23 | - `.github/aw/github-agentic-workflows.md` |
| 24 | - `.github/aw/github-mcp-server.md` |
| 25 | - `.github/aw/instructions.md` |
| 26 | - `.github/aw/llms.md` |
| 27 | - `.github/aw/loop.md` |
| 28 | - `.github/aw/lsp.md` |
| 29 | - `.github/aw/mcp-clis.md` |
| 30 | - `.github/aw/memory-stateful-patterns.md` |
| 31 | - `.github/aw/memory.md` |
| 32 | - `.github/aw/messages.md` |
| 33 | - `.github/aw/network.md` |
| 34 | - `.github/aw/optimize-agentic-workflow.md` |
| 35 | - `.github/aw/patterns.md` |
| 36 | - `.github/aw/pr-reviewer.md` |
| 37 | - `.github/aw/report.md` |
| 38 | - `.github/aw/reuse.md` |
| 39 | - `.github/aw/safe-outputs-automation.md` |
| 40 | - `.github/aw/safe-outputs-content.md` |
| 41 | - `.github/aw/safe-outputs-management.md` |
| 42 | - `.github/aw/safe-outputs-runtime.md` |
| 43 | - `.github/aw/safe-outputs.md` |
| 44 | - `.github/aw/serena-tool.md` |
| 45 | - `.github/aw/shared-safe-jobs.md` |
| 46 | - `.github/aw/skills.md` |
| 47 | - `.github/aw/subagents.md` |
| 48 | - `.github/aw/syntax-agentic.md` |
| 49 | - `.github/aw/syntax-core.md` |
| 50 | - `.github/aw/syntax-tools-imports.md` |
| 51 | - `.github/aw/syntax.md` |
| 52 | - `.github/aw/test-coverage.md` |
| 53 | - `.github/aw/test-expression.md` |
| 54 | - `.github/aw/token-optimization.md` |
| 55 | - `.github/aw/triggers.md` |
| 56 | - `.github/aw/update-agentic-workflow.md` |
| 57 | - `.github/aw/upgrade-agentic-workflows.md` |
| 58 | - `.github/aw/visual-regression.md` |
| 59 | - `.github/aw/workflow-constraints.md` |
| 60 | - `.github/aw/workflow-editing.md` |
| 61 | - `.github/aw/workflow-patterns.md` |
| 62 | |
| 63 | - `.github/skills/agentic-workflow-designer/SKILL.md` |
| 64 | After loading the matching workflow prompt or skill, follow it directly: |
| 65 | - Design workflows from scratch via interview: `skills/agentic-workflow-designer/SKILL.md` |
| 66 | - Create new workflows: `.github/aw/create-agentic-workflow.md` |
| 67 | - Update existing workflows: `.github/aw/update-agentic-workflow.md` |
| 68 | - Debug, audit, or investigate workflows: `.github/aw/debug-agentic-workflow.md` |
| 69 | - Upgrade workflows and fix deprecations: `.github/aw/upgrade-agentic-workflows.md` |
| 70 | - Create shared components or MCP wrappers: `.github/aw/create-shared-agentic-workflow.md` |
| 71 | - Create report-generating workflows: `.github/aw/report.md` |
| 72 | - Fix Dependabot manifest PRs: `.github/aw/dependabot.md` |
| 73 | - Analyze coverage workflows: `.github/aw/test-coverage.md` |
| 74 | - Render compact markdown charts: `.github/aw/asciicharts.md` |
| 75 | - Map CLI commands to MCP usage: `.github/aw/cli-commands.md` |
| 76 | - Choose workflow architecture and patterns: `.github/aw/patterns.md` |
| 77 | - Optimize token usage and cost: `.github/aw/token-optimization.md` |
| 78 | |
| 79 | When the task involves OTEL, OTLP, traces, observability backends, or telemetry-driven analysis, also read and follow `skills/otel-queries/SKILL.md` after loading the matching workflow prompt or skill. |