Skip to content

Commit e43596e

Browse files
Mossakaclaude
andauthored
Upgrade gh-aw to v0.42.0 (#122)
- Updated github/gh-aw/actions/setup from v0.37.27 to v0.42.0 - Updated agent and prompt files - Updated actions-lock.json Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 9c439a9 commit e43596e

3 files changed

Lines changed: 39 additions & 18 deletions

File tree

.github/agents/agentic-workflows.agent.md

Lines changed: 37 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,17 @@ This is a **dispatcher agent** that routes your request to the appropriate speci
1717
- **Upgrading workflows**: Routes to `upgrade-agentic-workflows` prompt
1818
- **Creating shared components**: Routes to `create-shared-agentic-workflow` prompt
1919

20+
Workflows may optionally include:
21+
22+
- **Project tracking / monitoring** (GitHub Projects updates, status reporting)
23+
- **Orchestration / coordination** (one workflow assigning agents or dispatching and coordinating other workflows)
24+
2025
## Files This Applies To
2126

2227
- Workflow files: `.github/workflows/*.md` and `.github/workflows/**/*.md`
2328
- Workflow lock files: `.github/workflows/*.lock.yml`
2429
- Shared components: `.github/workflows/shared/*.md`
25-
- Configuration: `.github/aw/github-agentic-workflows.md`
30+
- Configuration: https://github.com/github/gh-aw/blob/v0.42.0/.github/aw/github-agentic-workflows.md
2631

2732
## Problems This Solves
2833

@@ -44,7 +49,7 @@ When you interact with this agent, it will:
4449
### Create New Workflow
4550
**Load when**: User wants to create a new workflow from scratch, add automation, or design a workflow that doesn't exist yet
4651

47-
**Prompt file**: `.github/aw/create-agentic-workflow.md`
52+
**Prompt file**: https://github.com/github/gh-aw/blob/v0.42.0/.github/aw/create-agentic-workflow.md
4853

4954
**Use cases**:
5055
- "Create a workflow that triages issues"
@@ -54,7 +59,7 @@ When you interact with this agent, it will:
5459
### Update Existing Workflow
5560
**Load when**: User wants to modify, improve, or refactor an existing workflow
5661

57-
**Prompt file**: `.github/aw/update-agentic-workflow.md`
62+
**Prompt file**: https://github.com/github/gh-aw/blob/v0.42.0/.github/aw/update-agentic-workflow.md
5863

5964
**Use cases**:
6065
- "Add web-fetch tool to the issue-classifier workflow"
@@ -64,7 +69,7 @@ When you interact with this agent, it will:
6469
### Debug Workflow
6570
**Load when**: User needs to investigate, audit, debug, or understand a workflow, troubleshoot issues, analyze logs, or fix errors
6671

67-
**Prompt file**: `.github/aw/debug-agentic-workflow.md`
72+
**Prompt file**: https://github.com/github/gh-aw/blob/v0.42.0/.github/aw/debug-agentic-workflow.md
6873

6974
**Use cases**:
7075
- "Why is this workflow failing?"
@@ -74,7 +79,7 @@ When you interact with this agent, it will:
7479
### Upgrade Agentic Workflows
7580
**Load when**: User wants to upgrade workflows to a new gh-aw version or fix deprecations
7681

77-
**Prompt file**: `.github/aw/upgrade-agentic-workflows.md`
82+
**Prompt file**: https://github.com/github/gh-aw/blob/v0.42.0/.github/aw/upgrade-agentic-workflows.md
7883

7984
**Use cases**:
8085
- "Upgrade all workflows to the latest version"
@@ -84,19 +89,43 @@ When you interact with this agent, it will:
8489
### Create Shared Agentic Workflow
8590
**Load when**: User wants to create a reusable workflow component or wrap an MCP server
8691

87-
**Prompt file**: `.github/aw/create-shared-agentic-workflow.md`
92+
**Prompt file**: https://github.com/github/gh-aw/blob/v0.42.0/.github/aw/create-shared-agentic-workflow.md
8893

8994
**Use cases**:
9095
- "Create a shared component for Notion integration"
9196
- "Wrap the Slack MCP server as a reusable component"
9297
- "Design a shared workflow for database queries"
9398

99+
### Orchestration and Delegation
100+
101+
**Load when**: Creating or updating workflows that coordinate multiple agents or dispatch work to other workflows
102+
103+
**Prompt file**: https://github.com/github/gh-aw/blob/v0.42.0/.github/aw/orchestration.md
104+
105+
**Use cases**:
106+
- Assigning work to AI coding agents
107+
- Dispatching specialized worker workflows
108+
- Using correlation IDs for tracking
109+
- Orchestration design patterns
110+
111+
### GitHub Projects Integration
112+
113+
**Load when**: Creating or updating workflows that manage GitHub Projects v2
114+
115+
**Prompt file**: https://github.com/github/gh-aw/blob/v0.42.0/.github/aw/projects.md
116+
117+
**Use cases**:
118+
- Tracking items and fields with update-project
119+
- Posting periodic run summaries
120+
- Creating new projects
121+
- Projects v2 authentication and configuration
122+
94123
## Instructions
95124

96125
When a user interacts with you:
97126

98127
1. **Identify the task type** from the user's request
99-
2. **Load the appropriate prompt** using `.github/aw/<prompt-name>.md`
128+
2. **Load the appropriate prompt** from the GitHub repository URLs listed above
100129
3. **Follow the loaded prompt's instructions** exactly
101130
4. **If uncertain**, ask clarifying questions to determine the right prompt
102131

@@ -106,9 +135,6 @@ When a user interacts with you:
106135
# Initialize repository for agentic workflows
107136
gh aw init
108137

109-
# Create a new workflow
110-
gh aw new <workflow-name>
111-
112138
# Compile workflows
113139
gh aw compile [workflow-name]
114140

@@ -133,7 +159,7 @@ gh aw compile --validate
133159

134160
## Important Notes
135161

136-
- Always reference the instructions file at `.github/aw/github-agentic-workflows.md` for complete documentation
162+
- Always reference the instructions file at https://github.com/github/gh-aw/blob/v0.42.0/.github/aw/github-agentic-workflows.md for complete documentation
137163
- Use the MCP tool `agentic-workflows` when running in GitHub Copilot Cloud
138164
- Workflows must be compiled to `.lock.yml` files before running in GitHub Actions
139165
- Follow security best practices: minimal permissions, explicit network access, no template injection

.github/aw/actions-lock.json

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,6 @@
1515
"version": "v8",
1616
"sha": "ed597411d8f924073f98dfc5c65a23a2325f34cd"
1717
},
18-
"github/gh-aw/actions/setup@v0.37.27": {
19-
"repo": "github/gh-aw/actions/setup",
20-
"version": "v0.37.27",
21-
"sha": "a5ea9beb1b6775cad8a63b18cf72a6efd6f7c044"
22-
},
2318
"github/gh-aw/actions/setup@v0.42.0": {
2419
"repo": "github/gh-aw/actions/setup",
2520
"version": "v0.42.0",

.github/workflows/copilot-setup-steps.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ jobs:
1313
- name: Checkout repository
1414
uses: actions/checkout@v4
1515
- name: Install gh-aw extension
16-
uses: github/gh-aw/actions/setup-cli@v0.37.20
16+
uses: github/gh-aw/actions/setup-cli@v0.42.0
1717
with:
18-
version: v0.37.20
18+
version: v0.42.0
1919
- name: Verify gh-aw installation
2020
run: gh aw version

0 commit comments

Comments
 (0)