You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/workshop/participant-handout.md
+55-44Lines changed: 55 additions & 44 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2179,74 +2179,85 @@ Now that you have well-structured sub-issues, you can let Copilot implement them
2179
2179
2180
2180
---
2181
2181
2182
-
### Exercise 8: Implementation Workflow
2182
+
### Exercise 8: Explore on Your Own
2183
2183
2184
-
**Use VS Code Copilot Chat with repository agent:**
2184
+
You now have all the skills to create, install, and manage agentic workflows. Use the remaining time to try one (or more!) of the following challenges. Pick whatever interests you — there are no step-by-step instructions this time.
2185
2185
2186
-
1. Type `/agents` and select agentic-workflows agent
2187
-
2. Use this prompt:
2186
+
---
2188
2187
2189
-
```
2190
-
create a workflow that triggers when someone comments "/implement" on an issue. The workflow should:
2188
+
**🔄 Challenge A: Keep Your Workflows Up to Date**
2191
2189
2192
-
1. Read the issue description and any plans
2193
-
2. Create a new branch for the feature
2194
-
3. Implement the first task in the plan
2195
-
4. Run tests to verify it works
2196
-
5. Create a draft pull request
2197
-
6. Comment back on the original issue with progress
2190
+
Your installed workflows have a `source:` reference in their frontmatter that pins them to a specific commit. Open one of your compiled workflows and look for it:
2198
2191
2199
-
This enables iterative development triggered by humans.
This is like a dependency version — it can go stale. Build a workflow (or use the repository agent) that:
2197
+
- Runs weekly
2198
+
- Checks each workflow's `source:` reference against the latest version in the remote repository
2199
+
- Opens a PR to update outdated workflows
2203
2200
2204
-
- Comment `/implement` on the Ruby issue
2205
-
- Watch the workflow create a branch and start implementation
2201
+
Think of it as **Dependabot for your agentic workflows**. Hints: you can use `gh aw add` to re-install a workflow and it will update to the latest version. Diff the before/after to generate a changelog.
2206
2202
2207
2203
---
2208
2204
2209
-
### Exercise 9: Reuse Workflows
2205
+
**📊 Challenge B: Re-run Your Daily Report**
2210
2206
2211
-
```bash
2212
-
# Add a workflow from the community library
2213
-
gh aw add githubnext/agentics/continuous-documentation-updates
2207
+
Remember Exercise 1? Your daily-report workflow has been quietly collecting data. Trigger it again now:
With all the PRs you've merged, issues you've created, and workflows you've added, the report should be **much more interesting** now. It demonstrates how visibility workflows become more valuable over time as repository activity grows.
2223
2213
2224
2214
---
2225
2215
2226
-
### Exercise 10: Workflow Maintenance
2216
+
**📦 Challenge C: Browse and Install Community Workflows**
2227
2217
2228
-
**Use VS Code Copilot Chat with repository agent:**
2218
+
Explore the community workflow libraries and install something that catches your eye:
2229
2219
2230
-
1. Type `/agents` and select agentic-workflows agent
0 commit comments