docs(template): the owner is _null

README.md's status header named a person; it now names _null.

healthcheck.sh's crontab example hard-coded one operator's home directory in
two lines. Those are now $HOME, rather than a literal /home/_null, because a
template copied into every project should not carry anyone's home path and an
invented one would be a path that does not exist -- which this tree refuses
everywhere else.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
This commit is contained in:
null 2026-08-17 22:47:56 -05:00
parent da8e457e97
commit 912c470bbb
2 changed files with 3 additions and 3 deletions

View File

@ -7,7 +7,7 @@ create the labels and the first milestone in the repository's issue tracker.
``` ```
Status: Current Status: Current
Owner: Kaspa Owner: _null
Last reviewed: 2026-08-12 Last reviewed: 2026-08-12
Governs: Projects/Template/** Governs: Projects/Template/**
Review trigger: Any change to the tracker conventions or the QA run-state Review trigger: Any change to the tracker conventions or the QA run-state

View File

@ -44,8 +44,8 @@
# #
# install -m 0755 healthcheck.sh ~/bin/healthcheck.sh # install -m 0755 healthcheck.sh ~/bin/healthcheck.sh
# # then, in the crontab — every five minutes # # then, in the crontab — every five minutes
# */5 * * * * /home/kaspa/bin/healthcheck.sh \ # */5 * * * * $HOME/bin/healthcheck.sh \
# >> /home/kaspa/.healthcheck.log 2>&1 # >> $HOME/.healthcheck.log 2>&1
# #
# On this deployment it is run by an OpenClaw cron job instead, which is the # On this deployment it is run by an OpenClaw cron job instead, which is the
# same thing with a scheduler that can also deliver the alert. # same thing with a scheduler that can also deliver the alert.