Skip to content

Commit 71089c7

Browse files
authored
Set up agentic issue triaging (#47696)
* migrate triaging to agentic workflow * codeowner logic updates * minor, address comment * upgrade and compile * cspell
1 parent 47ce73b commit 71089c7

10 files changed

Lines changed: 2807 additions & 246 deletions

File tree

Lines changed: 64 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
2-
description: GitHub Agentic Workflows (gh-aw) - Create, debug, and upgrade AI-powered workflows with intelligent prompt routing
2+
name: Agentic Workflows
3+
description: GitHub Agentic Workflows (gh-aw) - Create, debug, and upgrade AI-powered workflows with intelligent prompt routing.
34
disable-model-invocation: true
45
---
56

@@ -13,12 +14,16 @@ This is a **dispatcher agent** that routes your request to the appropriate speci
1314

1415
- **Creating new workflows**: Routes to `create` prompt
1516
- **Updating existing workflows**: Routes to `update` prompt
16-
- **Debugging workflows**: Routes to `debug` prompt
17+
- **Debugging workflows**: Routes to `debug` prompt
1718
- **Upgrading workflows**: Routes to `upgrade-agentic-workflows` prompt
1819
- **Creating report-generating workflows**: Routes to `report` prompt — consult this whenever the workflow posts status updates, audits, analyses, or any structured output as issues, discussions, or comments
1920
- **Creating shared components**: Routes to `create-shared-agentic-workflow` prompt
2021
- **Fixing Dependabot PRs**: Routes to `dependabot` prompt — use this when Dependabot opens PRs that modify generated manifest files (`.github/workflows/package.json`, `.github/workflows/requirements.txt`, `.github/workflows/go.mod`). Never merge those PRs directly; instead update the source `.md` files and rerun `gh aw compile --dependabot` to bundle all fixes
2122
- **Analyzing test coverage**: Routes to `test-coverage` prompt — consult this whenever the workflow reads, analyzes, or reports on test coverage data from PRs or CI runs
23+
- **Rendering ASCII charts in markdown**: Routes to `asciicharts` guide — consult this whenever the workflow needs compact charts that render reliably in GitHub issues, comments, or discussions
24+
- **CLI commands and triggering workflows**: Routes to `cli-commands` guide — consult this whenever the user asks how to run, compile, debug, or manage workflows from the command line, or when they need the MCP tool equivalent of a `gh aw` command
25+
- **Reducing token consumption / cost optimization**: Routes to `token-optimization` guide — consult this whenever the user asks how to reduce token usage, lower costs, speed up workflows, or measure the impact of prompt changes with experiments
26+
- **Choosing workflow architectures and design patterns**: Routes to `patterns` guide — consult this whenever the user asks for strategy, architecture, operating models, or pattern selection for agentic workflows
2227

2328
Workflows may optionally include:
2429

@@ -30,7 +35,7 @@ Workflows may optionally include:
3035
- Workflow files: `.github/workflows/*.md` and `.github/workflows/**/*.md`
3136
- Workflow lock files: `.github/workflows/*.lock.yml`
3237
- Shared components: `.github/workflows/shared/*.md`
33-
- Configuration: https://github.com/github/gh-aw/blob/v0.61.0/.github/aw/github-agentic-workflows.md
38+
- Configuration: `https://raw.githubusercontent.com/github/gh-aw/main/.github/aw/github-agentic-workflows.md`
3439

3540
## Problems This Solves
3641

@@ -49,30 +54,32 @@ When you interact with this agent, it will:
4954

5055
## Available Prompts
5156

57+
> **Note**: The prompt and reference files listed below are located in the [`github/gh-aw`](https://github.com/github/gh-aw) repository and are **not available locally** in this repository. Load them from their public URLs.
58+
5259
### Create New Workflow
5360
**Load when**: User wants to create a new workflow from scratch, add automation, or design a workflow that doesn't exist yet
5461

55-
**Prompt file**: https://github.com/github/gh-aw/blob/v0.61.0/.github/aw/create-agentic-workflow.md
62+
**Prompt file**: `https://raw.githubusercontent.com/github/gh-aw/main/.github/aw/create-agentic-workflow.md`
5663

5764
**Use cases**:
5865
- "Create a workflow that triages issues"
5966
- "I need a workflow to label pull requests"
6067
- "Design a weekly research automation"
6168

62-
### Update Existing Workflow
69+
### Update Existing Workflow
6370
**Load when**: User wants to modify, improve, or refactor an existing workflow
6471

65-
**Prompt file**: https://github.com/github/gh-aw/blob/v0.61.0/.github/aw/update-agentic-workflow.md
72+
**Prompt file**: `https://raw.githubusercontent.com/github/gh-aw/main/.github/aw/update-agentic-workflow.md`
6673

6774
**Use cases**:
6875
- "Add web-fetch tool to the issue-classifier workflow"
6976
- "Update the PR reviewer to use discussions instead of issues"
7077
- "Improve the prompt for the weekly-research workflow"
7178

72-
### Debug Workflow
79+
### Debug Workflow
7380
**Load when**: User needs to investigate, audit, debug, or understand a workflow, troubleshoot issues, analyze logs, or fix errors
7481

75-
**Prompt file**: https://github.com/github/gh-aw/blob/v0.61.0/.github/aw/debug-agentic-workflow.md
82+
**Prompt file**: `https://raw.githubusercontent.com/github/gh-aw/main/.github/aw/debug-agentic-workflow.md`
7683

7784
**Use cases**:
7885
- "Why is this workflow failing?"
@@ -82,7 +89,7 @@ When you interact with this agent, it will:
8289
### Upgrade Agentic Workflows
8390
**Load when**: User wants to upgrade workflows to a new gh-aw version or fix deprecations
8491

85-
**Prompt file**: https://github.com/github/gh-aw/blob/v0.61.0/.github/aw/upgrade-agentic-workflows.md
92+
**Prompt file**: `https://raw.githubusercontent.com/github/gh-aw/main/.github/aw/upgrade-agentic-workflows.md`
8693

8794
**Use cases**:
8895
- "Upgrade all workflows to the latest version"
@@ -92,7 +99,7 @@ When you interact with this agent, it will:
9299
### Create a Report-Generating Workflow
93100
**Load when**: The workflow being created or updated produces reports — recurring status updates, audit summaries, analyses, or any structured output posted as a GitHub issue, discussion, or comment
94101

95-
**Prompt file**: https://github.com/github/gh-aw/blob/v0.61.0/.github/aw/report.md
102+
**Prompt file**: `https://raw.githubusercontent.com/github/gh-aw/main/.github/aw/report.md`
96103

97104
**Use cases**:
98105
- "Create a weekly CI health report"
@@ -102,7 +109,7 @@ When you interact with this agent, it will:
102109
### Create Shared Agentic Workflow
103110
**Load when**: User wants to create a reusable workflow component or wrap an MCP server
104111

105-
**Prompt file**: https://github.com/github/gh-aw/blob/v0.61.0/.github/aw/create-shared-agentic-workflow.md
112+
**Prompt file**: `https://raw.githubusercontent.com/github/gh-aw/main/.github/aw/create-shared-agentic-workflow.md`
106113

107114
**Use cases**:
108115
- "Create a shared component for Notion integration"
@@ -112,7 +119,7 @@ When you interact with this agent, it will:
112119
### Fix Dependabot PRs
113120
**Load when**: User needs to close or fix open Dependabot PRs that update dependencies in generated manifest files (`.github/workflows/package.json`, `.github/workflows/requirements.txt`, `.github/workflows/go.mod`)
114121

115-
**Prompt file**: https://github.com/github/gh-aw/blob/v0.61.0/.github/aw/dependabot.md
122+
**Prompt file**: `https://raw.githubusercontent.com/github/gh-aw/main/.github/aw/dependabot.md`
116123

117124
**Use cases**:
118125
- "Fix the open Dependabot PRs for npm dependencies"
@@ -122,19 +129,54 @@ When you interact with this agent, it will:
122129
### Analyze Test Coverage
123130
**Load when**: The workflow reads, analyzes, or reports test coverage — whether triggered by a PR, a schedule, or a slash command. Always consult this prompt before designing the coverage data strategy.
124131

125-
**Prompt file**: https://github.com/github/gh-aw/blob/v0.61.0/.github/aw/test-coverage.md
132+
**Prompt file**: `https://raw.githubusercontent.com/github/gh-aw/main/.github/aw/test-coverage.md`
126133

127134
**Use cases**:
128135
- "Create a workflow that comments coverage on PRs"
129136
- "Analyze coverage trends over time"
130137
- "Add a coverage gate that blocks PRs below a threshold"
131138

139+
### CLI Commands Reference
140+
**Load when**: The user asks how to run, compile, debug, or manage workflows from the command line; needs the MCP tool equivalent of a `gh aw` command; or is in a restricted environment (e.g., Copilot Cloud) without direct CLI access.
141+
142+
**Reference file**: `https://raw.githubusercontent.com/github/gh-aw/main/.github/aw/cli-commands.md`
143+
144+
**Use cases**:
145+
- "How do I trigger workflow X on the main branch?"
146+
- "What's the MCP equivalent of `gh aw logs`?"
147+
- "I'm in Copilot Cloud — how do I compile a workflow?"
148+
- "Show me all available gh aw commands"
149+
150+
### Token Consumption Optimization
151+
**Load when**: The user asks how to reduce token usage, lower workflow costs, make a workflow faster or cheaper, or measure the impact of prompt or configuration changes.
152+
153+
**Reference file**: `https://raw.githubusercontent.com/github/gh-aw/main/.github/aw/token-optimization.md`
154+
155+
**Use cases**:
156+
- "How do I reduce the token cost of this workflow?"
157+
- "My workflow is too expensive — how do I optimize it?"
158+
- "How do I compare token usage between two runs?"
159+
- "Should I use gh-proxy or the MCP server?"
160+
- "How do I use sub-agents to reduce costs?"
161+
- "How do I measure the impact of a prompt change?"
162+
163+
### Workflow Pattern Selection
164+
**Load when**: The user asks for architecture, strategy, operating model selection, or pattern recommendations for building agentic workflows.
165+
166+
**Reference file**: `https://raw.githubusercontent.com/github/gh-aw/main/.github/aw/patterns.md`
167+
168+
**Use cases**:
169+
- "Which pattern should I use for multi-repo rollout?"
170+
- "How should I structure this workflow architecture?"
171+
- "What pattern fits slash-command triage?"
172+
- "Should this be DispatchOps or DailyOps?"
173+
132174
## Instructions
133175

134176
When a user interacts with you:
135177

136178
1. **Identify the task type** from the user's request
137-
2. **Load the appropriate prompt** from the GitHub repository URLs listed above
179+
2. **Load the appropriate prompt** from the URLs listed above
138180
3. **Follow the loaded prompt's instructions** exactly
139181
4. **If uncertain**, ask clarifying questions to determine the right prompt
140182

@@ -147,6 +189,10 @@ gh aw init
147189
# Generate the lock file for a workflow
148190
gh aw compile [workflow-name]
149191

192+
# Trigger a workflow on demand (preferred over gh workflow run)
193+
gh aw run <workflow-name> # interactive input collection
194+
gh aw run <workflow-name> --ref main # run on a specific branch
195+
150196
# Debug workflow runs
151197
gh aw logs [workflow-name]
152198
gh aw audit <run-id>
@@ -169,9 +215,12 @@ gh aw compile --validate
169215

170216
## Important Notes
171217

172-
- Always reference the instructions file at https://github.com/github/gh-aw/blob/v0.61.0/.github/aw/github-agentic-workflows.md for complete documentation
218+
- Always reference the instructions file at `https://raw.githubusercontent.com/github/gh-aw/main/.github/aw/github-agentic-workflows.md` for complete documentation
173219
- Use the MCP tool `agentic-workflows` when running in GitHub Copilot Cloud
174220
- Workflows must be compiled to `.lock.yml` files before running in GitHub Actions
175221
- **Bash tools are enabled by default** - Don't restrict bash commands unnecessarily since workflows are sandboxed by the AWF
176222
- Follow security best practices: minimal permissions, explicit network access, no template injection
223+
- **Network configuration**: Use ecosystem identifiers (`node`, `python`, `go`, etc.) or explicit FQDNs in `network.allowed`. Bare shorthands like `npm` or `pypi` are **not** valid. See `https://raw.githubusercontent.com/github/gh-aw/main/.github/aw/network.md` for the full list of valid ecosystem identifiers and domain patterns.
177224
- **Single-file output**: When creating a workflow, produce exactly **one** workflow `.md` file. Do not create separate documentation files (architecture docs, runbooks, usage guides, etc.). If documentation is needed, add a brief `## Usage` section inside the workflow file itself.
225+
- **Triggering runs**: Always use `gh aw run <workflow-name>` to trigger a workflow on demand — not `gh workflow run <file>.lock.yml`. `gh aw run` handles workflow resolution by short name, input parsing and validation, and correct run-tracking for agentic workflows. Use `--ref <branch>` to run on a specific branch.
226+
- **CLI commands reference**: For a complete guide on all `gh aw` commands and their MCP tool equivalents (for restricted environments), see `https://raw.githubusercontent.com/github/gh-aw/main/.github/aw/cli-commands.md`

.github/aw/actions-lock.json

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,19 @@
11
{
22
"entries": {
3-
"actions/github-script@v8": {
4-
"repo": "actions/github-script",
5-
"version": "v8",
6-
"sha": "ed597411d8f924073f98dfc5c65a23a2325f34cd"
7-
},
83
"actions/github-script@v9.0.0": {
94
"repo": "actions/github-script",
105
"version": "v9.0.0",
116
"sha": "3a2844b7e9c422d3c10d287c895573f7108da1b3"
127
},
13-
"github/gh-aw-actions/setup-cli@v0.79.8": {
8+
"github/gh-aw-actions/setup-cli@v0.80.9": {
149
"repo": "github/gh-aw-actions/setup-cli",
15-
"version": "v0.79.8",
16-
"sha": "c0338fef4749d08c21f8f975fb0e37efa17dda47"
10+
"version": "v0.80.9",
11+
"sha": "8c7d04ebf1ece56cd381446125da3e0f6896294a"
1712
},
18-
"github/gh-aw-actions/setup@v0.79.8": {
13+
"github/gh-aw-actions/setup@v0.80.9": {
1914
"repo": "github/gh-aw-actions/setup",
20-
"version": "v0.79.8",
21-
"sha": "c0338fef4749d08c21f8f975fb0e37efa17dda47"
15+
"version": "v0.80.9",
16+
"sha": "8c7d04ebf1ece56cd381446125da3e0f6896294a"
2217
}
2318
}
2419
}

.github/event-processor.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"InitialIssueTriage": "On",
2+
"InitialIssueTriage": "Off",
33
"ManualIssueTriage": "On",
44
"ServiceAttention": "On",
55
"ManualTriageAfterExternalAssignment": "On",
Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
---
2+
name: agentic-workflows
3+
description: Route gh-aw workflow design/create/debug/upgrade requests to the right prompts.
4+
---
5+
6+
# Agentic Workflows Router
7+
8+
Use this skill when a user asks to design, create, update, debug, or upgrade GitHub Agentic Workflows in this repository.
9+
10+
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.
11+
12+
Read only the files you need:
13+
Load these files from `github/gh-aw` (they are not available locally).
14+
- `.github/aw/agentic-chat.md`
15+
- `.github/aw/agentic-workflows-mcp.md`
16+
- `.github/aw/asciicharts.md`
17+
- `.github/aw/campaign.md`
18+
- `.github/aw/charts-trending.md`
19+
- `.github/aw/charts.md`
20+
- `.github/aw/cli-commands.md`
21+
- `.github/aw/context.md`
22+
- `.github/aw/create-agentic-workflow.md`
23+
- `.github/aw/create-shared-agentic-workflow.md`
24+
- `.github/aw/debug-agentic-workflow.md`
25+
- `.github/aw/dependabot.md`
26+
- `.github/aw/deployment-status.md`
27+
- `.github/aw/experiments.md`
28+
- `.github/aw/github-agentic-workflows.md`
29+
- `.github/aw/github-mcp-server.md`
30+
- `.github/aw/llms.md`
31+
- `.github/aw/mcp-clis.md`
32+
- `.github/aw/memory.md`
33+
- `.github/aw/messages.md`
34+
- `.github/aw/network.md`
35+
- `.github/aw/optimize-agentic-workflow.md`
36+
- `.github/aw/patterns.md`
37+
- `.github/aw/pr-reviewer.md`
38+
- `.github/aw/report.md`
39+
- `.github/aw/reuse.md`
40+
- `.github/aw/safe-outputs-automation.md`
41+
- `.github/aw/safe-outputs-content.md`
42+
- `.github/aw/safe-outputs-management.md`
43+
- `.github/aw/safe-outputs-runtime.md`
44+
- `.github/aw/safe-outputs.md`
45+
- `.github/aw/serena-tool.md`
46+
- `.github/aw/shared-safe-jobs.md`
47+
- `.github/aw/skills.md`
48+
- `.github/aw/subagents.md`
49+
- `.github/aw/syntax-agentic.md`
50+
- `.github/aw/syntax-core.md`
51+
- `.github/aw/syntax-tools-imports.md`
52+
- `.github/aw/syntax.md`
53+
- `.github/aw/test-coverage.md`
54+
- `.github/aw/test-expression.md`
55+
- `.github/aw/token-optimization.md`
56+
- `.github/aw/triggers.md`
57+
- `.github/aw/update-agentic-workflow.md`
58+
- `.github/aw/upgrade-agentic-workflows.md`
59+
- `.github/aw/visual-regression.md`
60+
- `.github/aw/workflow-constraints.md`
61+
- `.github/aw/workflow-editing.md`
62+
- `.github/aw/workflow-patterns.md`
63+
64+
- `.github/skills/agentic-workflow-designer/SKILL.md`
65+
After loading the matching workflow prompt or skill, follow it directly:
66+
- Design workflows from scratch via interview: `skills/agentic-workflow-designer/SKILL.md`
67+
- Create new workflows: `.github/aw/create-agentic-workflow.md`
68+
- Update existing workflows: `.github/aw/update-agentic-workflow.md`
69+
- Debug, audit, or investigate workflows: `.github/aw/debug-agentic-workflow.md`
70+
- Upgrade workflows and fix deprecations: `.github/aw/upgrade-agentic-workflows.md`
71+
- Create shared components or MCP wrappers: `.github/aw/create-shared-agentic-workflow.md`
72+
- Create report-generating workflows: `.github/aw/report.md`
73+
- Fix Dependabot manifest PRs: `.github/aw/dependabot.md`
74+
- Analyze coverage workflows: `.github/aw/test-coverage.md`
75+
- Render compact markdown charts: `.github/aw/asciicharts.md`
76+
- Map CLI commands to MCP usage: `.github/aw/cli-commands.md`
77+
- Choose workflow architecture and patterns: `.github/aw/patterns.md`
78+
- Optimize token usage and cost: `.github/aw/token-optimization.md`
79+
80+
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.

0 commit comments

Comments
 (0)