From: "Daniel P. Berrangé" <berrange@redhat.com>
To: "Philippe Mathieu-Daudé" <philmd@linaro.org>
Cc: "Alex Bennée" <alex.bennee@linaro.org>, qemu-devel@nongnu.org
Subject: Re: [RFC PATCH 08/10] .agents/skills: add qemu-issue-triage agent skill
Date: Thu, 7 May 2026 10:32:19 +0100 [thread overview]
Message-ID: <afxcI3-84QA5GKph@redhat.com> (raw)
In-Reply-To: <b4c22e08-eb21-486d-a9d8-5ef84f28b0e9@linaro.org>
On Thu, May 07, 2026 at 11:20:57AM +0200, Philippe Mathieu-Daudé wrote:
> On 7/5/26 10:25, Daniel P. Berrangé wrote:
> > On Tue, May 05, 2026 at 06:01:03PM +0100, Alex Bennée wrote:
> > > While triaging the issue tracker I wondered if this would be a
> > > suitable job for an AI agent. Unfortunately the OSS program doesn't
> > > give any credits to run agents in gitlab. However I do have access to
> > > models from my editor and ECA so I built one and tested it on a few
> > > issues.
> > >
> > > Obviously this can't apply as is because it probably encodes too much
> > > of my local setup (using pass for API keys) and uses the ECA as my
> > > preferred coding agent. I assume at some point there will be agreement
> > > between all the agents where skill live.
> > >
> > > Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
> >
> > ..snip..
> >
> > > diff --git a/.agents/skills/qemu-issue-triage/assets/labels.txt b/.agents/skills/qemu-issue-triage/assets/labels.txt
> > > new file mode 100644
> > > index 00000000000..d329f34183d
> > > --- /dev/null
> > > +++ b/.agents/skills/qemu-issue-triage/assets/labels.txt
> >
> > Seeing our labels listed like this triggers my urge to "tidy" :-)
>
> Should we improve MAINTAINERS and store these tags there, then
> generate labels.txt?
Tricky question. IMHO the MAINTAINERS file is not neccessarily
the right granularity for issue labels.
> > > +Storage Block subsystem, Storage devices, etc.
>
> We should really expand this one.
This has always confused me when we have many "block:" labels too.
Mixing backends and frontends is also an anti-pattern for label
tagging.
I'd think 'block:' for all backend stuff, and 'device:storage'
for all frontend stuff
> > > +block:9p The 9p network file system
> > > +block:NVMe
> >
> > These two are not like the others under 'block:'. 'NVMe' is frontend device,
> > and 9p is a filesystem. I'd assume 'block:' applies to block/*.c
> >
> > > +block:curl
> > > +block:nbd
> > > +block:nfs Issues related to the NFS backend
> > > +block:qcow2
> > > +block:ssh
> > > +block:vmdk
> >
> > Probably want a "block:core" for stuff not specific to one of the listed
> > backends.
> > > +efi EFI firmware related issues
>
> firmware:efi, ...
Yes, we have many more firmwares in git
> > > +guest: AIX
> > > +guest: BSD Guest OS is BSD (NetBSD/FreeBSD/OpenBSD/etc)
> > > +guest: Linux Guest OS is Linux/Linux-based
> > > +guest: Windows Microsoft Windows guest
> > > +guest: macOS Apple macOS / Darwin as guest OS
> > > +guest: os2
>
> s/guest/guestos/? (vs hostos)
Yes,
>
> > > +host: aarch64 Bugs reproducible on AArch64 hosts
> > > +host: arm Bugs reproducible on ARM hosts
> > > +host: loongarch64 Bugs reproducible on LoongArch64 hosts.
> > > +host: mips Bugs reproducible on MIPS hosts
> > > +host: ppc Bugs reproducible on Power hosts
> > > +host: riscv Bugs reproducible on RISC-V hosts
> > > +host: s390 Bugs reproducible on s390 hosts
> > > +host: sparc64 Bugs specific to Sparc64 hosts
> > > +host: x86 Bugs reproducible on x86 hosts
And 'hostarch' for these perhaps
> > > +host:32bit These are mostly TCG related bugs where we sometimes struggle with emulating larger guests, especially atomic and address space issues.
> >
> > More space inconsistency
> >
> > > +hostos: BSD FreeBSD, OpenBSD, NetBSD, and derivatives as host OSes
> > > +hostos: Linux Linux-based host operating systems (Fedora, RHEL/CentOS, Debian, Ubuntu, openSuSE et al)
> > > +hostos: Windows Microsoft Windows host OS
> > > +hostos: macOS Apple macOS / Darwin as a host OS
> > > +icount issues relating to icount, deterministic execution and record/replay functionality
With regards,
Daniel
--
|: https://berrange.com ~~ https://hachyderm.io/@berrange :|
|: https://libvirt.org ~~ https://entangle-photo.org :|
|: https://pixelfed.art/berrange ~~ https://fstop138.berrange.com :|
next prev parent reply other threads:[~2026-05-07 9:33 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
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é [this message]
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é
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=afxcI3-84QA5GKph@redhat.com \
--to=berrange@redhat.com \
--cc=alex.bennee@linaro.org \
--cc=philmd@linaro.org \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.