saleor/agent-skills

saleor-app

Universal Saleor app development patterns. Covers the app protocol (manifest, registration, webhooks, authentication), payment processing, SDK abstractions, settings persistence, and Dashboard integration. Framework-agnostic with Next.js examples.

First seen Mar 27, 2026

Installation

$ npx skills add saleor/agent-skills --skill saleor-app

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 saleor/agent-skills.

npx skills add saleor/agent-skills

Browse all from saleor/agent-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 2
License LICENSE
Default branch main
Open issues 0
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

Version1.0.0
LicenseMIT
More metadata
author
saleor
version
1.0.0

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,929 B
  • docs README.md 1,613 B
  • docs SUMMARY.md 264 B

History

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

SKILL.md

Saleor App

Guide for building apps that extend Saleor via webhooks and the GraphQL API. Framework-agnostic protocol documentation with Next.js examples using @saleor/app-sdk.

When to Apply

  • Defining an app manifest or registering webhooks
  • Handling async/sync webhook events from Saleor
  • Building payment apps with the Transaction API and provider webhooks
  • Authenticating requests (registration handshake, JWT, signature verification)
  • Storing app settings in Saleor metadata
  • Building Dashboard UI inside the iframe
  • Making GraphQL calls with app tokens
  • Debugging webhook failures, auth errors, or permission issues
  • Deciding who can view the app and what they should see (user vs app scope)

Rule Categories by Priority

Priority Category Impact Prefix
1 Protocol CRITICAL protocol-
2 Permissions CRITICAL permissions-
3 Payment Apps CRITICAL payment-
4 Webhooks HIGH webhook-
5 Data & Settings HIGH data-
6 Dashboard UI MEDIUM dashboard-
7 Development MEDIUM dev-

Quick Reference

1. Protocol (CRITICAL)

  • protocol-manifest — App manifest, required endpoints, permissions, extensions
  • protocol-auth — Registration handshake, APL, token scopes, JWT/signature verification

2. Permissions (CRITICAL)

  • permissions-access-scopes — Define per-feature permissions; guard user JWT on every API route; baseline + per-route meta; UI mirrors server

3. Payment Apps (CRITICAL)

  • payment-app — Financial truth, stable references, unknown outcomes, refunds, and reconciliation

4. Webhooks (HIGH)

  • webhook-async — Async event handling, payload typing, retry policy, signature verification
  • webhook-sync — Sync event handling, response schemas, performance constraints
  • webhook-external — Receiving webhooks from external services, multi-tenant routing

5. Data & Settings (HIGH)

  • data-graphql — GraphQL from apps: client setup, auth headers, codegen, app vs user tokens
  • data-settings — MetadataManager, EncryptedMetadataManager, domain-scoped persistence

6. Dashboard UI (MEDIUM)

  • dashboard-appbridge — AppBridge iframe protocol, actions, events, theme/locale sync

7. Development (MEDIUM)

  • dev-debug — Common errors, webhook dry runs, tunnel setup, debugging checklist