celery-best-practices

Installation
SKILL.md

Celery Best Practices

Task Definition

# BAD: implicit name — renaming the module silently breaks in-flight messages
@app.task
def send_email(user_id): ...

# BAD: passing ORM objects — not serializable, and data goes stale in the queue
@app.task
def send_welcome(user: User): ...
Installs
2
GitHub Stars
3
First Seen
Apr 27, 2026
celery-best-practices — spardutti/claude-skills