stiggio/skills

stigg

Use FIRST for any task involving Stigg — this umbrella must load before any other stigg-* skill (stigg-mcp, stigg-credits, stigg-governance, stigg-pricing-modeling, stigg-entitlements, stigg-subscriptions, stigg-widgets, stigg-webhooks, stigg-api, stigg-pricing-expert, stigg-recipes, stigg-sp). It carries routing, the search-first rule, account/key prerequisites, and core vocabulary the pillars depend on. Even when a specific stigg-* skill looks like a perfect match (rendering a paywall, granti…

First seen Jun 1, 2026

Installation

$ npx skills add stiggio/skills --skill stigg

Summary

  • Use FIRST for any task involving Stigg — this umbrella must load before any other stigg-* skill (stigg-mcp, stigg-credits, stigg-governance, stigg-pricing-modeling, stigg-entitlements, stigg-subscriptions, stigg-widgets, stigg-webhooks, stigg-api, stigg-pricing-expert, stigg-recipes, stigg-sp).
  • It carries routing, the search-first rule, account/key prerequisites, and core vocabulary the pillars depend on.
  • Even when a specific stigg-* skill looks like a perfect match (rendering a paywall, granting credits, debugging a 401, wiring a webhook, building freemium) — load this one alongside it.
  • Trigger on the word "Stigg", any stigg.io URL, `@stigg/*` imports, Stigg API keys (server-/client-/publishable), the Stigg CLI or MCP, or work on plans/features/addons/entitlements/credits/subscriptions/usage/paywalls/customer portal/checkout/webhooks where Stigg is the platform.
  • Skip only when Stigg isn't the platform (pure Stripe, Chargebee, or generic pricing UI).

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 stiggio/skills · top by installs.

npx skills add stiggio/skills

Browse all from stiggio/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 Declared
Cursor 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 master
Open issues 0
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

Declared agents claude-code cursor

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 8,014 B
  • docs SUMMARY.md 981 B

History

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

SKILL.md

Stigg — Umbrella Skill

Stigg is a pricing, packaging, and entitlements platform. This skill is the first stop for any Stigg work. It enforces the search-first rule and routes you to the right sub-skill.

Step 0 — You Need a Stigg Account

Every other step assumes you already have:

  1. An account at app.stigg.io (sign up if you don't).
  2. At least one environment in that account (dev / staging / prod — Stigg provisions a default sandbox automatically; production environments are on the Scale plan).
  3. An API key from Integrations → API keys in the environment you intend to operate on.

Without these three, every "set up Stigg" step in the sub-skills will fail with 401 Unauthenticated. Surface this to the user at the start of the integration if they haven't done it.

If the project uses Stripe Projects, skip the browser entirelystripe projects add stigg/environment creates the account and environment and writes the keys into .env. Load stigg-sp.

The Search-First Rule (non-negotiable)

Before generating any Stigg integration code, search the live docs. Stigg ships rapidly; baked-in snippets go stale. The rule applies even when you "remember how it works."

For every Stigg task → search docs → then (if connected) call the Stigg MCP → only then write code.

How to search, ranked:

  1. Stigg MCP server (mcp.stigg.io) — if the user has it connected, the agent can call search_docs and execute against the real environment. See stigg-mcp.
  2. Mintlify Stigg docs MCP — if the agent has the official docs MCP available (searchstigg, querydocsfilesystemstigg), use it.
  3. https://docs.stigg.io/llms.txt — LLM-friendly URL index. Fetch it, find the relevant page, fetch that page.
  4. Direct fetch of docs.stigg.io/<path> — last resort.

Full rationale and examples: references/search-first.md.

Red flag — STOP and search: you're about to write import Stigg from '@stigg/...', a curl https://api.stigg.io/... call, or any GraphQL mutation, and you have not opened a docs page in this turn.

Pick the Right Surface

Stigg exposes several integration surfaces. Pick deliberately. Default to the MCP unless the user explicitly asks for the CLI — full posture in stigg-mcp/references/cli-vs-mcp.md.

Goal Use
Modeling pricing during development, exploration, one-off ops (default) Stigg MCP server (stigg-mcp)
Production hot path: gating, usage reporting, customer-facing pages Backend or frontend SDK (stigg-api → SDK matrix)
Direct REST calls (no SDK in your language, or thin server-side proxy) REST API at https://api.stigg.io/api/v1 (stigg-api)
GraphQL (legacy or specific advanced queries) GraphQL API at https://api.stigg.io/graphql (stigg-api)
Scripts, CI/CD, terminal admin — only when the user explicitly asks for the CLI Stigg CLI (Go binary, brew install stiggio/tools/stigg; repo: https://github.com/stiggio/stigg-cli)
Drop-in UI (paywall, customer portal, checkout) Widgets — see widgets.stigg.io Storybook

Decision flowchart with edge cases: references/decision-tree.md. CLI vs MCP details: stigg-mcp/references/cli-vs-mcp.md.

Routing — Which Sub-Skill You Need

Sub-skill invocation is automatic. When the user's request matches a sub-skill's triggers (per the table below and each sub-skill's frontmatter description), invoke that sub-skill via the Skill tool immediately. Load it alongside this umbrella — they work together. Do not ask the user to run /stigg-<name>. Do not "route by mention." The user types their goal in plain English; this skill picks the right pillar and loads it.

Task Skill
First-time MCP setup, connecting Claude Code/Cursor/etc. to Stigg stigg-mcp
Picking SDK vs REST vs GraphQL, API key types, rate limits, auth stigg-api
Modeling features / plans / addons / products / credits in the catalog stigg-pricing-modeling
Gating features, reporting usage, fallback strategy stigg-entitlements
Provision / update / cancel / migrate subscriptions, trials stigg-subscriptions
Credit grants, consumption, auto-recharge, seat pools stigg-credits
Per-entity budgets — entity hierarchies, usage-limit assignments, governance tree stigg-governance
Paywall, customer portal, checkout, credit widgets stigg-widgets
Receiving webhook events from Stigg — signature verification, payload, retries, handler skeleton stigg-webhooks
Choosing the right pricing / monetization model stigg-pricing-expert
Multi-step recipes (freemium, hybrid, AI-credits, trials) stigg-recipes
Provisioning a Stigg environment through Stripe Projects (stripe projects add stigg/environment) stigg-sp

The sub-skills (stigg-mcp, stigg-governance, …) are sibling directories of stigg/, not nested under it — skills/stigg/ and skills/stigg-governance/ sit side by side. Invoke them by name; don't look for them inside stigg/.

If a sub-skill exists for the task, invoke it via the Skill tool — do not improvise content from outside this repo, and do not stall waiting for the user to type its slash command.

Stigg in 60 Seconds

Minimum vocabulary before building. Full glossary: references/core-concepts.md.

  • Customer holds Subscriptions to Plans under a Product. Subscriptions can include Add-ons.
  • Features (boolean / configuration / metered) define what's gateable. Entitlements = feature + configured value (e.g. "10k API calls / month" on Pro).
  • Promotional entitlements are per-customer overrides outside the subscription. Credit pools / grants / ledger power credit-based pricing — one pool per credit currency. See stigg-credits.
  • Governance adds per-entity budgets (departments / teams / agents) on top of features and credits — account-gated, see stigg-governance.
  • Environments (sandbox / staging / production) are isolated workspaces; each has its own API keys.

When NOT to Load This Skill

  • The task is unrelated to Stigg (pricing/billing/entitlements).

Common Mistakes

Mistake Fix
Generating REST/SDK code from memory without searching docs first Search first — the API surface evolves. See references/search-first.md.
Confusing CLI and MCP server (they are different tools) CLI = deterministic shell; MCP = agent-driven. See the table above.
Mixing events.report and usage.report Different scaling models, not different audiences. Covered in stigg-entitlements.
Calling against production while developing Always start in sandbox. API keys are environment-bound.
Embedding the full-access (server) key in client-side code Never. Use the publishable (client) key for frontend SDKs. See stigg-api.