/ 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 (claude-code 7 ((model . "claude-opus-4-5-20251101") 8 (tools . ("read" "edit" "bash" "grep" "glob")) 9 (permissions . "read-all"))) 10 (patterns 11 ((code-review . "thorough") 12 (refactoring . "conservative") 13 (testing . "comprehensive"))) 14 (constraints 15 ((languages . ("rescript" "rust" "gleam")) 16 (banned . ("typescript" "go" "python" "makefile"))))))