davidcastagnetoa/skills

celery

Framework de cola de tareas distribuido con soporte de prioridades

First seen Mar 3, 2026

Installation

$ npx skills add davidcastagnetoa/skills --skill celery

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from davidcastagnetoa/skills · top by installs.

npx skills add davidcastagnetoa/skills

Browse all from davidcastagnetoa/skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 1
Default branch main
Open issues 0
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,381 B
  • docs SUMMARY.md 80 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 11 installs

SKILL.md

celery

Celery es el framework de cola de tareas distribuido que gestiona la ejecución de todos los trabajos computacionalmente intensivos del pipeline KYC (inferencia ML, procesamiento de imagen, OCR).

When to use

Usar en el workerpoolagent como motor de ejecución de tareas. El orquestador encola tareas en Celery y los workers las procesan de forma asíncrona.

Instructions

  1. Instalar: pip install celery[redis].
  2. Configurar app:

``python app = Celery('verifid', broker='redis://localhost:6379/0', backend='redis://localhost:6379/1') app.conf.taskserializer = 'json' app.conf.resultserializer = 'json' ``

  1. Definir tareas con @app.task(bind=True, max_retries=3).
  2. Configurar colas por prioridad: task_routes = {'liveness.*': {'queue': 'realtime'}}.
  3. Arrancar workers: celery -A verifid worker -Q realtime,gpu,cpu --concurrency=4.
  4. Configurar taskackslate=True para no perder tareas si el worker muere.
  5. Habilitar taskrejectonworkerlost=True.

Notes

  • Usar JSON como serializador (nunca pickle por seguridad).
  • Cada worker debe tener los modelos ML precargados; ver skill model_warmup.
  • Monitorizar con Celery Flower para visibilidad en tiempo real.