npx claudepluginhub revpalsfdc/opspal-commercial --plugin opspal-core<task-id>/schedule-removeRemoves a scheduled task by ID or name from project/global config. Confirms details, unregisters from native scheduler (launchd/cron/schtasks), cleans config/logs, and verifies success.
Remove a scheduled task and its cron entry.
/schedule-remove <task-id>
# First, list tasks to find the ID
/schedule-list
# Remove the task
/schedule-remove daily-cpq-check-a1b2c3d4
scheduler-config.jsonThe command will show what was removed:
ā Removed task: Daily CPQ Check (daily-cpq-check-a1b2c3d4)
Crontab updated.
Even after removing a task, you can still access its historical logs:
ls .claude-plugins/opspal-core/scheduler/logs/ | grep daily-cpq-check
If you might want to re-enable the task later, consider disabling instead:
/schedule-disable daily-cpq-check-a1b2c3d4
This keeps the configuration but stops execution.
/schedule-list - List all tasks/schedule-disable - Disable without removing