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


Reply via email to