AI git commit test from Clojure

This commit is contained in:
2026-05-08 17:11:12 +03:00
parent 301231787c
commit b239dd959b
2 changed files with 121 additions and 1 deletions
+12
View File
@@ -96,6 +96,18 @@ proc runtimeName(op: string): string =
of "deref": "cljDeref"
of "reset!": "cljReset"
of "swap!": "cljSwap"
# ---- File operations ----
of "file/read": "cljFileRead"
of "file/write": "cljFileWrite"
of "file/append": "cljFileAppend"
of "file/ls": "cljFileLs"
of "file/exists?": "cljFileExists"
# ---- Git operations ----
of "git/status": "cljGitStatus"
of "git/commit": "cljGitCommit"
of "git/push": "cljGitPush"
of "git/diff": "cljGitDiff"
of "git/log": "cljGitLog"
else: ""
proc emitArgs(args: seq[CljVal]): string =