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
This repository is a resource for the workshop at <https://luma.com/law93emw>.
3
+
## Agenda
4
4
5
-
## What to try
6
-
7
-
Choose one of these tools and try it in your own repository during the workshop.
8
-
Each tool includes a one-line prompt you can paste into Copilot or the coding
9
-
agent of your choice.
5
+
- Introduce Actions and Agentic Workflows
6
+
- Show Autoloop, Crane and Goal
7
+
- Get hands-one with an agentic workflow in your own repo
10
8
11
9
### GitHub Agentic Workflows
12
10
13
-
[GitHub Agentic Workflows](https://github.com/github/gh-aw) lets you write
14
-
agentic workflows in natural-language Markdown and run them safely in GitHub
15
-
Actions.
11
+
[GitHub Agentic Workflows](https://github.com/github/gh-aw) is a framework for running agents on the Actions compute and event framework.
16
12
17
-
Paste this to your agent:
13
+
The quickstart docs here: https://github.github.com/gh-aw/ are a great way to get started, or simply paste this to your agent:
18
14
19
15
```text
20
16
Install GitHub Agentic Workflows using https://github.com/github/gh-aw/blob/main/install.md
21
17
```
22
18
19
+
To create a new workflow:
20
+
21
+
```text
22
+
Create a workflow for GitHub Agentic Workflows using https://raw.githubusercontent.com/github/gh-aw/main/create.md
23
+
24
+
```
25
+
26
+
Not just for coding! Check out [Peli's Agent Factory](https://github.github.com/gh-aw/blog/2026-01-12-welcome-to-pelis-agent-factory/) for many inspiring examples.
27
+
28
+
## Loop Engineering
29
+
30
+
Rather than directly prompting agents, agentic engineering is shifting toward creating recurring goal-oriented processes that run automatically. This can target goals like performing research, increasing test coverage, migrating a codebase, keeping issues triaged, or anything that you can measure and improve about your repository!
0 commit comments