All of lore.kernel.org
 help / color / mirror / Atom feed
* [RFC PATCH 00/10] AGENTS.md and associated skills
@ 2026-05-05 17:00 Alex Bennée
  2026-05-05 17:00 ` [RFC PATCH 01/10] AGENTS.md: add basic AGENTS.md for QEMU Alex Bennée
                   ` (10 more replies)
  0 siblings, 11 replies; 27+ messages in thread
From: Alex Bennée @ 2026-05-05 17:00 UTC (permalink / raw)
  To: qemu-devel; +Cc: Alex Bennée

Not withstanding the current contributor policy there are a number of
areas that AI agents could be helpful for. This series introduces an
AGENTS.md file which is the basic guide to the source tree and a
number of "skills". Skills are like scripts except far less clearly
defined. However I have found the issue triage skill quite useful for
off-loading the drudgery of going through stuff by hand. I've also
used the issue helper to automate the task of starting a debug session
by pulling in test cases from the tracker.

These originally where a set of skills for ECA (eca.dev) but I've
ported them across to the agent agnostic .agents directory. There are
still some cases where the ECA heritage shows through though
(specifically the code explorer skill could be better).

I'm not suggesting this is ready for up-streaming but I'm posting the
collected set for comment and I'd be interested how well these hold up
across different agentic systems.

Alex.

Alex Bennée (10):
  AGENTS.md: add basic AGENTS.md for QEMU
  .agents/skills: add qemu-code-explorer skill
  .agents/skills: add qemu-code-reviewer skill
  .agents/skills: add qemu-issue-helper skill
  .agents/skills: add qemu-build skill
  .agents/skills: add qemu-testing skill
  .agents/skills: add skill to distil mail threads
  .agents/skills: add qemu-issue-triage agent skill
  .agents/skills: add checkpatch agent skill
  MAINTAINERS: add a section for AI agents

 MAINTAINERS                                   |   6 +
 .agents/skills/checkpatch/SKILL.md            |  10 ++
 .agents/skills/distil-mail-thread/SKILL.md    |  33 +++++
 .../distil-mail-thread/scripts/parse_mail.py  |  64 +++++++++
 .agents/skills/qemu-build/SKILL.md            |  50 +++++++
 .agents/skills/qemu-code-explorer/SKILL.md    |  67 +++++++++
 .../qemu-code-explorer/evals/evals.json       |  26 ++++
 .agents/skills/qemu-code-reviewer/SKILL.md    |  74 ++++++++++
 .agents/skills/qemu-issue-helper/SKILL.md     |  47 +++++++
 .agents/skills/qemu-issue-triage/SKILL.md     |  91 ++++++++++++
 .../qemu-issue-triage/assets/labels.txt       | 133 ++++++++++++++++++
 .../skills/qemu-issue-triage/evals/evals.json |  18 +++
 .../scripts/update_labels.sh                  |  16 +++
 .agents/skills/qemu-testing/SKILL.md          |  53 +++++++
 .gitignore                                    |   1 +
 AGENTS.md                                     |  94 +++++++++++++
 16 files changed, 783 insertions(+)
 create mode 100644 .agents/skills/checkpatch/SKILL.md
 create mode 100644 .agents/skills/distil-mail-thread/SKILL.md
 create mode 100644 .agents/skills/distil-mail-thread/scripts/parse_mail.py
 create mode 100644 .agents/skills/qemu-build/SKILL.md
 create mode 100644 .agents/skills/qemu-code-explorer/SKILL.md
 create mode 100644 .agents/skills/qemu-code-explorer/evals/evals.json
 create mode 100644 .agents/skills/qemu-code-reviewer/SKILL.md
 create mode 100644 .agents/skills/qemu-issue-helper/SKILL.md
 create mode 100644 .agents/skills/qemu-issue-triage/SKILL.md
 create mode 100644 .agents/skills/qemu-issue-triage/assets/labels.txt
 create mode 100644 .agents/skills/qemu-issue-triage/evals/evals.json
 create mode 100755 .agents/skills/qemu-issue-triage/scripts/update_labels.sh
 create mode 100644 .agents/skills/qemu-testing/SKILL.md
 create mode 100644 AGENTS.md

-- 
2.47.3



^ permalink raw reply	[flat|nested] 27+ messages in thread

end of thread, other threads:[~2026-05-07 13:47 UTC | newest]

Thread overview: 27+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-05-05 17:00 [RFC PATCH 00/10] AGENTS.md and associated skills Alex Bennée
2026-05-05 17:00 ` [RFC PATCH 01/10] AGENTS.md: add basic AGENTS.md for QEMU Alex Bennée
2026-05-06  8:49   ` Philippe Mathieu-Daudé
2026-05-05 17:00 ` [RFC PATCH 02/10] .agents/skills: add qemu-code-explorer skill Alex Bennée
2026-05-05 17:00 ` [RFC PATCH 03/10] .agents/skills: add qemu-code-reviewer skill Alex Bennée
2026-05-06  8:25   ` Philippe Mathieu-Daudé
2026-05-05 17:00 ` [RFC PATCH 04/10] .agents/skills: add qemu-issue-helper skill Alex Bennée
2026-05-05 17:01 ` [RFC PATCH 05/10] .agents/skills: add qemu-build skill Alex Bennée
2026-05-06 15:48   ` Alejandro Jimenez
2026-05-06 16:38     ` Alex Bennée
2026-05-05 17:01 ` [RFC PATCH 06/10] .agents/skills: add qemu-testing skill Alex Bennée
2026-05-07  8:03   ` Daniel P. Berrangé
2026-05-07 11:57     ` Alex Bennée
2026-05-05 17:01 ` [RFC PATCH 07/10] .agents/skills: add skill to distil mail threads Alex Bennée
2026-05-05 17:01 ` [RFC PATCH 08/10] .agents/skills: add qemu-issue-triage agent skill Alex Bennée
2026-05-07  8:25   ` Daniel P. Berrangé
2026-05-07  9:20     ` Philippe Mathieu-Daudé
2026-05-07  9:32       ` Daniel P. Berrangé
2026-05-07 12:32     ` Alex Bennée
2026-05-07 12:59       ` Peter Maydell
2026-05-07 13:46       ` Daniel P. Berrangé
2026-05-05 17:01 ` [RFC PATCH 09/10] .agents/skills: add checkpatch " Alex Bennée
2026-05-05 17:01 ` [RFC PATCH 10/10] MAINTAINERS: add a section for AI agents Alex Bennée
2026-05-07  8:59 ` [RFC PATCH 00/10] AGENTS.md and associated skills Peter Maydell
2026-05-07  9:24   ` Philippe Mathieu-Daudé
2026-05-07  9:27     ` Daniel P. Berrangé
2026-05-07  9:38   ` Daniel P. Berrangé

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.