Skip to content

Commit 11d2432

Browse files
ShazwazzaCopilot
andcommitted
Upgrade gh-aw to v0.87.2 and drop the copilot CLI toolcache workarounds
Both bugs this repo was working around are fixed upstream in v0.87.1, so the local shims added in #571 are no longer needed. github/gh-aw#53481 (toolcache ENOENT) - install_copilot_cli.sh now always materializes ${INSTALL_DIR}/copilot with a wrapper instead of returning early when GITHUB_PATH is set, and hard-fails if the path is still missing, so the failure can never again be a silent ENOENT. Verified present in the pinned action SHA b304200a (gh-aw-actions v0.87.2). github/gh-aw#52777 (unpinned dispatcher action) - the centralized slash-command dispatcher now wires a real SHAResolver instead of nil, so agentic_commands.yml pins the setup action by SHA like every other generated workflow. Removed from all three workflows: - the `pre-agent-steps` wrapper (agent job) - the `safe-outputs.threat-detection.steps` shim (detection job) Also in this upgrade: - v0.87.x enables strict mode by default ("workflows default to strict mode unless frontmatter sets strict: false"). That surfaced two schema changes, both applied via `gh aw fix` rather than by hand: * daily-issue-triage needs an explicit `tools.bash: false` + `cli-proxy: false`, because upstream agentics sets `github.min-integrity: none` and strict mode requires shell access to be intentional. Triage needs no shell, so both are disabled. * `expires: 60` -> `expires: 60d` (integer to day-string migration). - The dispatcher skill/agent moved to the v0.87 layout: .github/agents/agentic-workflows.agent.md is now .github/agents/agentic-workflows.md, plus a new .github/skills/agentic-workflows/SKILL.md. .gitattributes: extend the LF rules from #558 to the generated files they missed - agentic_commands.yml, agentics-maintenance.yml, copilot-setup-steps.yml, .github/agents/** and .github/skills/**. Those were still being checked out as CRLF, which is exactly what makes `gh aw update` conflict on whole files. Listed individually rather than via *.yml so the hand-written CI workflows keep the repo default. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: addb9717-56f3-4aa7-a1ed-9d4dd7b43f83
1 parent b2da29c commit 11d2432

12 files changed

Lines changed: 1465 additions & 1272 deletions

.gitattributes

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,11 @@
88
.github/workflows/*.lock.yml text eol=lf
99
.github/workflows/aw.json text eol=lf
1010
.github/aw/** text eol=lf
11+
12+
# The remaining gh-aw generated files. These are listed individually rather than
13+
# via *.yml so the hand-written CI workflows keep the repo default.
14+
.github/workflows/agentic_commands.yml text eol=lf
15+
.github/workflows/agentics-maintenance.yml text eol=lf
16+
.github/workflows/copilot-setup-steps.yml text eol=lf
17+
.github/agents/** text eol=lf
18+
.github/skills/** text eol=lf
Lines changed: 30 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,27 @@
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

67
# GitHub Agentic Workflows Agent
78

89
This agent helps you work with **GitHub Agentic Workflows (gh-aw)**, a CLI extension for creating AI-powered workflows in natural language using markdown files.
910

11+
## Repository Instructions Overlay
12+
13+
If `.github/aw/instructions.md` exists, load it with:
14+
@.github/aw/instructions.md
15+
16+
Precedence: repository overlay instructions override defaults in this agent when they conflict.
17+
1018
## What This Agent Does
1119

1220
This is a **dispatcher agent** that routes your request to the appropriate specialized prompt based on your task:
1321

1422
- **Creating new workflows**: Routes to `create` prompt
1523
- **Updating existing workflows**: Routes to `update` prompt
16-
- **Debugging workflows**: Routes to `debug` prompt
24+
- **Debugging workflows**: Routes to `debug` prompt
1725
- **Upgrading workflows**: Routes to `upgrade-agentic-workflows` prompt
1826
- **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
1927
- **Creating shared components**: Routes to `create-shared-agentic-workflow` prompt
@@ -24,9 +32,6 @@ This is a **dispatcher agent** that routes your request to the appropriate speci
2432
- **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
2533
- **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
2634

27-
> [!IMPORTANT]
28-
> For architecture/pattern-selection requests, load `https://github.com/github/gh-aw/blob/v0.76.1/.github/aw/patterns.md` first.
29-
3035
Workflows may optionally include:
3136

3237
- **Project tracking / monitoring** (GitHub Projects updates, status reporting)
@@ -37,7 +42,7 @@ Workflows may optionally include:
3742
- Workflow files: `.github/workflows/*.md` and `.github/workflows/**/*.md`
3843
- Workflow lock files: `.github/workflows/*.lock.yml`
3944
- Shared components: `.github/workflows/shared/*.md`
40-
- Configuration: https://github.com/github/gh-aw/blob/v0.76.1/.github/aw/github-agentic-workflows.md
45+
- Configuration: `https://raw.githubusercontent.com/github/gh-aw/main/.github/aw/github-agentic-workflows.md`
4146

4247
## Problems This Solves
4348

@@ -56,30 +61,32 @@ When you interact with this agent, it will:
5661

5762
## Available Prompts
5863

64+
> **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.
65+
5966
### Create New Workflow
6067
**Load when**: User wants to create a new workflow from scratch, add automation, or design a workflow that doesn't exist yet
6168

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

6471
**Use cases**:
6572
- "Create a workflow that triages issues"
6673
- "I need a workflow to label pull requests"
6774
- "Design a weekly research automation"
6875

69-
### Update Existing Workflow
76+
### Update Existing Workflow
7077
**Load when**: User wants to modify, improve, or refactor an existing workflow
7178

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

7481
**Use cases**:
7582
- "Add web-fetch tool to the issue-classifier workflow"
7683
- "Update the PR reviewer to use discussions instead of issues"
7784
- "Improve the prompt for the weekly-research workflow"
7885

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

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

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

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

94101
**Use cases**:
95102
- "Upgrade all workflows to the latest version"
@@ -99,7 +106,7 @@ When you interact with this agent, it will:
99106
### Create a Report-Generating Workflow
100107
**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
101108

102-
**Prompt file**: https://github.com/github/gh-aw/blob/v0.76.1/.github/aw/report.md
109+
**Prompt file**: `https://raw.githubusercontent.com/github/gh-aw/main/.github/aw/report.md`
103110

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

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

114121
**Use cases**:
115122
- "Create a shared component for Notion integration"
@@ -119,7 +126,7 @@ When you interact with this agent, it will:
119126
### Fix Dependabot PRs
120127
**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`)
121128

122-
**Prompt file**: https://github.com/github/gh-aw/blob/v0.76.1/.github/aw/dependabot.md
129+
**Prompt file**: `https://raw.githubusercontent.com/github/gh-aw/main/.github/aw/dependabot.md`
123130

124131
**Use cases**:
125132
- "Fix the open Dependabot PRs for npm dependencies"
@@ -129,27 +136,17 @@ When you interact with this agent, it will:
129136
### Analyze Test Coverage
130137
**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.
131138

132-
**Prompt file**: https://github.com/github/gh-aw/blob/v0.76.1/.github/aw/test-coverage.md
139+
**Prompt file**: `https://raw.githubusercontent.com/github/gh-aw/main/.github/aw/test-coverage.md`
133140

134141
**Use cases**:
135142
- "Create a workflow that comments coverage on PRs"
136143
- "Analyze coverage trends over time"
137144
- "Add a coverage gate that blocks PRs below a threshold"
138145

139-
### Render ASCII Charts in Markdown
140-
**Load when**: The workflow needs in-markdown charts (sparklines, bars, table+trend views) that must align cleanly and render reliably across GitHub surfaces, including mobile.
141-
142-
**Reference file**: https://github.com/github/gh-aw/blob/v0.76.1/.github/aw/asciicharts.md
143-
144-
**Use cases**:
145-
- "Show a compact trend chart in an issue comment"
146-
- "Render a dashboard table with sparkline trends"
147-
- "Generate aligned ASCII bars for service metrics"
148-
149146
### CLI Commands Reference
150147
**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.
151148

152-
**Reference file**: https://github.com/github/gh-aw/blob/v0.76.1/.github/aw/cli-commands.md
149+
**Reference file**: `https://raw.githubusercontent.com/github/gh-aw/main/.github/aw/cli-commands.md`
153150

154151
**Use cases**:
155152
- "How do I trigger workflow X on the main branch?"
@@ -160,7 +157,7 @@ When you interact with this agent, it will:
160157
### Token Consumption Optimization
161158
**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.
162159

163-
**Reference file**: https://github.com/github/gh-aw/blob/v0.76.1/.github/aw/token-optimization.md
160+
**Reference file**: `https://raw.githubusercontent.com/github/gh-aw/main/.github/aw/token-optimization.md`
164161

165162
**Use cases**:
166163
- "How do I reduce the token cost of this workflow?"
@@ -173,7 +170,7 @@ When you interact with this agent, it will:
173170
### Workflow Pattern Selection
174171
**Load when**: The user asks for architecture, strategy, operating model selection, or pattern recommendations for building agentic workflows.
175172

176-
**Reference file**: https://github.com/github/gh-aw/blob/v0.76.1/.github/aw/patterns.md
173+
**Reference file**: `https://raw.githubusercontent.com/github/gh-aw/main/.github/aw/patterns.md`
177174

178175
**Use cases**:
179176
- "Which pattern should I use for multi-repo rollout?"
@@ -186,7 +183,7 @@ When you interact with this agent, it will:
186183
When a user interacts with you:
187184

188185
1. **Identify the task type** from the user's request
189-
2. **Load the appropriate prompt** from the GitHub repository URLs listed above
186+
2. **Load the appropriate prompt** from the URLs listed above
190187
3. **Follow the loaded prompt's instructions** exactly
191188
4. **If uncertain**, ask clarifying questions to determine the right prompt
192189

@@ -225,12 +222,12 @@ gh aw compile --validate
225222

226223
## Important Notes
227224

228-
- Always reference the instructions file at https://github.com/github/gh-aw/blob/v0.76.1/.github/aw/github-agentic-workflows.md for complete documentation
225+
- Always reference the instructions file at `https://raw.githubusercontent.com/github/gh-aw/main/.github/aw/github-agentic-workflows.md` for complete documentation
229226
- Use the MCP tool `agentic-workflows` when running in GitHub Copilot Cloud
230227
- Workflows must be compiled to `.lock.yml` files before running in GitHub Actions
231228
- **Bash tools are enabled by default** - Don't restrict bash commands unnecessarily since workflows are sandboxed by the AWF
232229
- Follow security best practices: minimal permissions, explicit network access, no template injection
233-
- **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.76.1/.github/aw/network.md for the full list of valid ecosystem identifiers and domain patterns.
230+
- **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.
234231
- **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.
235232
- **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.
236-
- **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.76.1/.github/aw/cli-commands.md
233+
- **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: 8 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55
"version": "v9.0.0",
66
"sha": "3a2844b7e9c422d3c10d287c895573f7108da1b3"
77
},
8-
"github/gh-aw-actions/setup-cli@v0.85.4": {
8+
"github/gh-aw-actions/setup-cli@v0.87.2": {
99
"repo": "github/gh-aw-actions/setup-cli",
10-
"version": "v0.85.4",
11-
"sha": "2709137ea6c5b0e19aa621454dc643ea8dc526b1"
10+
"version": "v0.87.2",
11+
"sha": "b304200a0ef4b3998673bfc7945acb08ab8c88b7"
1212
},
13-
"github/gh-aw-actions/setup@v0.85.4": {
13+
"github/gh-aw-actions/setup@v0.87.2": {
1414
"repo": "github/gh-aw-actions/setup",
15-
"version": "v0.85.4",
16-
"sha": "2709137ea6c5b0e19aa621454dc643ea8dc526b1"
15+
"version": "v0.87.2",
16+
"sha": "b304200a0ef4b3998673bfc7945acb08ab8c88b7"
1717
}
1818
},
1919
"containers": {
@@ -47,25 +47,15 @@
4747
"digest": "sha256:deb1d4e19de62d51cee0508057a596a19315c3423ada4d675cad136dc8037c96",
4848
"pinned_image": "ghcr.io/github/gh-aw-firewall/squid:0.27.7@sha256:deb1d4e19de62d51cee0508057a596a19315c3423ada4d675cad136dc8037c96"
4949
},
50-
"ghcr.io/github/gh-aw-mcpg:v0.3.27": {
51-
"image": "ghcr.io/github/gh-aw-mcpg:v0.3.27",
52-
"digest": "sha256:fe984bddde4ec05d756d9043edb0a32912e6b7b72f6a121b1082f29221421cc7",
53-
"pinned_image": "ghcr.io/github/gh-aw-mcpg:v0.3.27@sha256:fe984bddde4ec05d756d9043edb0a32912e6b7b72f6a121b1082f29221421cc7"
54-
},
5550
"ghcr.io/github/gh-aw-mcpg:v0.4.8": {
5651
"image": "ghcr.io/github/gh-aw-mcpg:v0.4.8",
5752
"digest": "sha256:38bbea36cdb46a3c9d04d1db05e672966f5239b431a2022eb35881688e5721d8",
5853
"pinned_image": "ghcr.io/github/gh-aw-mcpg:v0.4.8@sha256:38bbea36cdb46a3c9d04d1db05e672966f5239b431a2022eb35881688e5721d8"
5954
},
6055
"ghcr.io/github/gh-aw-node": {
6156
"image": "ghcr.io/github/gh-aw-node",
62-
"digest": "sha256:33e1ec1d967ac1f28c2cedc24ce103dea3226840626de345d3fe579e96cf5c7d",
63-
"pinned_image": "ghcr.io/github/gh-aw-node@sha256:33e1ec1d967ac1f28c2cedc24ce103dea3226840626de345d3fe579e96cf5c7d"
64-
},
65-
"ghcr.io/github/github-mcp-server:v1.4.0": {
66-
"image": "ghcr.io/github/github-mcp-server:v1.4.0",
67-
"digest": "sha256:2afb26356481d1a350e14544a6e160f7f7ec1561a1ea309b823665abf0309036",
68-
"pinned_image": "ghcr.io/github/github-mcp-server:v1.4.0@sha256:2afb26356481d1a350e14544a6e160f7f7ec1561a1ea309b823665abf0309036"
57+
"digest": "sha256:bac2192f6374d6262116399b34fc5e143d576f82719e90a18261cae7480f4d4e",
58+
"pinned_image": "ghcr.io/github/gh-aw-node@sha256:bac2192f6374d6262116399b34fc5e143d576f82719e90a18261cae7480f4d4e"
6959
},
7060
"ghcr.io/github/github-mcp-server:v1.8.0": {
7161
"image": "ghcr.io/github/github-mcp-server:v1.8.0",
Lines changed: 107 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,107 @@
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+
Repository overlay (optional):
13+
- If `.github/aw/instructions.md` exists, load it with `@.github/aw/instructions.md` after loading the matched prompt/skill.
14+
- Precedence: repository overlay instructions override upstream defaults when they conflict.
15+
16+
Read only the files you need:
17+
Load these files from `github/gh-aw` (they are not available locally).
18+
- `.github/aw/action-container-substitutions.md`
19+
- `.github/aw/agent-runtime-instructions.md`
20+
- `.github/aw/agentic-chat.md`
21+
- `.github/aw/agentic-workflows-mcp.md`
22+
- `.github/aw/asciicharts.md`
23+
- `.github/aw/campaign.md`
24+
- `.github/aw/charts-trending.md`
25+
- `.github/aw/charts.md`
26+
- `.github/aw/cli-commands.md`
27+
- `.github/aw/configure-agentic-engine.md`
28+
- `.github/aw/context.md`
29+
- `.github/aw/create-agentic-workflow-trigger-details.md`
30+
- `.github/aw/create-agentic-workflow.md`
31+
- `.github/aw/create-shared-agentic-workflow.md`
32+
- `.github/aw/debug-agentic-workflow.md`
33+
- `.github/aw/dependabot.md`
34+
- `.github/aw/deployment-status.md`
35+
- `.github/aw/designer-mappings.md`
36+
- `.github/aw/designer.md`
37+
- `.github/aw/enclaves.md`
38+
- `.github/aw/evals.md`
39+
- `.github/aw/experiments.md`
40+
- `.github/aw/github-agentic-workflows.md`
41+
- `.github/aw/github-mcp-server-pagination.md`
42+
- `.github/aw/github-mcp-server-tools.md`
43+
- `.github/aw/github-mcp-server.md`
44+
- `.github/aw/instructions.md`
45+
- `.github/aw/jobs.md`
46+
- `.github/aw/linter-workflows.md`
47+
- `.github/aw/llms.md`
48+
- `.github/aw/loop.md`
49+
- `.github/aw/lsp.md`
50+
- `.github/aw/maintainer.md`
51+
- `.github/aw/mcp-clis.md`
52+
- `.github/aw/memory-stateful-patterns.md`
53+
- `.github/aw/memory.md`
54+
- `.github/aw/messages.md`
55+
- `.github/aw/multi-agent-research.md`
56+
- `.github/aw/network.md`
57+
- `.github/aw/optimize-agentic-workflow.md`
58+
- `.github/aw/patterns.md`
59+
- `.github/aw/pr-reviewer.md`
60+
- `.github/aw/release-workflow.md`
61+
- `.github/aw/report.md`
62+
- `.github/aw/reuse.md`
63+
- `.github/aw/safe-outputs-automation.md`
64+
- `.github/aw/safe-outputs-content.md`
65+
- `.github/aw/safe-outputs-management.md`
66+
- `.github/aw/safe-outputs-runtime.md`
67+
- `.github/aw/safe-outputs.md`
68+
- `.github/aw/serena-tool.md`
69+
- `.github/aw/shared-safe-jobs.md`
70+
- `.github/aw/skills.md`
71+
- `.github/aw/subagents.md`
72+
- `.github/aw/syntax-agentic.md`
73+
- `.github/aw/syntax-core.md`
74+
- `.github/aw/syntax-engine.md`
75+
- `.github/aw/syntax-tools-imports.md`
76+
- `.github/aw/syntax.md`
77+
- `.github/aw/test-coverage.md`
78+
- `.github/aw/test-expression.md`
79+
- `.github/aw/token-optimization-caching-budgets.md`
80+
- `.github/aw/token-optimization-observability.md`
81+
- `.github/aw/token-optimization.md`
82+
- `.github/aw/triggers.md`
83+
- `.github/aw/update-agentic-workflow.md`
84+
- `.github/aw/upgrade-agentic-workflows.md`
85+
- `.github/aw/visual-regression.md`
86+
- `.github/aw/workflow-constraints.md`
87+
- `.github/aw/workflow-editing.md`
88+
- `.github/aw/workflow-patterns.md`
89+
90+
After loading the matching workflow prompt or skill, follow it directly:
91+
- Design workflows from scratch via interview: `.github/aw/designer.md`
92+
- Create new workflows: `.github/aw/create-agentic-workflow.md`
93+
- Configure or add declarative engines: `.github/aw/configure-agentic-engine.md`
94+
- Update existing workflows: `.github/aw/update-agentic-workflow.md`
95+
- Debug, audit, or investigate workflows: `.github/aw/debug-agentic-workflow.md`
96+
- Upgrade workflows and fix deprecations: `.github/aw/upgrade-agentic-workflows.md`
97+
- Create shared components or MCP wrappers: `.github/aw/create-shared-agentic-workflow.md`
98+
- Create report-generating workflows: `.github/aw/report.md`
99+
- Fix Dependabot manifest PRs: `.github/aw/dependabot.md`
100+
- Analyze coverage workflows: `.github/aw/test-coverage.md`
101+
- Render compact markdown charts: `.github/aw/asciicharts.md`
102+
- Map CLI commands to MCP usage: `.github/aw/cli-commands.md`
103+
- Choose workflow architecture and patterns: `.github/aw/patterns.md`
104+
- Optimize token usage and cost: `.github/aw/token-optimization.md`
105+
- Design long-running multi-agent research workflows: `.github/aw/multi-agent-research.md`
106+
107+
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)