Commit118c659cRecorded15 Apr 2026Repositoryminder

Add --version flag reporting app and sigil runtime versions

Changed
 src/minder/main.sgl | 7 +++++++
 1 file changed, 7 insertions(+)
Diff
src/minder/main.sglmodified
@@ -7,6 +7,8 @@
7
(define-library (minder main)
8
(import (sigil core)
9
(sigil async)
+10
(sigil process)
+11
(sigil meta)
12
(sigil mcp server)
13
(sigil mcp channel)
14
(sigil log)
@@ -16,6 +18,11 @@
18
(begin
19
20
(define (main)
+21
(when (member "--version" (command-line))
+22
(display (string-append (app-name) " " (app-version)
+23
" (sigil " (sigil-version) ")\n"))
+24
(exit 0))
+25
26
(log-configure-from-args!)
27
28
(let* ((config (load-minder-config))