AtlatestRepositoryminder

minder / treepackage.sgl

1;;; Minder - Scheduled task channel server for Claude Code
2;;;
3;;; MCP channel server that manages cron-based scheduled tasks
4;;; and pushes events into a running Claude Code session.
5
6(package
7 name: "minder"
8 version: "0.2.4"
9 sigil: "0.20"
10 description: "Scheduled task channel server for Claude Code sessions"
11 url: "https://codeberg.org/sigil/minder"
12 license: "BSD-3-Clause"
13 authors: (list "David Wilson <[email protected]>")
15 entry: '(minder main)
16 bundle-name: "minder"
18 configs: (list
19 (config
20 name: 'dev
21 output-dir: "build/dev"
22 debug?: #t
23 optimize: 0
24 bundle?: #t)
25 (config
26 name: 'release
27 output-dir: "build/release"
28 backend: 'native
29 debug?: #f
30 optimize: 2
31 bundle?: #t))
33 dependencies: (list
34 ;; Explicit sigil-lib pin. Two independent reasons, both measured:
35 ;; 1. Without it, sigil-lib is derived transitively and does not track
36 ;; the `sigil:` field, so a relock can silently leave the C runtime
37 ;; behind while `sigil deps install` exits 0.
38 ;; 2. sigil-lib's resolution does NOT respect its declared range: with
39 ;; no explicit pin, a fresh resolve records `ref: "^0.17"` alongside
40 ;; `version: "0.18.2"` in the same lock entry, on any toolchain,
41 ;; while sigil-stdlib in that same resolve correctly stays at 0.17.20.
42 ;; Verify in sigil.lock (the `version:`/`sha:` fields, not `ref:`).
43 (from-git url: "codeberg:sigil/sigil"
44 package: "sigil-lib" version: ">=0.21")
45 (from-git url: "codeberg:sigil/sigil" package: "sigil-run" version: ">=0.17.0")
46 (from-git url: "codeberg:sigil/sigil-json" version: "^0.16")
47 (from-git url: "codeberg:sigil/sigil-log" version: "^0.16")
48 ;; sigil-mcp ^0.17, NOT ^0.16. The 0.16 line now contains BOTH a release
49 ;; requiring the 0.18 runtime (v0.16.5) and one requiring 0.17 (v0.16.6, a
50 ;; deliberate compatibility revert), so ^0.16 no longer determines which
51 ;; runtime you need. The 0.17 line is the unambiguous 0.18-runtime line.
52 (from-git url: "codeberg:sigil/sigil-mcp" version: "^0.17")
53 (from-git url: "codeberg:sigil/sigil-yaml" version: "^0.9.1")
54 (from-git url: "codeberg:sigil/sigil-later" version: "^0.1.0"))
56 tasks: (list
57 (task
58 name: 'build
59 description: "Compile minder modules"
60 steps: (list
61 (compile-sigil-modules sources: "src/**/*.sgl"
62 output-dir: (config-output-subdir "lib"))))))