From workflow-kit
Use to set up and run scheduled maintenance jobs after a product is approved. Suggests jobs based on product type and schedules them via cron. Also triggers when the user says "set up maintenance", "keep the product updated", "schedule recurring checks", or "monitor the product ongoing".
How this skill is triggered — by the user, by Claude, or both
Slash command
/workflow-kit:maintainThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Set up scheduled maintenance jobs appropriate to the product type. Jobs run via cron using `python -m workflow_kit schedule`.
Set up scheduled maintenance jobs appropriate to the product type. Jobs run via cron using python -m workflow_kit schedule.
python3 -c "
from workflow_kit.runtime.state import load_state
from pathlib import Path
s = load_state(Path('.'))
print('phase:', s.phase, '| product_type:', s.product_type)
"
Phase should be maintain. If earlier: "Product not yet approved. Run /workflow-kit:synthesize first."
| Product type | Suggested jobs |
|---|---|
| webapp | Weekly dependency audit, Daily uptime check, Monthly perf report |
| library | Monthly compatibility check, Weekly CVE scan |
| paper | Monthly citation freshness check, Quarterly related-work scan |
| article | — (ask user if they want revision reminders) |
| api | Daily endpoint health check, Weekly schema drift detection |
| dataset | Quarterly data quality audit, Monthly license check |
Ask: "Which of these jobs do you want? You can also describe custom jobs."
For each enabled job, create workflow/maintenance/jobs/<job-id>.json:
{
"job_id": "<kebab-case-id>",
"description": "<what this job does>",
"schedule": "<cron expression, e.g. '0 9 * * 1' = Mon 9am>",
"agent": "<worker domain: code-reviewer | devops | researcher | editor>",
"reviewer": "<reviewer domain>",
"task": "<plain English instructions for the agent>"
}
python -m workflow_kit schedule --start 09:00 --stop 10:00 --recurring
✓ Maintenance configured
Jobs: N enabled
Schedule: recurring, 09:00–10:00
<job-id>: <description> [<cron>]
...
To run manually: python -m workflow_kit maintain
To check status: /workflow-kit:status
To stop schedule: python -m workflow_kit schedule --remove
npx claudepluginhub le-xuan-thang/workflow-kit --plugin workflow-kitGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.