/ AGENTIC.scm
AGENTIC.scm
 1  ;; SPDX-License-Identifier: AGPL-3.0-or-later
 2  ;; AGENTIC.scm - AI agent interaction patterns
 3  
 4  (define agentic-config
 5    `((version . "1.0.0")
 6      (project . "betlang-playground")
 7      (claude-code
 8        ((model . "claude-opus-4-5-20251101")
 9         (tools . ("read" "edit" "bash" "grep" "glob"))
10         (permissions . "read-all")))
11      (patterns
12        ((code-review . "thorough")
13         (refactoring . "liberal")
14         (testing . "comprehensive")
15         (experimentation . "encouraged")))
16      (constraints
17        ((languages . ("rust" "scheme"))
18         (banned . ("typescript" "go" "python" "makefile"))))
19      (project-specific
20        ((feature-flags . "document-all-experiments")
21         (breaking-changes . "allowed-with-flag")))))