Skip to content

Commit ebc84e3

Browse files
lukewarCopilotSteveSandersonMS
authored
Enable built-in issue intent safe outputs on issue-triage (#1880)
* Enable issue intents on issue-triage workflow Recompile issue-triage.lock.yml with gh-aw v0.82.1 to wire GH_AW_RUNTIME_FEATURES=${{ vars.GH_AW_RUNTIME_FEATURES }}, enabling native issue intents (rationale/confidence) for the workflow's add-labels safe output. No behavior change: the trigger, permissions, prompt, and safe outputs are unchanged, and the source .md is untouched. The actions-lock.json pin bump (github/gh-aw-actions/setup v0.82.1) is required by the recompiled lock. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> * Bump verify-compiled gh-aw pin to v0.82.1 and recompile locks The verify-compiled workflow pinned gh-aw v0.77.5 while issue-triage.lock.yml was compiled with v0.82.1, so CI recompiled at v0.77.5 and the byte diff failed the check. Bump the pin to v0.82.1 to match, and recompile all lock files at v0.82.1 so they are consistent with the pinned compiler. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> * chore(aw): upgrade aw workflows with latest pre-release Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> * fix(ci): align verify workflow gh-aw toolchain Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> * Add generated agentics-maintenance workflow (gh-aw v0.82.10) `gh aw compile` with the v0.82.10 toolchain introduced by this PR emits `.github/workflows/agentics-maintenance.yml`. Commit the generated file so it is tracked alongside the recompiled locks. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 004ba78d-3cf4-41ab-8647-180e683460f0 * Enable org billing (copilot-requests) for agentic workflows Add `permissions.copilot-requests: write` to all 11 agentic (gh-aw) workflows so their Copilot usage is billed to the org, and recompile the lock files. The compiled workflows now authenticate the Copilot CLI with the GitHub Actions token and set S2STOKENS=true. Authored by adding `features.copilot-requests: true`, migrating it with `gh aw fix --write` (the deprecated flag maps to the permission), and recompiling with gh-aw v0.82.10. Rebased onto #1880 (issue-intents), which bumps the pinned gh-aw CLI to v0.82.10. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 004ba78d-3cf4-41ab-8647-180e683460f0 --------- Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Co-authored-by: Steve Sanderson <SteveSandersonMS@users.noreply.github.com>
1 parent 526c66f commit ebc84e3

28 files changed

Lines changed: 5161 additions & 2551 deletions
Lines changed: 71 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,36 @@
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
2028
- **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
2129
- **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
30+
- **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
31+
- **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
32+
- **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
33+
- **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
2234

2335
Workflows may optionally include:
2436

@@ -30,7 +42,7 @@ Workflows may optionally include:
3042
- Workflow files: `.github/workflows/*.md` and `.github/workflows/**/*.md`
3143
- Workflow lock files: `.github/workflows/*.lock.yml`
3244
- Shared components: `.github/workflows/shared/*.md`
33-
- Configuration: https://github.com/github/gh-aw/blob/v0.64.2/.github/aw/github-agentic-workflows.md
45+
- Configuration: `https://raw.githubusercontent.com/github/gh-aw/main/.github/aw/github-agentic-workflows.md`
3446

3547
## Problems This Solves
3648

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

5062
## Available Prompts
5163

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

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

5771
**Use cases**:
5872
- "Create a workflow that triages issues"
5973
- "I need a workflow to label pull requests"
6074
- "Design a weekly research automation"
6175

62-
### Update Existing Workflow
76+
### Update Existing Workflow
6377
**Load when**: User wants to modify, improve, or refactor an existing workflow
6478

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

6781
**Use cases**:
6882
- "Add web-fetch tool to the issue-classifier workflow"
6983
- "Update the PR reviewer to use discussions instead of issues"
7084
- "Improve the prompt for the weekly-research workflow"
7185

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

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

7791
**Use cases**:
7892
- "Why is this workflow failing?"
@@ -82,7 +96,7 @@ When you interact with this agent, it will:
8296
### Upgrade Agentic Workflows
8397
**Load when**: User wants to upgrade workflows to a new gh-aw version or fix deprecations
8498

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

87101
**Use cases**:
88102
- "Upgrade all workflows to the latest version"
@@ -92,7 +106,7 @@ When you interact with this agent, it will:
92106
### Create a Report-Generating Workflow
93107
**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
94108

95-
**Prompt file**: https://github.com/github/gh-aw/blob/v0.64.2/.github/aw/report.md
109+
**Prompt file**: `https://raw.githubusercontent.com/github/gh-aw/main/.github/aw/report.md`
96110

97111
**Use cases**:
98112
- "Create a weekly CI health report"
@@ -102,7 +116,7 @@ When you interact with this agent, it will:
102116
### Create Shared Agentic Workflow
103117
**Load when**: User wants to create a reusable workflow component or wrap an MCP server
104118

105-
**Prompt file**: https://github.com/github/gh-aw/blob/v0.64.2/.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`
106120

107121
**Use cases**:
108122
- "Create a shared component for Notion integration"
@@ -112,7 +126,7 @@ When you interact with this agent, it will:
112126
### Fix Dependabot PRs
113127
**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`)
114128

115-
**Prompt file**: https://github.com/github/gh-aw/blob/v0.64.2/.github/aw/dependabot.md
129+
**Prompt file**: `https://raw.githubusercontent.com/github/gh-aw/main/.github/aw/dependabot.md`
116130

117131
**Use cases**:
118132
- "Fix the open Dependabot PRs for npm dependencies"
@@ -122,19 +136,54 @@ When you interact with this agent, it will:
122136
### Analyze Test Coverage
123137
**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.
124138

125-
**Prompt file**: https://github.com/github/gh-aw/blob/v0.64.2/.github/aw/test-coverage.md
139+
**Prompt file**: `https://raw.githubusercontent.com/github/gh-aw/main/.github/aw/test-coverage.md`
126140

127141
**Use cases**:
128142
- "Create a workflow that comments coverage on PRs"
129143
- "Analyze coverage trends over time"
130144
- "Add a coverage gate that blocks PRs below a threshold"
131145

146+
### CLI Commands Reference
147+
**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.
148+
149+
**Reference file**: `https://raw.githubusercontent.com/github/gh-aw/main/.github/aw/cli-commands.md`
150+
151+
**Use cases**:
152+
- "How do I trigger workflow X on the main branch?"
153+
- "What's the MCP equivalent of `gh aw logs`?"
154+
- "I'm in Copilot Cloud — how do I compile a workflow?"
155+
- "Show me all available gh aw commands"
156+
157+
### Token Consumption Optimization
158+
**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.
159+
160+
**Reference file**: `https://raw.githubusercontent.com/github/gh-aw/main/.github/aw/token-optimization.md`
161+
162+
**Use cases**:
163+
- "How do I reduce the token cost of this workflow?"
164+
- "My workflow is too expensive — how do I optimize it?"
165+
- "How do I compare token usage between two runs?"
166+
- "Should I use gh-proxy or the MCP server?"
167+
- "How do I use sub-agents to reduce costs?"
168+
- "How do I measure the impact of a prompt change?"
169+
170+
### Workflow Pattern Selection
171+
**Load when**: The user asks for architecture, strategy, operating model selection, or pattern recommendations for building agentic workflows.
172+
173+
**Reference file**: `https://raw.githubusercontent.com/github/gh-aw/main/.github/aw/patterns.md`
174+
175+
**Use cases**:
176+
- "Which pattern should I use for multi-repo rollout?"
177+
- "How should I structure this workflow architecture?"
178+
- "What pattern fits slash-command triage?"
179+
- "Should this be DispatchOps or DailyOps?"
180+
132181
## Instructions
133182

134183
When a user interacts with you:
135184

136185
1. **Identify the task type** from the user's request
137-
2. **Load the appropriate prompt** from the GitHub repository URLs listed above
186+
2. **Load the appropriate prompt** from the URLs listed above
138187
3. **Follow the loaded prompt's instructions** exactly
139188
4. **If uncertain**, ask clarifying questions to determine the right prompt
140189

@@ -147,6 +196,10 @@ gh aw init
147196
# Generate the lock file for a workflow
148197
gh aw compile [workflow-name]
149198

199+
# Trigger a workflow on demand (preferred over gh workflow run)
200+
gh aw run <workflow-name> # interactive input collection
201+
gh aw run <workflow-name> --ref main # run on a specific branch
202+
150203
# Debug workflow runs
151204
gh aw logs [workflow-name]
152205
gh aw audit <run-id>
@@ -169,10 +222,12 @@ gh aw compile --validate
169222

170223
## Important Notes
171224

172-
- Always reference the instructions file at https://github.com/github/gh-aw/blob/v0.64.2/.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
173226
- Use the MCP tool `agentic-workflows` when running in GitHub Copilot Cloud
174227
- Workflows must be compiled to `.lock.yml` files before running in GitHub Actions
175228
- **Bash tools are enabled by default** - Don't restrict bash commands unnecessarily since workflows are sandboxed by the AWF
176229
- Follow security best practices: minimal permissions, explicit network access, no template injection
177-
- **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.64.2/.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.
178231
- **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.
232+
- **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.
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: 20 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,34 @@
11
{
22
"entries": {
3-
"actions/checkout@v6.0.2": {
3+
"actions/checkout@v7": {
44
"repo": "actions/checkout",
5-
"version": "v6.0.2",
6-
"sha": "de0fac2e4500dabe0009e67214ff5f5447ce83dd"
5+
"version": "v7",
6+
"sha": "9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0"
77
},
8-
"actions/download-artifact@v8.0.0": {
8+
"actions/download-artifact@v8.0.1": {
99
"repo": "actions/download-artifact",
10-
"version": "v8.0.0",
11-
"sha": "70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3"
10+
"version": "v8.0.1",
11+
"sha": "3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c"
1212
},
13-
"actions/github-script@v8": {
13+
"actions/github-script@v9": {
1414
"repo": "actions/github-script",
15-
"version": "v8",
16-
"sha": "ed597411d8f924073f98dfc5c65a23a2325f34cd"
15+
"version": "v9",
16+
"sha": "373c709c69115d41ff229c7e5df9f8788daa9553"
1717
},
18-
"actions/github-script@v9.0.0": {
19-
"repo": "actions/github-script",
20-
"version": "v9.0.0",
21-
"sha": "3a2844b7e9c422d3c10d287c895573f7108da1b3"
22-
},
23-
"actions/upload-artifact@v7.0.0": {
18+
"actions/upload-artifact@v7.0.1": {
2419
"repo": "actions/upload-artifact",
25-
"version": "v7.0.0",
26-
"sha": "bbbca2ddaa5d8feaa63e36b76fdaad77386f024f"
20+
"version": "v7.0.1",
21+
"sha": "043fb46d1a93c77aae656e7c1c64a875d1fc6a0a"
2722
},
28-
"github/gh-aw-actions/setup@v0.77.5": {
29-
"repo": "github/gh-aw-actions/setup",
30-
"version": "v0.77.5",
31-
"sha": "3ea13c02d765410340d533515cb31a7eef2baaf0"
23+
"github/gh-aw-actions/setup-cli@v0.82.10": {
24+
"repo": "github/gh-aw-actions/setup-cli",
25+
"version": "v0.82.10",
26+
"sha": "05205436a78512d71a2d842e46586ed05f4fa058"
3227
},
33-
"github/gh-aw/actions/setup@v0.52.1": {
34-
"repo": "github/gh-aw/actions/setup",
35-
"version": "v0.52.1",
36-
"sha": "a86e657586e4ac5f549a790628971ec02f6a4a8f"
28+
"github/gh-aw-actions/setup@v0.82.10": {
29+
"repo": "github/gh-aw-actions/setup",
30+
"version": "v0.82.10",
31+
"sha": "05205436a78512d71a2d842e46586ed05f4fa058"
3732
}
3833
}
3934
}
Lines changed: 94 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
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/agentic-chat.md`
19+
- `.github/aw/agentic-workflows-mcp.md`
20+
- `.github/aw/asciicharts.md`
21+
- `.github/aw/campaign.md`
22+
- `.github/aw/charts-trending.md`
23+
- `.github/aw/charts.md`
24+
- `.github/aw/cli-commands.md`
25+
- `.github/aw/configure-agentic-engine.md`
26+
- `.github/aw/context.md`
27+
- `.github/aw/create-agentic-workflow-trigger-details.md`
28+
- `.github/aw/create-agentic-workflow.md`
29+
- `.github/aw/create-shared-agentic-workflow.md`
30+
- `.github/aw/debug-agentic-workflow.md`
31+
- `.github/aw/dependabot.md`
32+
- `.github/aw/deployment-status.md`
33+
- `.github/aw/designer.md`
34+
- `.github/aw/evals.md`
35+
- `.github/aw/experiments.md`
36+
- `.github/aw/github-agentic-workflows.md`
37+
- `.github/aw/github-mcp-server.md`
38+
- `.github/aw/instructions.md`
39+
- `.github/aw/llms.md`
40+
- `.github/aw/loop.md`
41+
- `.github/aw/lsp.md`
42+
- `.github/aw/mcp-clis.md`
43+
- `.github/aw/memory-stateful-patterns.md`
44+
- `.github/aw/memory.md`
45+
- `.github/aw/messages.md`
46+
- `.github/aw/multi-agent-research.md`
47+
- `.github/aw/network.md`
48+
- `.github/aw/optimize-agentic-workflow.md`
49+
- `.github/aw/patterns.md`
50+
- `.github/aw/pr-reviewer.md`
51+
- `.github/aw/report.md`
52+
- `.github/aw/reuse.md`
53+
- `.github/aw/safe-outputs-automation.md`
54+
- `.github/aw/safe-outputs-content.md`
55+
- `.github/aw/safe-outputs-management.md`
56+
- `.github/aw/safe-outputs-runtime.md`
57+
- `.github/aw/safe-outputs.md`
58+
- `.github/aw/serena-tool.md`
59+
- `.github/aw/shared-safe-jobs.md`
60+
- `.github/aw/skills.md`
61+
- `.github/aw/subagents.md`
62+
- `.github/aw/syntax-agentic.md`
63+
- `.github/aw/syntax-core.md`
64+
- `.github/aw/syntax-tools-imports.md`
65+
- `.github/aw/syntax.md`
66+
- `.github/aw/test-coverage.md`
67+
- `.github/aw/test-expression.md`
68+
- `.github/aw/token-optimization.md`
69+
- `.github/aw/triggers.md`
70+
- `.github/aw/update-agentic-workflow.md`
71+
- `.github/aw/upgrade-agentic-workflows.md`
72+
- `.github/aw/visual-regression.md`
73+
- `.github/aw/workflow-constraints.md`
74+
- `.github/aw/workflow-editing.md`
75+
- `.github/aw/workflow-patterns.md`
76+
77+
After loading the matching workflow prompt or skill, follow it directly:
78+
- Design workflows from scratch via interview: `.github/aw/designer.md`
79+
- Create new workflows: `.github/aw/create-agentic-workflow.md`
80+
- Configure or add declarative engines: `.github/aw/configure-agentic-engine.md`
81+
- Update existing workflows: `.github/aw/update-agentic-workflow.md`
82+
- Debug, audit, or investigate workflows: `.github/aw/debug-agentic-workflow.md`
83+
- Upgrade workflows and fix deprecations: `.github/aw/upgrade-agentic-workflows.md`
84+
- Create shared components or MCP wrappers: `.github/aw/create-shared-agentic-workflow.md`
85+
- Create report-generating workflows: `.github/aw/report.md`
86+
- Fix Dependabot manifest PRs: `.github/aw/dependabot.md`
87+
- Analyze coverage workflows: `.github/aw/test-coverage.md`
88+
- Render compact markdown charts: `.github/aw/asciicharts.md`
89+
- Map CLI commands to MCP usage: `.github/aw/cli-commands.md`
90+
- Choose workflow architecture and patterns: `.github/aw/patterns.md`
91+
- Optimize token usage and cost: `.github/aw/token-optimization.md`
92+
- Design long-running multi-agent research workflows: `.github/aw/multi-agent-research.md`
93+
94+
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)