What problem does it solve?
This Skill streamlines the creation of reliable, error-handled background jobs, ensuring your application remains responsive and tasks are processed efficiently.
Core Features & Use Cases
- Idempotent Job Creation: Design jobs that can be safely run multiple times without unintended side effects.
- Error Handling & Retries: Implement robust strategies for managing job failures and retrying them automatically.
- Use Case: When a user uploads a large file that requires processing, use this Skill to create a background job that handles the upload, processes the file asynchronously, and notifies the user upon completion, preventing the UI from freezing.
Quick Start
Create a new background job to process user uploads, ensuring it is idempotent and includes retry logic for transient errors.