AtlatestRepositorysigil-later

sigil-later / treepackage.sgl

1;;; sigil-later - Time-based task scheduling
2;;;
3;;; Provides cron expression parsing and a recurring/one-time task runner
4;;; that integrates with (sigil async). Use for periodic agent invocation,
5;;; background maintenance, scheduled events, and deferred execution.
6
7(define sigil-repo "codeberg:sigil/sigil")
8
9(package
10 name: "sigil-later"
11 version: "0.1.0"
12 description: "Time-based task scheduling with cron expressions"
13 url: "https://codeberg.org/sigil/sigil-later"
14 license: "BSD-3-Clause"
15 authors: (list "David Wilson <[email protected]>")
17 dependencies: (list
18 (from-git url: sigil-repo package: "sigil-stdlib" version: "^0.9.0")))