
Security News
Ruby's Bundler 4.0.18 Extends Cooldown to bundle lock and bundle cache
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.
@vox-ai-app/scheduler
Advanced tools
Cron-based job scheduler for Vox — schedule recurring agent runs, heartbeats, and timed tasks
Cron-based job scheduler for Vox — schedule recurring agent runs, heartbeats, and timed tasks with timezone support.
npm install @vox-ai-app/scheduler
| Export | Contents |
|---|---|
@vox-ai-app/scheduler | All scheduler exports |
@vox-ai-app/scheduler/cron | Job scheduling, cancellation, listing |
import { scheduleJob, cancelJob, listJobs, computeNextRun } from '@vox-ai-app/scheduler'
const job = scheduleJob(
'daily-check',
{ expr: '0 9 * * *', tz: 'America/New_York' },
(id, meta) => {
console.log(`Job ${id} fired at ${meta.firedAt}`)
}
)
console.log(listJobs())
cancelJob('daily-check')
Schedule persistence is handled by the app layer via @vox-ai-app/storage/schedules.
| Function | Description |
|---|---|
scheduleJob | Schedule a cron job with handler callback |
cancelJob | Cancel a job by ID |
cancelAllJobs | Cancel all running jobs |
getJob | Get job details by ID |
listJobs | List all active jobs with next run times |
computeNextRun | Compute the next run time for a cron expression |
scheduleJob options:
scheduleJob(
id,
{
expr: '0 9 * * 1-5',
tz: 'America/New_York',
runImmediately: false,
onError: (err) => {}
},
handler
)
MIT
FAQs
Cron-based job scheduler for Vox — schedule recurring agent runs, heartbeats, and timed tasks
We found that @vox-ai-app/scheduler demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.

Security News
During a UK cyber test, a Mythos 5 agent used sockpuppets, social engineering, and prompt injection to try to get a maintainer to merge malware.

Company News
Socket is now in the AWS Security Hub Extended plan. Adopt it through AWS, apply committed spend, and block malicious open source packages.