We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6fd599 commit 64c2050Copy full SHA for 64c2050
1 file changed
AGENTIC.scm
@@ -0,0 +1,16 @@
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"))))))
0 commit comments