From 040be474850060e296eb2fb1885444c6fbb41b0f Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 14 Sep 2026 00:11:46 +0000 Subject: [PATCH] docs: add next-create-campaign to the AI Skills page next-create-campaign (v0.3.0) shipped in NextCommerceCo/skills but was missing from the docs, so there was no way to discover it. - Add the table row, placed above next-campaigns-setup since it is the upstream half of the pair: it provisions the campaign over the Admin API and hands back the api_key and package ids that the CPK scaffold then consumes. - Clarify next-campaigns-setup's "when to use it" cell so the two campaigns skills don't read as alternatives. - Register the skill in the campaigns and agent-skills capability records so /capabilities.json and the llms bundles list it, and bump their last_verified. Co-Authored-By: Claude Opus 5 Claude-Session: https://claude.ai/code/session_012Q12RTvLPkvmxxZEBMjKfY --- content/capabilities.yaml | 12 ++++++------ content/docs/skills/index.mdx | 3 ++- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/content/capabilities.yaml b/content/capabilities.yaml index cce00db..b4592ff 100644 --- a/content/capabilities.yaml +++ b/content/capabilities.yaml @@ -264,9 +264,9 @@ capabilities: - /docs/campaigns/admin-api api_operations: [tag:campaigns] webhooks: [] - skills: [next-campaigns-setup] + skills: [next-create-campaign, next-campaigns-setup] status: available - last_verified: 2026-09-03 + last_verified: 2026-09-14 - id: storefront-themes title: Storefront themes @@ -418,14 +418,14 @@ capabilities: title: AI agent skills summary: >- Pre-built skills that give AI coding agents platform knowledge (theme development, - campaign setup, bulk operations, daily ops scans), installable with the skills CLI - or loadable as plain markdown. + campaign provisioning and setup, bulk operations, daily ops scans), installable with + the skills CLI or loadable as plain markdown. audiences: [developer] operator_docs: [] developer_docs: - /docs/skills api_operations: [] webhooks: [] - skills: [next-theme-figma, next-theme-dev, next-campaigns-setup, next-bulk-fulfill, next-bulk-move, next-bulk-subscription, next-ops-scan] + skills: [next-theme-figma, next-theme-dev, next-create-campaign, next-campaigns-setup, next-bulk-fulfill, next-bulk-move, next-bulk-subscription, next-ops-scan] status: available - last_verified: 2026-09-03 + last_verified: 2026-09-14 diff --git a/content/docs/skills/index.mdx b/content/docs/skills/index.mdx index 798a218..6266c0c 100644 --- a/content/docs/skills/index.mdx +++ b/content/docs/skills/index.mdx @@ -62,7 +62,8 @@ Tell it which skill you want, or ask it to inspect [`skills.json`](https://githu | --- | --- | --- | | [**next-theme-figma**](https://github.com/NextCommerceCo/skills/tree/main/next-theme-figma) | Prepare Figma storefront designs for Spark theme implementation — validates source structure, classifies sections and assets, records Spark divergences, and generates a low-inference handoff for `next-theme-dev` | You have a Figma storefront design (PDP, homepage, etc.) you want to turn into a Next Commerce theme | | [**next-theme-dev**](https://github.com/NextCommerceCo/skills/tree/main/next-theme-dev) | Build and customize storefront themes — DTL templates, ntk CLI, Tailwind CSS, settings, side cart | You're editing theme files, setting up a new storefront, or debugging template issues | -| [**next-campaigns-setup**](https://github.com/NextCommerceCo/skills/tree/main/next-campaigns-setup) | End-to-end CPK campaign setup — scaffolds the project, copies a starter template, seeds `campaigns.json`, wires up the API key, store details, and analytics in one pass | Starting a new CPK campaign for a brand | +| [**next-create-campaign**](https://github.com/NextCommerceCo/skills/tree/main/next-create-campaign) | Provision a launch-ready Campaigns App campaign over the Admin API — reads the store's catalogue, gateways, and shipping methods, recommends a structure, then creates the campaign, packages, shipping methods, and tier/voucher offers behind an approval gate; hands back the campaign `api_key` and package IDs | A new campaign needs to exist on a store before funnel work starts — creates new campaigns only, it can't edit an existing one | +| [**next-campaigns-setup**](https://github.com/NextCommerceCo/skills/tree/main/next-campaigns-setup) | End-to-end CPK campaign setup — scaffolds the project, copies a starter template, seeds `campaigns.json`, wires up the API key, store details, and analytics in one pass | Starting a new CPK campaign for a brand — after the campaign exists in the Campaigns App | | [**next-bulk-fulfill**](https://github.com/NextCommerceCo/skills/tree/main/next-bulk-fulfill) | Update orders to **Fulfilled** with tracking numbers from a CSV | A fulfillment provider shipped orders but tracking didn't sync back — orders stuck in *Processing* | | [**next-bulk-move**](https://github.com/NextCommerceCo/skills/tree/main/next-bulk-move) | Move fulfillment orders between warehouse locations in bulk — by order-number file or by Product ID / SKU list | Switching fulfillment providers, or moving every FO containing a given SKU/product to a new location | | [**next-bulk-subscription**](https://github.com/NextCommerceCo/skills/tree/main/next-bulk-subscription) | Apply official actions (pause, cancel) or a PATCH (renewal date, interval, gateway, address) to a list of subscription IDs | Merchant wants to bulk-pause, bulk-shift renewals, bulk-cancel, or migrate subscriptions between gateways |