batch-processing-jobs
Facilitates the implementation of scalable batch processing systems for efficient handling of large datasets and scheduled tasks.
Install this skill
Security score
The batch-processing-jobs skill was audited on Feb 12, 2026 and we found 17 security issues across 2 threat categories. Review the findings below before installing.
Categories Tested
Security Issues
Template literal with variable interpolation in command context
| 98 | job.log(`Processing ${payload.items?.length || 0} items`); |
Template literal with variable interpolation in command context
| 119 | throw new Error(`Processing failed: ${error.message}`); |
Template literal with variable interpolation in command context
| 170 | console.log(`Job ${job.id} completed:`, result); |
Template literal with variable interpolation in command context
| 180 | console.error(`Job ${job?.id} failed:`, error.message); |
Template literal with variable interpolation in command context
| 193 | console.log(`Job ${job.id} progress: ${progress}%`); |
Template literal with variable interpolation in command context
| 197 | console.warn(`Job ${job.id} stalled`); |
Template literal with variable interpolation in command context
| 279 | url: `https://cdn.example.com/reports/${uuidv4()}.${format}`, |
Template literal with variable interpolation in command context
| 647 | throw new Error(`Job ${job.name} already registered`); |
Template literal with variable interpolation in command context
| 652 | throw new Error(`Invalid cron expression: ${job.schedule}`); |
Template literal with variable interpolation in command context
| 658 | console.log(`Running job: ${job.name}`); |
Template literal with variable interpolation in command context
| 665 | console.log(`Job ${job.name} completed in ${duration}ms`); |
Template literal with variable interpolation in command context
| 669 | console.error(`Job ${job.name} failed:`, error); |
Template literal with variable interpolation in command context
| 684 | throw new Error(`Job ${name} not found`); |
Template literal with variable interpolation in command context
| 696 | throw new Error(`Job ${name} not found`); |
External URL reference
| 279 | url: `https://cdn.example.com/reports/${uuidv4()}.${format}`, |
External URL reference
| 523 | 'url': f"https://cdn.example.com/reports/report.{format}", |
External URL reference
| 783 | - [Cron Expression Guide](https://crontab.guru/) |