Skip to content

Commit 4be8f60

Browse files
authored
Upgrade to gh-aw v0.79.6
2 parents 5bd87f5 + 2da5863 commit 4be8f60

9 files changed

Lines changed: 1099 additions & 380 deletions

File tree

Lines changed: 46 additions & 18 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,13 +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
2224
- **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
2327

2428
Workflows may optionally include:
2529

@@ -31,7 +35,7 @@ Workflows may optionally include:
3135
- Workflow files: `.github/workflows/*.md` and `.github/workflows/**/*.md`
3236
- Workflow lock files: `.github/workflows/*.lock.yml`
3337
- Shared components: `.github/workflows/shared/*.md`
34-
- Configuration: https://github.com/github/gh-aw/blob/v0.72.1/.github/aw/github-agentic-workflows.md
38+
- Configuration: `.github/aw/github-agentic-workflows.md`
3539

3640
## Problems This Solves
3741

@@ -53,27 +57,27 @@ When you interact with this agent, it will:
5357
### Create New Workflow
5458
**Load when**: User wants to create a new workflow from scratch, add automation, or design a workflow that doesn't exist yet
5559

56-
**Prompt file**: https://github.com/github/gh-aw/blob/v0.72.1/.github/aw/create-agentic-workflow.md
60+
**Prompt file**: `.github/aw/create-agentic-workflow.md`
5761

5862
**Use cases**:
5963
- "Create a workflow that triages issues"
6064
- "I need a workflow to label pull requests"
6165
- "Design a weekly research automation"
6266

63-
### Update Existing Workflow
67+
### Update Existing Workflow
6468
**Load when**: User wants to modify, improve, or refactor an existing workflow
6569

66-
**Prompt file**: https://github.com/github/gh-aw/blob/v0.72.1/.github/aw/update-agentic-workflow.md
70+
**Prompt file**: `.github/aw/update-agentic-workflow.md`
6771

6872
**Use cases**:
6973
- "Add web-fetch tool to the issue-classifier workflow"
7074
- "Update the PR reviewer to use discussions instead of issues"
7175
- "Improve the prompt for the weekly-research workflow"
7276

73-
### Debug Workflow
77+
### Debug Workflow
7478
**Load when**: User needs to investigate, audit, debug, or understand a workflow, troubleshoot issues, analyze logs, or fix errors
7579

76-
**Prompt file**: https://github.com/github/gh-aw/blob/v0.72.1/.github/aw/debug-agentic-workflow.md
80+
**Prompt file**: `.github/aw/debug-agentic-workflow.md`
7781

7882
**Use cases**:
7983
- "Why is this workflow failing?"
@@ -83,7 +87,7 @@ When you interact with this agent, it will:
8387
### Upgrade Agentic Workflows
8488
**Load when**: User wants to upgrade workflows to a new gh-aw version or fix deprecations
8589

86-
**Prompt file**: https://github.com/github/gh-aw/blob/v0.72.1/.github/aw/upgrade-agentic-workflows.md
90+
**Prompt file**: `.github/aw/upgrade-agentic-workflows.md`
8791

8892
**Use cases**:
8993
- "Upgrade all workflows to the latest version"
@@ -93,7 +97,7 @@ When you interact with this agent, it will:
9397
### Create a Report-Generating Workflow
9498
**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
9599

96-
**Prompt file**: https://github.com/github/gh-aw/blob/v0.72.1/.github/aw/report.md
100+
**Prompt file**: `.github/aw/report.md`
97101

98102
**Use cases**:
99103
- "Create a weekly CI health report"
@@ -103,7 +107,7 @@ When you interact with this agent, it will:
103107
### Create Shared Agentic Workflow
104108
**Load when**: User wants to create a reusable workflow component or wrap an MCP server
105109

106-
**Prompt file**: https://github.com/github/gh-aw/blob/v0.72.1/.github/aw/create-shared-agentic-workflow.md
110+
**Prompt file**: `.github/aw/create-shared-agentic-workflow.md`
107111

108112
**Use cases**:
109113
- "Create a shared component for Notion integration"
@@ -113,7 +117,7 @@ When you interact with this agent, it will:
113117
### Fix Dependabot PRs
114118
**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`)
115119

116-
**Prompt file**: https://github.com/github/gh-aw/blob/v0.72.1/.github/aw/dependabot.md
120+
**Prompt file**: `.github/aw/dependabot.md`
117121

118122
**Use cases**:
119123
- "Fix the open Dependabot PRs for npm dependencies"
@@ -123,7 +127,7 @@ When you interact with this agent, it will:
123127
### Analyze Test Coverage
124128
**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.
125129

126-
**Prompt file**: https://github.com/github/gh-aw/blob/v0.72.1/.github/aw/test-coverage.md
130+
**Prompt file**: `.github/aw/test-coverage.md`
127131

128132
**Use cases**:
129133
- "Create a workflow that comments coverage on PRs"
@@ -133,20 +137,44 @@ When you interact with this agent, it will:
133137
### CLI Commands Reference
134138
**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.
135139

136-
**Reference file**: https://github.com/github/gh-aw/blob/v0.72.1/.github/aw/cli-commands.md
140+
**Reference file**: `.github/aw/cli-commands.md`
137141

138142
**Use cases**:
139143
- "How do I trigger workflow X on the main branch?"
140144
- "What's the MCP equivalent of `gh aw logs`?"
141145
- "I'm in Copilot Cloud — how do I compile a workflow?"
142146
- "Show me all available gh aw commands"
143147

148+
### Token Consumption Optimization
149+
**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.
150+
151+
**Reference file**: `.github/aw/token-optimization.md`
152+
153+
**Use cases**:
154+
- "How do I reduce the token cost of this workflow?"
155+
- "My workflow is too expensive — how do I optimize it?"
156+
- "How do I compare token usage between two runs?"
157+
- "Should I use gh-proxy or the MCP server?"
158+
- "How do I use sub-agents to reduce costs?"
159+
- "How do I measure the impact of a prompt change?"
160+
161+
### Workflow Pattern Selection
162+
**Load when**: The user asks for architecture, strategy, operating model selection, or pattern recommendations for building agentic workflows.
163+
164+
**Reference file**: `.github/aw/patterns.md`
165+
166+
**Use cases**:
167+
- "Which pattern should I use for multi-repo rollout?"
168+
- "How should I structure this workflow architecture?"
169+
- "What pattern fits slash-command triage?"
170+
- "Should this be DispatchOps or DailyOps?"
171+
144172
## Instructions
145173

146174
When a user interacts with you:
147175

148176
1. **Identify the task type** from the user's request
149-
2. **Load the appropriate prompt** from the GitHub repository URLs listed above
177+
2. **Load the appropriate prompt** from the repository paths listed above
150178
3. **Follow the loaded prompt's instructions** exactly
151179
4. **If uncertain**, ask clarifying questions to determine the right prompt
152180

@@ -185,12 +213,12 @@ gh aw compile --validate
185213

186214
## Important Notes
187215

188-
- Always reference the instructions file at https://github.com/github/gh-aw/blob/v0.72.1/.github/aw/github-agentic-workflows.md for complete documentation
216+
- Always reference the instructions file at `.github/aw/github-agentic-workflows.md` for complete documentation
189217
- Use the MCP tool `agentic-workflows` when running in GitHub Copilot Cloud
190218
- Workflows must be compiled to `.lock.yml` files before running in GitHub Actions
191219
- **Bash tools are enabled by default** - Don't restrict bash commands unnecessarily since workflows are sandboxed by the AWF
192220
- Follow security best practices: minimal permissions, explicit network access, no template injection
193-
- **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://github.com/github/gh-aw/blob/v0.72.1/.github/aw/network.md for the full list of valid ecosystem identifiers and domain patterns.
221+
- **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 `.github/aw/network.md` for the full list of valid ecosystem identifiers and domain patterns.
194222
- **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.
195223
- **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.
196-
- **CLI commands reference**: For a complete guide on all `gh aw` commands and their MCP tool equivalents (for restricted environments), see https://github.com/github/gh-aw/blob/v0.72.1/.github/aw/cli-commands.md
224+
- **CLI commands reference**: For a complete guide on all `gh aw` commands and their MCP tool equivalents (for restricted environments), see `.github/aw/cli-commands.md`

.github/aw/actions-lock.json

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"entries": {
3-
"actions/checkout@v6.0.2": {
3+
"actions/checkout@v6.0.3": {
44
"repo": "actions/checkout",
5-
"version": "v6.0.2",
6-
"sha": "de0fac2e4500dabe0009e67214ff5f5447ce83dd"
5+
"version": "v6.0.3",
6+
"sha": "df4cb1c069e1874edd31b4311f1884172cec0e10"
77
},
88
"actions/download-artifact@v8.0.1": {
99
"repo": "actions/download-artifact",
@@ -30,10 +30,20 @@
3030
"version": "v7.0.1",
3131
"sha": "043fb46d1a93c77aae656e7c1c64a875d1fc6a0a"
3232
},
33-
"github/gh-aw-actions/setup@v0.72.1": {
33+
"github/gh-aw-actions/setup-cli@v0.79.6": {
34+
"repo": "github/gh-aw-actions/setup-cli",
35+
"version": "v0.79.6",
36+
"sha": "5c2fe865bb4dc46e1450f6ee0d0541d759aea73a"
37+
},
38+
"github/gh-aw-actions/setup@v0.79.6": {
3439
"repo": "github/gh-aw-actions/setup",
35-
"version": "v0.72.1",
36-
"sha": "bc56a0cad2f450c562810785ef38649c04db812a"
40+
"version": "v0.79.6",
41+
"sha": "5c2fe865bb4dc46e1450f6ee0d0541d759aea73a"
42+
},
43+
"github/gh-aw/actions/setup-cli@v0.79.6": {
44+
"repo": "github/gh-aw/actions/setup-cli",
45+
"version": "v0.79.6",
46+
"sha": "9c481b8bc46dce8b92fce8ffc51781e5c330d37c"
3747
}
3848
},
3949
"containers": {
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)