From 86baf83222b3e6e8e0665bf9a89490f8eaace33a Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Mon, 9 Mar 2026 14:37:20 +0100 Subject: pkg/aflow/flow/repro: give agent relevant docs LLM seems to have some knowledge about syzkaller program syntax, but presumably it's still useful to give it all details about syntax. Update #6878 --- docs/docs.go | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 docs/docs.go (limited to 'docs/docs.go') diff --git a/docs/docs.go b/docs/docs.go new file mode 100644 index 000000000..f27a01bed --- /dev/null +++ b/docs/docs.go @@ -0,0 +1,15 @@ +// Copyright 2026 syzkaller project authors. All rights reserved. +// Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file. + +// Package docs exports some of the docs for LLM agents in pkg/aflow. +package docs + +import ( + _ "embed" +) + +//go:embed program_syntax.md +var ProgramSyntax string + +//go:embed syscall_descriptions_syntax.md +var SyscallDescriptionsSyntax string -- cgit mrf-deployment