
Shopify Admin Collection Reorganization
- 6 installs
- 173 repo stars
- Updated June 26, 2026
- 40rty-ai/shopify-admin-skills
shopify-admin-collection-reorganization is a Claude Code skill that reorders products in a manual Shopify collection by inventory level, moving in-stock products to the top and out-of-stock to the bottom.
About
This skill reorders the products in a manual Shopify collection by inventory level, pushing in-stock items to the top and out-of-stock items to the bottom, using a single collectionReorderProducts mutation. Merchants use it to keep buyable products visible without touching the Shopify admin UI. It only works on manual collections and offers a dry_run preview.
- Reorders a manual collection by inventory level in one collectionReorderProducts mutation
- Moves in-stock products to the top, out-of-stock to the bottom
- Aborts on non-MANUAL collections; supports dry_run preview before committing
Shopify Admin Collection Reorganization by the numbers
- 6 all-time installs (skills.sh)
- Ranked #1,691 of 2,715 Automation & Workflows skills by installs in the Skillselion catalog
- Data as of Aug 1, 2026 (Skillselion catalog sync)
shopify-admin-collection-reorganization capabilities & compatibility
Free skill; requires an authenticated Shopify store session with read_products and write_products scopes.
- Capabilities
- collection reorder · inventory merchandising · product sorting
- Works with
- stripe
- Use cases
- data analysis
- Pricing
- Bring your own API key
What shopify-admin-collection-reorganization says it does
Reorder products in a manual Shopify collection by inventory level, moving in-stock products to the top and out-of-stock to the bottom.
only works on manual (custom) collections — smart collections managed by Shopify rules are not supported.
npx skills add https://github.com/40rty-ai/shopify-admin-skills --skill shopify-admin-collection-reorganizationAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 6 |
|---|---|
| repo stars | ★ 173 |
| Last updated | June 26, 2026 |
| Repository | 40rty-ai/shopify-admin-skills ↗ |
What it does
Reorder a manual Shopify collection by stock level so in-stock products appear before out-of-stock ones.
Who is it for?
Merchants who want buyable, in-stock products shown first in a manually sorted collection.
Skip if: Smart (rule-based) collections; it only works on collections with MANUAL sort order.
When should I use this skill?
You want to push in-stock products to the top of a manual collection automatically.
What you get
The manual collection is reordered by inventory level in a single mutation, with a dry-run preview available.
- Reordered manual collection
- outcome summary of products reordered
By the numbers
- single collectionReorderProducts mutation
- paginates products 250 per request
- two sort modes: inventory_desc and inventory_asc
Files
Purpose
Reorders products in a manual Shopify collection by inventory level without navigating the Shopify admin UI. This skill queries all products in the collection, computes the desired sort order by totalInventory, and applies it in a single collectionReorderProducts mutation. Note: only works on manual (custom) collections — smart collections managed by Shopify rules are not supported.
Prerequisites
- Authenticated Shopify CLI session:
shopify auth login --store <domain> - API scopes:
read_products,write_products
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
| store | string | yes | — | Store domain (e.g., mystore.myshopify.com) |
| format | string | no | human | Output format: human or json |
| dry_run | bool | no | false | Preview operations without executing mutations |
| collection_id | string | yes | — | GID of the manual collection (e.g., gid://shopify/Collection/123) |
| sort_by | string | no | inventory_desc | inventory_desc (highest stock first) or inventory_asc (lowest stock first) |
Safety
⚠️ Step 2 executescollectionReorderProductswhich changes the product display order immediately. The sort is reversible — run again with the oppositesort_byto restore previous order — but the original custom order cannot be recovered once overwritten. Themovesarray passed to the mutation must be complete; partial moves produce undefined ordering. Always run withdry_run: truefirst to review the computed sort order before committing.
collectionReorderProducts only works on manual (custom) collections. If the collection has sortOrder other than MANUAL, the skill must abort with a clear message: "Cannot reorder: collection sort order is not MANUAL. Switch the collection to manual sorting in the Shopify admin first."
Workflow Steps
1. OPERATION: collection — query Inputs: id: <collection_id>, first: 250, pagination cursor Expected output: Collection metadata (title, sortOrder) and all product nodes with totalInventory; verify sortOrder == "MANUAL" — abort if not; paginate until all products fetched
2. OPERATION: collectionReorderProducts — mutation Inputs: id: <collection_id>, moves array sorted by totalInventory per sort_by parameter — each move is {id: <product_id>, newPosition: "<index>"} (0-indexed string) Expected output: job.id and job.done; userErrors
GraphQL Operations
# collection:query — validated against api_version 2025-01
query CollectionProducts($id: ID!, $first: Int!, $after: String) {
collection(id: $id) {
id
title
sortOrder
products(first: $first, after: $after) {
edges {
node {
id
title
totalInventory
variants(first: 100) {
edges {
node {
inventoryQuantity
}
}
}
}
}
pageInfo {
hasNextPage
endCursor
}
}
}
}# collectionReorderProducts:mutation — validated against api_version 2025-01
mutation CollectionReorderProducts($id: ID!, $moves: [MoveInput!]!) {
collectionReorderProducts(id: $id, moves: $moves) {
job {
id
done
}
userErrors {
field
message
}
}
}Session Tracking
Claude MUST emit the following output at each stage. This is mandatory.
On start, emit:
╔══════════════════════════════════════════════╗
║ SKILL: collection-reorganization ║
║ Store: <store domain> ║
║ Started: <YYYY-MM-DD HH:MM UTC> ║
╚══════════════════════════════════════════════╝After each step, emit:
[N/TOTAL] <QUERY|MUTATION> <OperationName>
→ Params: <brief summary of key inputs>
→ Result: <count or outcome>If dry_run: true, prefix every mutation step with [DRY RUN] and do not execute it.
On completion, emit:
For format: human (default):
══════════════════════════════════════════════
OUTCOME SUMMARY
Collection: <title>
Products reordered: <n>
Sort order: <inventory_desc|inventory_asc>
Errors: 0
Output: none
══════════════════════════════════════════════For format: json, emit:
{
"skill": "collection-reorganization",
"store": "<domain>",
"started_at": "<ISO8601>",
"completed_at": "<ISO8601>",
"dry_run": false,
"steps": [
{ "step": 1, "operation": "CollectionProducts", "type": "query", "params_summary": "collection_id: <gid>, first: 250", "result_summary": "<n> products fetched", "skipped": false },
{ "step": 2, "operation": "CollectionReorderProducts", "type": "mutation", "params_summary": "sort_by: inventory_desc, <n> moves", "result_summary": "job submitted", "skipped": false }
],
"outcome": {
"collection_title": "<title>",
"products_reordered": 0,
"sort_by": "inventory_desc",
"errors": 0,
"output_file": null
}
}Output Format
No CSV output. The skill reports the new sort order in the session completion summary. Use dry_run: true to preview the computed position list without committing.
Error Handling
| Error | Cause | Recovery |
|---|---|---|
sortOrder is not MANUAL | Collection is a smart/automated collection | Switch collection to manual ordering in Shopify admin |
userErrors in mutation | Invalid product ID or position | Check all product IDs belong to the collection |
| Collection not found | Invalid collection GID | Verify the GID in Shopify admin |
| Rate limit (429) | Too many paginated requests | Reduce first to 100 and retry |
Best Practices
1. Always run dry_run: true first — the skill will print the proposed product order so you can verify before committing. 2. collectionReorderProducts is asynchronous — job.done may be false immediately. The sort completes within a few seconds; refresh the storefront to verify. 3. Use sort_by: inventory_asc to push out-of-stock products to the bottom of the collection page, reducing customer frustration. 4. For large collections (250+ products), pagination is automatic but increases execution time. Consider running during off-peak hours. 5. This skill only reads totalInventory from the products node — it does not aggregate per-location. If you need location-specific sorting, use the low-inventory-restock skill to identify which products to prioritize.
Related skills
FAQ
Does it work on smart collections?
No. It only works on manual (custom) collections; if the sort order is not MANUAL the skill aborts with a clear message.
Can I undo the reorder?
The sort is reversible by running again with the opposite sort_by, but the original custom order cannot be recovered once overwritten, so run dry_run first.