feat(service): add OS-native background scheduler#3
Merged
jung-thomas merged 11 commits intomainfrom Apr 20, 2026
Merged
Conversation
Specifies architecture for optional Wails v3 tray binary with Fiori-themed webview dashboard, OS-native scheduler, and download-on-demand distribution.
Plan 1: OS-native scheduler (systemd/launchd/Task Scheduler) Plan 2: Tray lifecycle & CLI commands (download, autostart, update) Plan 3: Wails v3 tray binary (tray icon, webview panel, CI workflow)
Adds ServiceConfig struct with Interval field (default 6h) nested under the service key in config.yaml, following the existing sub-config pattern.
- Quote binary paths in Windows schtasks script (spaces in paths) - Quote binary paths in Linux systemd ExecStart - Unload existing agent before re-loading on macOS (re-install fix) - Resolve symlinks via filepath.EvalSymlinks for stable binary path - Remove unused ErrNotInstalled sentinel and Status.Interval field
7 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
sap-devs service install/uninstall/statuscommands that register an OS-native scheduled task to runsap-devs sync && sap-devs inject --no-syncon a configurable interval (default 6h)schtasks), macOS launchd (plist), Linux systemd user timer — all viaos/exec, no CGOServiceConfigwith nestedservice.intervalconfig key matching existing sub-config patternsArchitecture
New
internal/service/package with aSchedulerinterface and platform implementations:sap-devs-synctask viaschtasks~/Library/LaunchAgents/com.sap-devs.sync.plist~/.config/systemd/user/sap-devs-sync.{service,timer}Part 1 of the system tray design spec. Independent of the tray binary — works standalone.
Test plan
go build ./...andgo vet ./...pass (verified locally on Windows)sap-devs service statusprints "Scheduler: not installed"sap-devs service installregisters the OS scheduler entrysap-devs service uninstallremoves it