aboutsummaryrefslogtreecommitdiffstats
path: root/docs/docs.go
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2026-03-09 14:37:20 +0100
committerDmitry Vyukov <dvyukov@google.com>2026-03-09 20:48:02 +0000
commit86baf83222b3e6e8e0665bf9a89490f8eaace33a (patch)
tree65af4752c285be5e73f08edb2bee1b5bc8dd3ac5 /docs/docs.go
parentadb99c927933d5fd31ced759de42e32351828881 (diff)
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
Diffstat (limited to 'docs/docs.go')
-rw-r--r--docs/docs.go15
1 files changed, 15 insertions, 0 deletions
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