1. Start the daemon

  recur start
  

The daemon runs in the background and manages triggers and actions.

2. Create a recurfile

  recur add MyProject cron --actions=shell --stub --edit
  

This creates a recur.yaml in the current directory with a cron trigger and shell action, pre-populated with options from the plugin manifests. Your editor opens for customization.

3. Register it

  recur register recur.yaml
  

The daemon loads the recurfile and activates all triggers.

4. Check status

  recur status
  

Shows daemon health, active trigger/action counts, and registered recurfiles.

Next steps