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: .github/workflows/glossary-maintainer.md
+11-3Lines changed: 11 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -134,7 +134,7 @@ Use Serena to:
134
134
135
135
### 1. Determine Scan Scope
136
136
137
-
The pre-step has already determined the scan scope. Read all context files in one step:
137
+
The pre-step has already determined the scan scope. Read all context files in one step (the glossary is read here early for efficiency, so Step 4 can work with already-loaded content):
138
138
139
139
```bash
140
140
cat /tmp/gh-aw/agent/scan-scope.txt \
@@ -161,7 +161,7 @@ Check your cache to avoid duplicate work:
161
161
162
162
### 3. Scan Recent Changes
163
163
164
-
Use the `discover-terms` sub-agent to identify new technical terms from the pre-fetched files. Pass it:
164
+
Use the `discover-terms` sub-agent to identify new technical terms from the pre-fetched files. Invoke it by name and pass these file paths as context:
165
165
-`/tmp/gh-aw/agent/scan-scope.txt`
166
166
-`/tmp/gh-aw/agent/recent-commits.txt`
167
167
-`/tmp/gh-aw/agent/doc-changes.txt`
@@ -309,4 +309,12 @@ Good luck! Your work helps users understand GitHub Agentic Workflows terminology
309
309
model: claude-haiku-4.5
310
310
description: Scans recent commits and doc changes to identify new technical terms
311
311
---
312
-
Read the provided commit log and doc-change files. Fetch diffs for at most 20 commits using get_commit. For each commit, identify new technical terms introduced in user-facing docs (docs/**/*.md, docs/**/*.mdx). Return a JSON array: [{"term": "...", "context": "...", "source": "commit:<SHA> or pr:<N>"}]. If no new terms, return [].
312
+
Read the provided commit log and doc-change files. Fetch diffs for at most 20 commits using get_commit. For each commit, identify new technical terms introduced in user-facing docs (docs/**/*.md, docs/**/*.mdx). Look for:
313
+
- New configuration fields in frontmatter (YAML keys)
Only include terms from `docs/**/*.{md,mdx}` files, not internal code or comments. Return a JSON array: [{"term": "...", "context": "...", "source": "commit:<SHA> or pr:<N>"}]. If no new terms, return [].
0 commit comments