updated 7d ago
Schedule /workspace:update-project to run every 5 minutes while the session is idle.
What can you do with Auto Update?
name: auto-update description: Start a 5-minute loop that keeps project docs updated during idle
Auto-Update Project Docs
Schedule /workspace:update-project to run every 5 minutes while the
session is idle.
Step 1: Check for Existing Loop
Run CronList. If any job's prompt contains update-project, tell the
user it's already running (show the job ID) and stop.
Step 2: Schedule
Resolve the current project name (from conversation context or
$ARGUMENTS). Call CronCreate with cron */5 * * * *, prompt
/workspace:update-project <project-name>, recurring true.
If CronCreate succeeds, confirm: scheduled every 5 minutes, auto-expires after 7 days, cancel with CronDelete (show the job ID).
If CronCreate fails, report the error and stop — do not claim success.
Do NOT run /workspace:update-project immediately — the first fire
should happen after 5 minutes, when the user has had time to work.
Install
Add Auto Update to your client. Pick the one you use.
npx skills add openshift-eng/edge-toolingInstalls every skill in the repository, then prompts for which to keep.
/plugin marketplace add openshift-eng/edge-toolingAdds the repository as a plugin marketplace; install individual plugins with `/plugin install`.
git clone https://github.com/openshift-eng/edge-tooling
cp -r plugins/workspace/skills/auto-update ~/.claude/skills/A skill is a plain directory. Copy it into `.claude/skills/` in a project or in your home directory.
Score
47 / 100
Adequate