On 5/5/26 19:00, Alex Bennée wrote:
This provides basic instructions for how to download and apply a
patch series from the mailing list. It currently doesn't outline any
details about how to do the review.
Signed-off-by: Alex Bennée <[email protected]>
---
.agents/skills/qemu-code-explorer/SKILL.md | 3 +-
.../qemu-code-explorer/evals/evals.json | 1 +
.agents/skills/qemu-code-reviewer/SKILL.md | 74 +++++++++++++++++++
3 files changed, 77 insertions(+), 1 deletion(-)
create mode 100644 .agents/skills/qemu-code-reviewer/SKILL.md
diff --git a/.agents/skills/qemu-code-explorer/SKILL.md
b/.agents/skills/qemu-code-explorer/SKILL.md
index d41b21179c1..13cb71dd55c 100644
--- a/.agents/skills/qemu-code-explorer/SKILL.md
+++ b/.agents/skills/qemu-code-explorer/SKILL.md
@@ -1,6 +1,7 @@
---
name: qemu-code-explorer
description: Comprehensive guide for exploring the QEMU codebase using
tagging systems (gtags, ctags, cscope), git grep, and build-directory grep for
generated files. Use this skill when the user asks to find where something is
defined, how it's used, or wants to understand a specific subsystem.
+license: GPL-2.0-or-later
---
# QEMU Code Base Explorer
@@ -26,7 +27,7 @@ make gtags # or make ctags, make cscope, make TAGS
`git grep` is the preferred tool for general text searches within the source tree.
-- **Best for**:
+- **Best for**:
- Searching for local variables within a function.
- Searching for string literals or comments.
- Finding occurrences of symbols defined in system headers (e.g., `optarg`).
diff --git a/.agents/skills/qemu-code-explorer/evals/evals.json
b/.agents/skills/qemu-code-explorer/evals/evals.json
index dff7afa52fa..131cf46e1cc 100644
--- a/.agents/skills/qemu-code-explorer/evals/evals.json
+++ b/.agents/skills/qemu-code-explorer/evals/evals.json
@@ -1,3 +1,4 @@
+# SPDX-License-Identifier: GPL-2.0-or-later
{
"skill_name": "qemu-code-explorer",
"evals": [
Squash these to previous patch?