@acuminous/knuff
v2.0.0
Published
Reminds teams of recurring or future work by creating tasks in your issue tracker of choice
Downloads
286
Maintainers
Readme
Knuff - Reminders as Code
Knuff is an automated reminder tool which creates tickets in your issue tracker of choice (e.g. GitHub). It is designed to be run from an external scheduler such as the one provided by GitHub Actions. You can use it to remind you about one off and recurring tasks such as...
- regenerating long lived API keys / auth tokens before they expire
- updating software dependencies on a monthly cadence
- domain name renewals
Knuff is also a German word meaning nudge or poke.
Getting Started
Installation
npm i @acuminous/knuff
Reminders
A Reminder
needs
- An id for duplicate checking and error reporting
- A schedule adhering to rfc5545 RRULE format (more accessibly documented by the node rrule package)
- Issue details (title and body) describing the work that needs to be done
- One or more repositories the reminder will be posted to
Knuff will process a list of reminders, posting those that are due to the relevant repositories according to the schedule. Knuff will only post the reminder if a matching one is not already open, and will continue on error.
The Reminders File
Knuff works with JSON, but since it's so easy to convert YAML to JSON, and because YAML is better for multiline strings, it is a good choice. An annoated reminders file is below...
# Creates a reminder in acuminous/foo repository at 08:00 on the 1st of July 2025
# Required. Must be unique within the reminders file
- id: 'update-contentful-api-key'
# Optional. Potentially useful for understanding the reminder's background
description: |
The Contentful API key expires yearly. See https://github.com/acuminous/foo/blog/master/README.md#api-key for more details
# Required. See https://datatracker.ietf.org/doc/html/rfc5545
# See also https://www.npmjs.com/package/rrule
schedule: |
DTSTART;TZID=Europe/London:20250701T080000
RRULE:FREQ=DAILY;COUNT=1
# Required. This will be the title of the reminder
title: 'Update Contenful API Key'
# Required. This will be the body of the reminder
body: |
The Contentful API Key expires on the 14th of July 2025.
- [ ] Regenerate the Contentful API Key
- [ ] Update AWS Secrets Manager
- [ ] Redeploy the website
- [ ] Update the reminder for next year
# Optional. Knuff will append the reminder id to the reminder labels and use it prevent creating duplicates
labels:
- 'Reminder'
- 'Critical'
# Required. The list of repositories to post the reminder to
repositories:
- 'acuminous/foo'
Generating Reminders
To generate the reminders you need a script that will process the reminder file. You also need to configure the repository drivers. The drivers are published separately to this package. At time of writing the following drivers exist.
An example script suitable for personal use is as follows...
import fs from 'node:fs';
import yaml from 'yaml';
import { Octokit } from '@octokit/rest';
import GitHubDriver from '@acuminous/knuff-github-driver';
import Knuff from '@acuminous/knuff';
const pathToReminders = process.argv[2] || 'reminders.yaml';
const config = {
repositories: {
'acuminous/foo': {
owner: 'acuminous',
name: 'foo',
driver: 'github',
},
'acuminous/bar': {
owner: 'acuminous',
name: 'bar',
driver: 'github',
},
},
};
const octokit = new Octokit({ auth: process.env.GITHUB_TOKEN });
const drivers = { github: new GitHubDriver(octokit) };
const knuff = new Knuff(config, drivers)
.on('error', console.error)
.on('progress', console.log);
const reminders = yaml.parse(fs.readFileSync(pathToReminders, 'utf8'));
knuff.process(reminders).then((stats) => {
console.log(`Successfully processed ${stats.reminders} reminders`);
}).catch((error) => {
console.error(error);
process.exit(1);
});
Scheduling Knuff
Knuff requires an external scheduler. Which one is to you, but we provide an example GitHub Actions setup below...
name: Knuff Said!
on:
workflow_dispatch: # Allows manual triggering of the workflow
schedule:
- cron: "*/30 * * * *" # Runs every 30 minutes
jobs:
run-reminder:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install dependencies with npm ci
run: npm ci
- name: Execute Knuff
run: node knuff.js
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
If you only ever create reminders in the same repository as the action, you can use the GITHUB_TOKEN magically provided by GitHub. If you want to create reminders in multiple repositories you can use a fine-grained personal access token with read+write issue permissions, and store it as an action secret. If you intend to use Knuff with a large number of teams and repositories you may find you are rate limited. In this case your best option is to register a GitHub App and use an installation token, however the token acquisition and refresh process is cumbersome.