Skip to content

Commit e08298b

Browse files
authored
Improve active_learning density and checkpoint quality in 08b-interpret-your-run.md (#1786)
1 parent e72a377 commit e08298b

1 file changed

Lines changed: 16 additions & 1 deletion

File tree

workshop/08b-interpret-your-run.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,12 @@ Open the completed **Daily Report Status** run from the **Actions** tab and clic
2828
✅ Done
2929
```
3030

31-
The important question is not "Can I read every line?" It is "Can I tell where the agent decided, where it acted, and whether it finished?" Find the first `Tool call` in your own run and write one short note about what it was trying to do.
31+
The important question is not "Can I read every line?" It is "Can I tell where the agent decided, where it acted, and whether it finished?" Find the first `Tool call` in your own run and fill in the template below:
32+
33+
```text
34+
First Tool call I saw: [tool name, e.g. github.list_issues]
35+
What it was trying to do: [one sentence description]
36+
```
3237

3338
## Check the output
3439

@@ -46,6 +51,15 @@ If your run does not look right, start with these quick checks before changing t
4651
- **The log shows lots of thinking but no useful action** — your instructions may be too vague. Keep the run open, then refine the workflow body in a later step.
4752
- **The run finishes but nothing changed in GitHub** — make sure your repository has an open issue and that the workflow had permission to write.
4853

54+
Knowing what a failed run looks like helps you spot permission issues at a glance, before you spend time re-reading the brief:
55+
56+
```text
57+
🤔 Planning... Searching for open issues
58+
🔧 Tool call: github.list_issues
59+
📥 Error: 403 Forbidden — insufficient permissions
60+
❌ Failed
61+
```
62+
4963
For a deeper troubleshooting guide, see [Side Quest: Diagnosing Common Agent Output Patterns](side-quest-09-01-debug-output.md).
5064

5165
## Reflect
@@ -65,6 +79,7 @@ Put your answers in a scratch file, your editor, or wherever you keep notes. You
6579
- [ ] I traced the first tool call and noted what the agent was trying to do
6680
- [ ] I compared the run summary to the actual GitHub change and noted the result
6781
- [ ] I know the first check to make if a run is missing, confused, or finished without writing anything
82+
- [ ] I can identify whether a run failed due to a permission error, a vague brief, or a missing output
6883

6984
<!-- journey: all -->
7085
**Next:** [Refine Your Workflow with Agentic Editing](09-agentic-editing.md)

0 commit comments

Comments
 (0)