AtlatestRepositoryminder
1
;;; Minder - Scheduled task channel server for Claude Code2
;;;3
;;; MCP channel server that manages cron-based scheduled tasks4
;;; and pushes events into a running Claude Code session.6
(package7
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: (list19
(config20
name: 'dev21
output-dir: "build/dev"22
debug?: #t23
optimize: 024
bundle?: #t)25
(config26
name: 'release27
output-dir: "build/release"28
backend: 'native29
debug?: #f30
optimize: 231
bundle?: #t))33
dependencies: (list34
;; Explicit sigil-lib pin. Two independent reasons, both measured:35
;; 1. Without it, sigil-lib is derived transitively and does not track36
;; the `sigil:` field, so a relock can silently leave the C runtime37
;; behind while `sigil deps install` exits 0.38
;; 2. sigil-lib's resolution does NOT respect its declared range: with39
;; no explicit pin, a fresh resolve records `ref: "^0.17"` alongside40
;; `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 release49
;; requiring the 0.18 runtime (v0.16.5) and one requiring 0.17 (v0.16.6, a50
;; deliberate compatibility revert), so ^0.16 no longer determines which51
;; 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: (list57
(task58
name: 'build59
description: "Compile minder modules"60
steps: (list61
(compile-sigil-modules sources: "src/**/*.sgl"62
output-dir: (config-output-subdir "lib"))))))