saleor-deploy

saleor-deploy is a skill for Claude Code from OrcaQubits/agentic-commerce-skills-plugins. It costs 43 tokens per session (2,039 once invoked), scanned A, original, MIT.

A guide to running Saleor, an online-store platform, in production. It covers Docker services, Saleor Cloud, background workers, file storage, databases, and scaling.

In plain words
What is it for?
Use it to deploy Saleor with Docker or Saleor Cloud, configure environment variables and Celery workers, store media in S3, and manage production databases and scaling.
Why use it?
It clarifies how the API, background jobs, database, cache, and dashboard fit together outside a local computer. This helps avoid missing production configuration and services.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Part of the saleor-commerce plugin — 21 skills, 1 agent shipped together

Good fit Use it to deploy Saleor with Docker or Saleor Cloud, configure environment variables and Celery workers, store media in S3, and manage production databases and scaling.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/orcaqubits/agentic-commerce-skills-plugins/saleor-deploy
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add OrcaQubits/agentic-commerce-skills-plugins --skill saleor-deploy
Clone the repo
git clone --depth 1 https://github.com/OrcaQubits/agentic-commerce-skills-plugins

Made for: Claude Code.

Or install saleor-commerce, the plugin that ships this one along with the rest of its 21 skills, 1 agent.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for saleor-deploy

README.md
[![agentmods](https://agentmods.dev/badge/skills/orcaqubits/agentic-commerce-skills-plugins/saleor-deploy/github.svg)](https://agentmods.dev/skills/orcaqubits/agentic-commerce-skills-plugins/saleor-deploy)
Your own site
<a href="https://agentmods.dev/skills/orcaqubits/agentic-commerce-skills-plugins/saleor-deploy"><img src="https://agentmods.dev/badge/skills/orcaqubits/agentic-commerce-skills-plugins/saleor-deploy/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for saleor-deploy

Your own site · 80×15
<a href="https://agentmods.dev/skills/orcaqubits/agentic-commerce-skills-plugins/saleor-deploy"><img src="https://agentmods.dev/badge/skills/orcaqubits/agentic-commerce-skills-plugins/saleor-deploy.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 43 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,039 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00043 $0.02039
Opus 5 $0.00022 $0.01019
Sonnet 5 $0.00009 $0.00408
Haiku 4.5 $0.00004 $0.00204

Measured 2d ago against content hash c6c4fce087b8, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-16, from the pricing page.

Security

Grade A, and why

saleor-deploy scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

saleor-commerce/skills/saleor-deploy/SKILL.md · 196 lines

How it starts

The opening of the file, as written. The whole thing — 196 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Saleor Deployment

Before writing code

Fetch live docs:

  1. Web-search site:docs.saleor.io deployment production setup for production deployment guide
  2. Fetch https://github.com/saleor/saleor-platform for Docker Compose reference configuration
  3. Web-search site:docs.saleor.io environment variables configuration for required environment variables
  4. Web-search saleor Celery worker configuration production for Celery setup details
  5. Web-search site:docs.saleor.io cloud for Saleor Cloud managed hosting options

Production Docker Setup

Saleor provides an official Dockerfile with a multi-stage build:

Stage Purpose Base Image
build Install dependencies, compile assets python:3.12-slim
production Run the application python:3.12-slim

Docker Compose Services

Service Image Purpose Port
api saleor (custom build) GraphQL API server (Gunicorn) 8000
worker saleor (same image) Celery worker process N/A
db postgres:15-alpine PostgreSQL database 5432
redis redis:7-alpine Cache and Celery broker 6379
dashboard saleor-dashboard React admin UI 9002
storefront Custom Next.js Customer-facing storefront 3000

Saleor Cloud (Managed Hosting)

Feature Description
Managed API Fully managed Saleor backend, no server maintenance
Auto-scaling Scales based on traffic automatically
Managed database PostgreSQL with backups and replication
CDN Built-in CDN for media and static assets
Environments Staging and production environments per project
CLI integration Deploy and manage via saleor CLI

Access via https://cloud.saleor.io/ — create projects, manage environments, and deploy Apps.

Environment Variables

Required Variables

Variable Description Example
DATABASE_URL PostgreSQL connection string postgres://user:pass@host:5432/saleor
SECRET_KEY Django secret key (50+ chars) Random string
ALLOWED_HOSTS Comma-separated hostnames api.example.com,localhost
DEFAULT_FROM_EMAIL Sender email address [email protected]
CELERY_BROKER_URL Redis URL for Celery redis://redis:6379/1

Read the full file on GitHub · 196 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago First seen · 196 lines · 43 tokens per session scan A c6c4fce087b8

Subscribe to this mod's changes

saleor-deploy is a skill published in the GitHub repository OrcaQubits/agentic-commerce-skills-plugins (39 stars, last pushed 2d ago), licensed MIT. It adds 43 tokens to every session and 2,039 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-15.

Related

Other skills, from other repositories

archestra-dev-investigate

Use when investigating Archestra bugs or incidents — staging issues, backend 50x errors, Drizzle failed queries, DB connection pressure, deploy regressions, or Kubernetes/runtime symptoms. Orientation only; defers the process to /investigate.

archestra-ai/archestra · 54 tokens

ak-cloud-deploy

Deploy an Agent Kernel project to AWS, Azure, or GCP using Terraform modules, or to any Kubernetes cluster (on-prem, baremetal, EKS) using the official Helm chart. Supports serverless and containerized modes for all three clouds. AWS supports execution modes (restsync, restasync, async, stream), queue-based scalable…

yaalalabs/agent-kernel · 146 tokens

0g-compute

0G Compute Network guide for decentralized AI inference, fine-tuning, and GPU services. Covers chatbots, image generation, speech-to-text, SDK integration (0g-serving-broker), processResponse API, broker.inference methods, CLI commands (0g-compute-cli), and account management. Use this skill for any 0G compute, 0G AI…

internet-court/internet-court-skill · 85 tokens

mppx

TypeScript SDK for the Payment HTTP Authentication Scheme. Handles 402 Payment Required flows with Tempo, Stripe, and other payment methods. Use when integrating payments or mppx into a client or server application.

internet-court/internet-court-skill · 45 tokens

cloud-claw-launch-agent

Use this skill when the user wants to launch a new AltClaw, OpenClaw, PicoClaw, or Ottie deployment through Cloud Claw. Covers the same user-facing fields and constraints exposed in the Cloud Claw UI, using the local altllm cloud-claw- commands. Do NOT use for post-launch lifecycle tasks like start/stop/delete/logs…

internet-court/internet-court-skill · 91 tokens

cloud-claw

Use this umbrella skill when the request spans multiple Cloud Claw user-facing domains, especially launching a new AltClaw or OpenClaw VM and then managing lifecycle, logs, renewal, or dashboard access through the local altllm cloud-claw- commands in this repository.

internet-court/internet-court-skill · 59 tokens